15.08.2012, 20:57
Hello, i downloaded this include http://forum.sa-mp.com/showthread.ph...ighlight=zones to display where a player is when he comits a crime etc. I decided to test out before i go using it in all my /rob cmds etc
it displays Your wanted level has been increased to 4 your zone : at i was like wtf? im not at "at"
so maybe its with the stock?
pawn Код:
format(string2, sizeof(string2), "Your wanted level has been increased to %i your zone : %s", WantedLevel[playerid], PlayerZone(playerid));
SendClientMessage(playerid, COLOR_RED, string2);
so maybe its with the stock?
pawn Код:
stock PlayerZone(playerid)
{
new zone[28];
GetPlayer2DZone(playerid, zone, 28);
return 1;
}