06.02.2017, 15:54
Change this line:
To this line:
The specifier 'i' means an integer, however here you want the player to type a text so the specifier will be 's'.
PHP код:
if(sscanf(params, "ui", id, text)) return SendClientMessage(playerid, -1, "USAGE: /settext [ID] [Text]");
PHP код:
if(sscanf(params, "us[128]", id, text)) return SendClientMessage(playerid, -1, "USAGE: /settext [ID] [Text]");

