[HELP] Call taxi problem.
#1

I have this code from one job FS:

pawn Код:
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;
    }
But, every unknown command on my server, I get this message:
Код:
Usage: /calltaxi [Location]
What's wrong? o.o
Reply
#2

Originally I said:

Did you include "strtok"?

Код:
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}

new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
But then I noticed you are using "strmid"

Have you looked here?
https://sampwiki.blast.hk/wiki/Scripting...ons_Old#strmid
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)