(8259) : warning 202: number of arguments does not match definition
if(IsPlayerInRangeOfPoint(playerid, 6, 294.3638,-82.5354,1001.5156,90.4606)) return SendClientMessage(playerid, COLOR_GREY, "You are not near the ammunation rob point.");
if(IsPlayerInRangeOfPoint(playerid, 6, 294.3638,-82.5354,1001.5156,90.4606)) return SendClientMessage(playerid, COLOR_GREY, "You are not near the ammunation rob point.");
if(IsPlayerInRangeOfPoint(playerid, Range, X, Y, Z)) return SendClientMessage(playerid, COLOR_GREY, "You are not near the ammunation rob point.");
if(IsPlayerInRangeOfPoint(playerid, 6, 294.3638,-82.5354,1001.5156)) return SendClientMessage(playerid, COLOR_GREY, "You are not near the ammunation rob point.");
GameTextForPlayer(playerb, "~w~You has been unsuspected by %s, you are not a criminal anymore !", 5000, 3, NORPN(playerid));
and what about this line? same error
pawn Код:
|
new string[128];
format(string, sizeof(string), "~w~You has been unsuspected by %s, you are not a criminal anymore !",NORPN(playerid));
GameTextForPlayer(playerb, string, 5000, 3);
new string[50];
format(string, sizeof(string), "~w~You has been unsuspected by %s, you are not a criminal anymore !", NORPN(playerid));
GameTextForPlayer(playerid, string, 5000, 3);