08.08.2009, 01:06
Код:
dcmd_test(playerid, cmdtext[]) { new option[256], index; option = strtok(cmdtext, index); if (!strcmp(option, "one", true)) { SendClientMessage(playerid, COLOR, "You typed one!"); } else if (!strcmp(option, "two", true)) { SendClientMessage(playerid, COLOR, "You typed two!"); } return 1; }