01.06.2011, 13:02
on my trucking server i need to know what to put
so i can add score of 3 each time they make a delivery,
this is where it needs to be in
so i can add score of 3 each time they make a delivery,
this is where it needs to be in
pawn Код:
public OnPlayerFinishMission(playerid)
{
SendClientMessage(playerid, 0x00FF00FF, "You have completed your mission!");
new stringtext[100];
TextDrawHideForPlayer(playerid, advert[playerid]);
format(stringtext, sizeof(stringtext),"Type /work to start working");
TextDrawShowForPlayer(playerid,advert[playerid]);
TextDrawSetString(advert[playerid],stringtext);
return 1;
}