15.11.2014, 18:13
Add the following to where the player enters the vehicles you don't want them in.
then add this somewhere else:
pawn Код:
SetTimerEx("wantedtimer",30000,false,"i",playerid);
pawn Код:
forward wantedtimer(playerid);
public wantedtimer(playerid)
{
new string[128];
format(string, sizeof(string), "[WANTED LEVEL] Wanted level %d - Stealing an Enforcement vehicle!", GetPlayerWantedLevel(playerid) + 2);
SendClientMessage(playerid, INFO, string);
}