Quote:
Originally Posted by Yordan_Kronos
It have
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid) { if(pickupid == info) { GameTextForPlayer(playerid, "~g~Welcome at the Truck Driver job, use /truckinfo to know more", 3000, 3); } if(pickupid == info) { GameTextForPlayer(playerid, "~g~Welcome at the Fly job, use /flyinfo to know more", 3000, 3); } if(pickupid == info) { GameTextForPlayer(playerid, "~g~Welcome at the Combine job, use /combineinfo to know more", 3000, 3); } return 1;
}
Error is some here
pawn Код:
public OnPlayerExitVehicle(playerid, vehicleid) { if((truckjobrunning) == 1) { truckjobrunning = 0; SendClientMessage(playerid, COLOR_RED, "You left your truck behind, get in again if you want to continue your job.");
}else if((truckjobrunning) == 0){ if((flyjobrunning) == 1) { flyjobrunning = 0; SendClientMessage(playerid, COLOR_RED, "You left the plane, you failed the job.");
}else if((flyjobrunning) == 0){ if((combinejobrunning) == 1) { combinejobrunning = 0; SendClientMessage(playerid, COLOR_RED, "You left your combine behind, get in again if you want to continue your job.");
}else if((combinejobrunning) == 0){
return 1; }
|
Where exactly? Queue the line.