30.03.2014, 21:02
MAX_JOBS must be 3 otherwise the error will be given. By the way, you don't need brackets around the strings:
pawn Код:
new CommandJobs[ MAX_JOBS ][ 126 ] = //Define jobs commands
{
"Jobless", //1 Jobless not have commands.
"MECHANIC /its commands", //2 MECHANIC Commands
"TAXI /its commands" //3 TAXI Commands
};
new NamesJobs[ MAX_JOBS ][ 30 ] = //Define jobs name
{
"Jobless",
"Mechanic",
"Taxi Driver"
};