Basic scripting question.
#9

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    new object;
    new idx;
    if(strcmp(string, "/lo", true) == 0)
    {
        object = strlen(cmdtext);
        while ((idx < object) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[64];
        while ((idx < object) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result))
        {
            SendClientMessage(playerid, COLOR_GREY, "USAGE: /lo [chat]");
            return 1;
        }
        GetPlayerName(playerid, playername, sizeof(playername));
        format(string, sizeof(string), "((%s says: %s))", playername, result);
        ProxDetector(20.0, playerid, string, COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);     
        printf(string);
    }
    if(strcmp(string, "/li", true) == 0)
    {
        object = strlen(cmdtext);
        while ((idx < object) && (cmdtext[idx] <= ' '))
        {
            idx++;
        }
        new offset = idx;
        new result[64];
        while ((idx < object) && ((idx - offset) < (sizeof(result) - 1)))
        {
            result[idx - offset] = cmdtext[idx];
            idx++;
        }
        result[idx - offset] = EOS;
        if(!strlen(result))
        {
            SendClientMessage(playerid, COLOR_GREY, "USAGE: /li [chat]");
            return 1;
        }
        GetPlayerName(playerid, playername, sizeof(playername));
        format(string, sizeof(string), "%s says: %s", playername, result);
        ProxDetector(20.0, playerid, string, COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);     
        printf(string);
    }
    return 1;
}
And the OnPlayerText One.
Reply


Messages In This Thread
Basic scripting question. - by steve_gibson - 10.07.2011, 23:31
Re: Basic scripting question. - by Adil - 10.07.2011, 23:36
Re: Basic scripting question. - by steve_gibson - 10.07.2011, 23:41
Re: Basic scripting question. - by Adil - 10.07.2011, 23:47
Re: Basic scripting question. - by steve_gibson - 10.07.2011, 23:51
Re: Basic scripting question. - by steve_gibson - 10.07.2011, 23:55
Re: Basic scripting question. - by Adil - 10.07.2011, 23:59
Re: Basic scripting question. - by steve_gibson - 11.07.2011, 00:08
Re: Basic scripting question. - by Adil - 11.07.2011, 00:47
Re: Basic scripting question. - by =WoR=Varth - 11.07.2011, 00:49

Forum Jump:


Users browsing this thread: 4 Guest(s)