27.11.2014, 10:16
Hello ! 
I have this warning, with this code:
Thx!

I have this warning, with this code:
pawn Код:
COMMAND:give(playerid, params[])
{
new id,
action[36],
string[144],
qty;
if(sscanf(params, "s[36]", action))
{
return SendClientMessage(playerid, -1, "Usage: /give <item> <id> <qty>");
}
if(!strcmp(action, "test", true, 4))
{
if(sscanf(params, "s[36]ud", action, id, quantite))
{
return SendClientMessage(playerid, -1, "Usage: /give test <id> <qty>");
}
}
return 1;
}