Salve, è da un po che provo a creare comandi con strtok, ma quando loggo nel server e provo a fare il comando mi dice:
Server Unknown command :| perchè? @Ardaenus aiutami zio per favore :cry:
ho fatto tutto giusto..
Server Unknown command :| perchè? @Ardaenus aiutami zio per favore :cry:
ho fatto tutto giusto..
new cmd[128], idx;
cmd = strtok(cmdtext, idx);
if(strcmp("/ao", cmdtext, true, 10) == 0)
{
new tmp[128];
tmp = strtok(cmdtext, idx);
if(strlen(tmp) == 0) return SendClientMessage(playerid, WHITE, "[USO:] /ao [messaggio]");
new string[2500], Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid,Nome,MAX_PLAYER_NAME);
format(string,sizeof(string),"[STAFF:] %d: %d",Nome,tmp);
SendClientMessageToAll(-1, string);
return 1;
}