#7

Quote:
Originally Posted by venice
Посмотреть сообщение
Here
pawn Код:
if(strcmp(cmd, "/irc", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new string[126];
            GetPlayerName(playerid, sendername, MAX_PLAYER_NAME);
            new result[128];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /irc [text]");
                return 1;
            }
            format(string, sizeof(string), "[IRC]: %s (%d): %s", sendername,playerid, (result));
            IRC_GroupSay(IRC_Group,EchoChan, string);//change this to your irc group name
            SendClientMessage(playerid, 0xE09B1BAA, string);
            SendClientMessage(playerid, 0xE01B1BAA, "Your Message Has Been Sended To IRC");
        }
        return 1;
    }
Thank you for codes but i have this errors and i dont know how to fix it!?
Код:
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(514) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(516) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(516) : warning 215: expression has no effect
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(518) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(520) : error 017: undefined symbol "sendername"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(522) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(524) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(525) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(525) : warning 215: expression has no effect
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(527) : error 017: undefined symbol "idx"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(533) : error 017: undefined symbol "sendername"
C:\Documents and Settings\Korisnik\Desktop\G.R.P\gamemodes\General_Alpha.pwn(534) : error 017: undefined symbol "IRC_Group"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


10 Errors.
Reply


Messages In This Thread
IRC - by SpiderWalk - 27.05.2011, 21:42
Re: IRC - by Captain Price - 27.05.2011, 22:09
Re: IRC - by Venice - 27.05.2011, 22:11
Re: IRC - by linuxthefish - 27.05.2011, 22:17
Re: IRC - by Ghost_BB - 27.05.2011, 22:25
Re: IRC - by Venice - 27.05.2011, 22:31
Re: IRC - by SpiderWalk - 28.05.2011, 06:53
Re: IRC - by Captain Price - 28.05.2011, 07:15
Re: IRC - by SpiderWalk - 28.05.2011, 07:40
Re: IRC - by Biesmen - 28.05.2011, 07:49

Forum Jump:


Users browsing this thread: 1 Guest(s)