Help Me Please
#1

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:

Код:
	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;
	}
Reply
#2

strmid(message, cmdtext, 8, strlen(cmdtext));

I guess that value should be the lenght of "/calltaxi", which is 9, not 8.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)