21.06.2013, 06:02
Like this!
pawn Код:
if(PizzaJob[playerid] == 1){
PizzaJob[playerid] = 2;
SetPlayerCheckpoint(playerid, 1936.2399,-1923.8591,13.5469, 3.5 );
GameTextForPlayer(playerid,"~w~Mission ~g~ Started!", 3000, 3);
return 1;
}
else if(PizzaJob[playerid] == 2){
PizzaJob[playerid] = 3;
SetPlayerCheckpoint(playerid,1921.4567,-1992.3204,13.5469, 3.5 );
GameTextForPlayer(playerid,"~w~Go to Another House!", 3000, 3);
return 1;
}
else if(PizzaJob[playerid] == 3){
PizzaJob[playerid] = 0;
DisablePlayerCheckpoint(playerid);
SendClientMessage(playerid, -1,"Info: Mission Completed! Earned 20,000$ & 5 score");
GivePlayerMoney(playerid,20000);
GameTextForPlayer(playerid,"~w~ Mission ~g~ Completed!", 3000, 3);
SetPlayerScore(playerid,5);
}

