12.09.2011, 02:44
Hello, I'm trying to improve my filterscript, and I'm trying to make it so if you exit the vehicle, it will remove the checkpoint and say "You're delivery was canceled due to exiting the vehicle"
So far I have:
I already have
What am I doing wrong?
So far I have:
pawn Код:
public OnPlayerExitVehicle(playerid, vehicleid)
{
if((simplejobrunning) == 1)
{
simplejobrunning = 0;
SendClientMessage(playerid, COLOR_RED, "You're job was canceled due to exiting the Vehicle");
}else if((simplejobrunning) == 0){
}
}
pawn Код:
new simplejobrunning = 0;