01.06.2012, 12:51
its because you don't put string size here is ex.
Wrong:
Correct:
as you can see i added [128] after in s
[128] is the string size of reason.
Wrong:
pawn Код:
new reason[128];
if(sscanf(params, "s", reason)) return GameTextForPlayer(playerid, "~r~hahahahaha ~y~you ~g~are ~w~a ~p~gay!", 5000, 4);
pawn Код:
new reason[128];
if(sscanf(params, "s[128]", reason)) return GameTextForPlayer(playerid, "~r~hahahahaha ~y~you ~g~are ~w~a ~p~gay!", 5000, 4);
[128] is the string size of reason.

