11.02.2011, 03:43
So you are saying that if i use sscanf 2.0 i can use the command and type /bla Tee Tee with 1 string.
If i use the command below and i type /bla Tee Tee i would get the return.
But if i use your command below, i will not get the return telling me i can just use 1 string?
If i use the command below and i type /bla Tee Tee i would get the return.
pawn Код:
if(sscanf(params,"s", Name))return SendClientMessage(playerid, 0xFF0000AA, "Usage: /bla [name]");
pawn Код:
if(sscanf(params, "s[24]", Name)) return SendClientMessage(playerid, 0xFF0000AA, "Usage: /bla [name]");