16.02.2011, 06:06
Here is my code:
And my problem is, if i write /help this is just example
It will say to admins: [ ! ] Paul_Newton ask help: his
But if i write /help thisisjustexample
It will say to admins: [ ! ] Paul_Newton ask help: hisisjustexample
Код:
if(strcmp(cmd, "/help", true) == 0) { tmp = strtok(cmdtext, idx); if(strlen(tmp) == 0) return SendClientMessage(playerid, ERROR, "Use: /help [MESSAGE]"); new string[250]; format(string, sizeof(string), "[ ! ] %s[ID:%d] asks help:%s", name, playerid, strlen(tmp)); SendClientMessageToAdmins(string); SendClientMessage(playerid, GREEN, "You Message Has Been Sent To Online Admins."); }
It will say to admins: [ ! ] Paul_Newton ask help: his
But if i write /help thisisjustexample
It will say to admins: [ ! ] Paul_Newton ask help: hisisjustexample