27.07.2012, 10:09
PHP код:
new DeliveryDuty[MAX_PLAYERS]; // Change this with your own variable
public OnPlayerExitVehicle(playerid, vehicleid)
{
if( DeliveryDuty[playerid] == 1 ) // If Is Player on Delivery Duty. Change this with your own variables.
{
DisablePlayerCheckpoint(playerid);
}
return 1;
}

