18.08.2010, 01:09
This should fix the warnings:
The code is posted above...
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/startroute", true, 11))
{
if(state[playerid] == 0)
{
SetPlayerCheckpoint(playerid, x, y, z, 5.00); //replace x, y, z with the coordinates of the 1. route point
state[playerid] = 1;
return 1;
}
}
return 0;
}
public OnPlayerEnterCheckpoint(playerid)
{
switch(state[playerid])
{
case 1:
{
SetPlayerCheckpoint(playerid, x, y, z, 5.00); //replace x, y, z with the coordinates of the 2. route point
state[playerid]++;
}
case 2:
{
SetPlayerCheckpoint(playerid, x, y, z, 5.00); //replace x, y, z with the coordinates of the 3. route point
state[playerid]++;
}
case 3:
{
SetPlayerCheckpoint(playerid, x, y, z, 5.00); //replace x, y, z with the coordinates of the 4. route point
state[playerid]++;
}
}
return 1;
}


