Basic scripting question.
#3

Quote:
Originally Posted by Adil
Посмотреть сообщение
IC Chat:
pawn Код:
public OnPlayerText(playerid, text[])
{
    new string [128];
    GetPlayerName(playerid, string, sizeof(string));
    format(string, sizeof(string), "%s says: %s", string, text);
    ProxDetector(20.0, playerid, string, COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
    return 1;
}
OOC Chat:
pawn Код:
if(strcmp(string, "/l", 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: /l [chat]");
            return 1;
        }
        GetPlayerName(playerid, playername, sizeof(playername));
        format(string, sizeof(string), "%s %s", playername, result);
        ProxDetector(30, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
        printf(string);
    }
Hello, thnk you for responding so fast, but i want to keep the normal chat ooc that everyone can see and i want to add an -local- in and out of charapter chat...Can I?
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: 1 Guest(s)