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.3.2 - Jay_ - 28.12.2009

Actually it is, I mistyped something, it works like a dream on 0.2x


Re: [REL] IRC Plugin v1.3.2 - Andy_McKinley - 28.12.2009

Quote:
Originally Posted by Jay_
it works like a dream on 0.2x
It didn't work for me. Well, I will try again.


Re: [REL] IRC Plugin v1.3.2 - trindade02 - 31.12.2009

bug him all the commands of my GM ran only the commands fs.
0.3.
someone help me?


Re: [REL] IRC Plugin v1.3.2 - matrix_smq - 04.01.2010

Can someone post a mirror please?
Or re-upload the plugin somewhere else cause uploadffs is down


Re: [REL] IRC Plugin v1.3.2 - cyber_punk - 05.01.2010

Incognito, I just finally got this in action, very nice. I have a question though, in the command system how can I call a command directly. What I want to do is have some command shortcuts. Instead of having to type !broadcast the user could do !bc or !broadcast. In zcmd I can just return with the function call to one command instead of having to code both commands. How can I do this with the IRC commands? If I do it the same way as zcmd I get errors about not enough params.


Code Example in zcmd:
pawn Код:
zcmd(broadcast, playerid, params[])
{
    return zcmd_bc(playerid, params);
}

zcmd(bc, playerid, params[])
{
 //executes actual command code
    return 1;
}



Re: [REL] IRC Plugin v1.3.2 - Incognito - 05.01.2010

The parameters are different, but the system is based on zcmd. You can use this:

pawn Код:
IRCCMD:command1(botid, channel[], user[], host[], params[])
{
    return irccmd_command2(botid, channel, user, host, params);
}

IRCCMD:command2(botid, channel[], user[], host[], params[])
{
    // The command's code goes here
    return 1;
}



Re: [REL] IRC Plugin v1.3.2 - Cartermcpyro - 07.01.2010

Same problem I had with Jacob's plugin, join and leave messages don't show in IRC.


Re: [REL] IRC Plugin v1.3.2 - MaXSpeeD - 15.01.2010

[17:00:55] *** IRC_OnConnect: Bot ID 1 connected!
then it closes...

and when i actually got one bot to join nothing would work


Re: [REL] IRC Plugin v1.3.2 - Think - 17.01.2010

Ok i got this lil problem, like one time it works, after i restart w/e i do it stops working.

Quote:
Originally Posted by MaXSpeeD
[17:00:55] *** IRC_OnConnect: Bot ID 1 connected!
then it closes...

and when i actually got one bot to join nothing would work
yarr thats what i has too

EDIT:

I found the bug, its IRC_OnDisconnect its crashing my IRC all the time.


Re: [REL] IRC Plugin v1.3.2 - Faraday - 18.01.2010

I get an error saying "libeay32.dll could not be found".

I downloaded the SSL (mirror) version, so shouldn't it be included.
Now, I downloaded the libeay32.dll file, but where do I need to put it?


Re: [REL] IRC Plugin v1.3.2 - MaXSpeeD - 18.01.2010

Quote:
Originally Posted by Faraday
I get an error saying "libeay32.dll could not be found".

I downloaded the SSL (mirror) version, so shouldn't it be included.
Now, I downloaded the libeay32.dll file, but where do I need to put it?
download the non ssl


Re: [REL] IRC Plugin v1.1 - ramshidjafar - 18.01.2010

[quote=Thingszors ]
Hey guys, just quickly made up a script for this that echo's any /commands (Not including rcon).

Not hard to do, but I thought I would share for other people not so great with pawn

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	new
		name[MAX_PLAYER_NAME],
		ircCommand[256];
	GetPlayerName(playerid, name, sizeof(name));
	format(ircCommand, sizeof(ircCommand), "02[%i] 07%s: %s", playerid, name, cmdtext);
	IRC_GroupSay(gGroupID, IRC_CHANNEL, ircCommand);
	return false;
}



Lol nice but can u make it seen only for Admins or mods in IRC, i mean OP/AOP etc?
Bcoz it is showing "/login" Command details publically.
Just put it under the "SA-MP Callbacks" section ...



Re: [REL] IRC Plugin v1.3.5 - Born2die - 18.04.2010

Very nice, finally managed to free some time and integrate this. Thank you!


Re: [REL] IRC Plugin v1.3.5 - KillFrenzy - 26.04.2010

I have a problem with the IRC bots disconnecting here. What I found that was using 'IRC_Quit' causes the entire server to hang up. This does not happen on v1.3.1, but does happen on v1.3.5. SSL is not the cause. I'm waiting on a fix.


Re: [REL] IRC Plugin v1.3.5 - CJ101 - 26.04.2010

Quote:
Originally Posted by KillFrenzy
I have a problem with the IRC bots disconnecting here. What I found that was using 'IRC_Quit' causes the entire server to hang up. This does not happen on v1.3.1, but does happen on v1.3.5. SSL is not the cause. I'm waiting on a fix.
Same here, i cant restart for irc/ingame/irc, i must actually stop and then start the server again.


Re: [REL] IRC Plugin v1.3.5 - Programie - 27.04.2010

Quote:
Originally Posted by CJ101
Quote:
Originally Posted by KillFrenzy
I have a problem with the IRC bots disconnecting here. What I found that was using 'IRC_Quit' causes the entire server to hang up. This does not happen on v1.3.1, but does happen on v1.3.5. SSL is not the cause. I'm waiting on a fix.
Same here, i cant restart for irc/ingame/irc, i must actually stop and then start the server again.
I can also confirm this bug.
The server hangs up if I want to restart the game mode (My IRC stuff is in the game mode).


Re: [REL] IRC Plugin v1.3.6 - Incognito - 28.04.2010

Thanks for the reports. It should be fixed now. I have also changed the version number (as I should have done earlier), because there have been some undocumented changes since the first release of v1.3.5.


Re: [REL] IRC Plugin v1.3.6 - CJ101 - 28.04.2010

Quote:
Originally Posted by Incognito
Thanks for the reports. It should be fixed now. I have also changed the version number (as I should have done earlier), because there have been some undocumented changes since the first release of v1.3.5.
Cool, downloading Now. Thanks for fixing it



Re: [REL] IRC Plugin v1.3.6 - dcmd_crash - 28.04.2010

I am getting an error message with the new plugin Never seen it before, here's a screen:


EDIT: Just realized why, my bad


Re: [REL] IRC Plugin v1.3.6 - [03]Garsino - 29.04.2010

Before you updated to 1.3.6, this plugin caused players to almoust DoS my server! Your plugin made them modify packets causing the server to lag heavily. I am happy to say that it haven't happened since the update.