08.10.2017, 08:45
Hello guys, I changed the type of the command creation, using sscanf, but when I'm trying to create sscanf with string, it always says: Usage: ....
Here is my code:
Here is my code:
PHP код:
cmd:F(playerid, params[])
{
new result[64];
if(sscanf(params, "s[64]", result))
{
return SendClientMessage(playerid, COLOR_WHITE, "Usage: /F [Text]");
}
return 1;
}