SA-MP Forums Archive
[Plugin] IRC Plugin - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Plugin Development (https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: [Plugin] IRC Plugin (/showthread.php?tid=98803)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14


Re: [REL] IRC Plugin v1.4.2 - AndreT - 04.09.2011

Yoshi you should also check what NickServ (or whatever service) responds to the IDENTIFY through IRC_OnUserNotice!


Re: [REL] IRC Plugin v1.4.2 - AirKite - 24.09.2011

Good work! Can you make Jabber XMPP protocol, plugin? XMPP have conference too.


Re: [REL] IRC Plugin v1.4.2 - Edvin - 24.09.2011

Very Good Plugin good job!


Re: [REL] IRC Plugin v1.4.2 - aRoach - 24.09.2011

This is a Great, Great Plugin, Very Useful, indeed !

Great Work, dude !


Re: [REL] IRC Plugin v1.4.2 - [DRD]Rodney - 07.10.2011

pawn Код:
public IRC_OnUserSetChannelMode(botid, channel[], user[], host[], mode[])
{
    if (!strcmp("+m",mode,false)) AutoVoice = false;
    else if (!strcmp("-m",mode,false)) AutoVoice = true;
    else return 1;
    new msg[128];
    if (AutoVoice == true) format(msg,sizeof(msg),"2Automatic voice is now: on");
    else format(msg,sizeof(msg),"2Automatic voice is now: off");
    return IRC_GroupSay(gGroupID, channel, msg);
}
It won't detect the modes, why?


Re: [REL] IRC Plugin v1.4.2 - [03]Garsino - 11.10.2011

Please add support for setting the alternative nick of the bots. F.ex.
pawn Код:
native IRC_SetStringData(botid, data, string[]);



Re: [REL] IRC Plugin v1.4.2 - Kerlan - 21.10.2011

IRC commands?


AW: [REL] IRC Plugin v1.4.2 - Meta - 31.10.2011

Yeah, please add sth to do commands like "/cs"


Re: [REL] IRC Plugin v1.4.2 - MdeRooy - 02.11.2011

What kind of IRC server do you guys recommend? Running it on my own Windows server? If yes, which Daemon? And if a network, which one?


Re: [REL] IRC Plugin v1.4.2 - Unknown123 - 04.11.2011

this plugin dont work on 0.3c R5 on linux server?

it say plugin load, but gamemode become Unknown
when i remove plugin it say, correct gamemode


Re: [REL] IRC Plugin v1.4.2 - Hoss - 07.11.2011

Why i get those errors? :S
Код:
irc.inc(38) : error 010: invalid function or declaration
irc.inc(38) : error 001: expected token: ";", but found "["
irc.inc(40) : error 010: invalid function or declaration
irc.inc(40) : error 001: expected token: ";", but found "["
irc.inc(43) : error 010: invalid function or declaration
irc.inc(43) : error 001: expected token: ";", but found "["
irc.inc(44) : error 010: invalid function or declaration
irc.inc(44) : error 001: expected token: ";", but found "["
irc.inc(47) : error 010: invalid function or declaration
irc.inc(47) : error 001: expected token: ";", but found "["
irc.inc(51) : error 010: invalid function or declaration
irc.inc(51) : error 001: expected token: ";", but found "["
irc.inc(52) : error 010: invalid function or declaration
irc.inc(52) : error 001: expected token: ";", but found "["
irc.inc(53) : error 010: invalid function or declaration
irc.inc(53) : error 001: expected token: ";", but found "["
irc.inc(58) : error 010: invalid function or declaration
irc.inc(58) : error 001: expected token: ";", but found "["
irc.inc(59) : error 010: invalid function or declaration
irc.inc(59) : error 001: expected token: ";", but found "["
irc.inc(69) : error 010: invalid function or declaration
irc.inc(69) : error 001: expected token: ";", but found "["
irc.inc(70) : error 010: invalid function or declaration
irc.inc(70) : error 001: expected token: ";", but found "["
irc.inc(71) : error 010: invalid function or declaration
irc.inc(71) : error 001: expected token: ";", but found "["



Re: [REL] IRC Plugin v1.4.2 - [DRD]Rodney - 02.12.2011

R this work with 0.3d?


Re: [REL] IRC Plugin v1.4.2 - Fool - 02.12.2011

Quote:
Originally Posted by [DRD]Rodney
Посмотреть сообщение
R this work with 0.3d?
Yes.


Re: [REL] IRC Plugin v1.4.2 - [SLA]devon_R - 11.12.2011

ok help


Re: [REL] IRC Plugin v1.4.2 - Min - 11.12.2011

A simple question. How can I add something like IRC_GroupSay on my gamemode?
I've tried adding it and it shows the 'define' error.
Please reply ASAP.
Thanks.


Re: [REL] IRC Plugin v1.4.2 - DaftWerk - 16.12.2011

Hi - Just installed 1.4.2 on 0.3d... the script I used to use with 1.3.6 used to funnel irc actions (/me scratches head) through On User Say, annddd it doesnt seem to work anymore unless I'm being dim lol.

Cheers,

ozzie


Re: [REL] IRC Plugin v1.4.2 - [MM]18240[FMB] - 09.01.2012

Help me, it comes from game. But it doesn't go from IRC too game whats code to I put and where too fix this. :/


Re: [REL] IRC Plugin v1.4.2 - MR,Mr - 19.01.2012

Can anyone help? I've got the following details connected up:

pawn Код:
#define IRC_SERVER "irc.freenode.net"
#define IRC_PORT (6667)
#define IRC_CHANNEL "#*removed*"
But the bot never connects. The FS and Plugin load perfect (I checked server logs).

Any ideas?


Re: [REL] IRC Plugin v1.4.2 - Min - 29.01.2012

Quote:
Originally Posted by MR,Mr
Посмотреть сообщение
Can anyone help? I've got the following details connected up:

pawn Код:
#define IRC_SERVER "irc.freenode.net"
#define IRC_PORT (6667)
#define IRC_CHANNEL "#*removed*"
But the bot never connects. The FS and Plugin load perfect (I checked server logs).

Any ideas?
#define IRC_CHANNEL "#removed"


Re: [REL] IRC Plugin v1.4.2 - AirKite - 11.02.2012

reply:
Quote:
Originally Posted by AirKite
Посмотреть сообщение
Good work! Can you make Jabber XMPP protocol, plugin? XMPP have conference too.