12.09.2009, 11:33
When I type a command Does not matter what command i get a message..
USAGE: /calltaxi [Location]
How can i fix it This is the /calltaxi Command:
USAGE: /calltaxi [Location]
How can i fix it This is the /calltaxi Command:
Код:
if(strcmp(cmd, "/calltaxi", true) == 0) {
new string[256];
new message[256];
new playername[256];
strmid(message, cmdtext, 8, strlen(cmdtext));
GetPlayerName(playerid, playername, sizeof(playername));
if(!strlen(message)) {
SendClientMessage(playerid, COLOR_RED, "Usage: /calltaxi [Location]");
return 1;
}
format(string, sizeof(string), "%s Needs a Taxi at %s", playername,message);
SendTaxiReadyMessage(COLOR_BLUE,string);
return 1;
}

