16.12.2013, 18:32
Replace:
with this:
EDIT: @Brandon_More the way you wrote the sscanf part would print the warning each time when the command would be executed because you have to specify the length of the 's' specifier.
pawn Код:
if(sscanf(params, "uis[64]", playerb, time, params)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /arrest [playerid] [minutes]");
pawn Код:
if(sscanf(params, "ui", playerb, time)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /arrest [playerid] [minutes]");