View Full Version : Irc post Notifier -With eggdrop
Irc thread Notifier -With eggdrop [VB 2.2.x > 2.3.x]
https://vborg.vbsupport.ru/showthread.php?s=&threadid=39974
################################################## ###################
for installation on VB 3.x.x
the only things that are different are the placement of the code-adds
to /newthread.php and admin/index.php. the code-add of /newthread.php
itself stays the same. admin/ircaddon.php, /irc.php and the required
sql query also stays the same.
since i dont have vb3 i cant check. if anyone tell me where the
code should be in vb3, i will add it to this install text
--
1.0
this is an modification of dymo's Irc post Notifier without eggdrop,
dymo should get all credit, cos i didn't do that much modifications
to his hack. Also IRiDiuM deserves some credit for his tcl, thx dude :)
https://vborg.vbsupport.ru/showthread.php?s=&threadid=38205
--
2.0
removed reply announcement from irc.php and ircadmin.php ,irc.php has
simplyfied code, added chan choice to the admin
--
2.9
code adjustment to newthread.php rewritten. added multiple channel support
removed the ircaddon_install.php, everything is in this txt
################################################## ###################
What it does:
------------
When a new thread is posted by a user on your board a message will
be send to your eggdrop irc bot, and the bot echo's it to your
irc channel
*note: YOU NEED AN EGGDROP BOT CONNECTED TO AN IRC SERVER FOR THIS
u can get eggdrop here: http://www.egghelp.org/
or windrop here: http://windrop.sourceforge.net/
other ircbots that can run tcl scripts could also be usefull
################################################## ###################
When UPGRADING TO 2.0
---------------------
then you only have to overwrite/copy irc.php, ircadmin.php and
vbulletin.tcl to the right places. NO updates to newthread.php
newreply.php and admin/index.php are required
When UPGRADING TO 2.9
---------------------
then you have to overwrite/copy irc.php, ircadmin.php and
vbulletin.tcl to the right places. the old adjustment in
newthread.php must be replaced with the new one
also edit port number in vbulletin.tcl if you did that before
and you have to reconfigure all options in the ircadmin
################################################## ###################
place the files from the zip in:
--------------------------------
ircadmin.php -> vb admin dir
irc.php -> vb root dir
vbulletin.tcl -> eggdrop script dir
################################################## ###################
config your eggdrop:
--------------------
edit in vbulletin.tcl
if you want to use another portnumber then 1337, than edit that number
edit your eggdrop config file (eggdrop.conf):
add at the end:
source scripts/vbulletin.tcl
################################################## ###################
run required sql queries:
--------------------------
add a new table with phpmyadmin > run the queries in install.sql
################################################## ###################
php adjustments:
----------------
++++++++++++++++++
open /newthread.php
and find:
++++++++++++++++++
// redirect
if ($postpoll) {
$goto="poll.php?s=$session[sessionhash]&threadid=$threadid&polloptions=".intval($polloptions);
} elseif ($visible) {
$goto="showthread.php?s=$session[sessionhash]&threadid=$threadid";
} else {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid";
}
++++++++++++++++++
under that add:
++++++++++++++++++
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = $ircdata[ircchan1forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel1];
require("irc.php");
}
$fid = $ircdata[ircchan2forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel2];
require("irc.php");
}
$fid = $ircdata[ircchan3forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel3];
require("irc.php");
}
}
//
++++++++++++++++++
open admin/index.php
and find:
++++++++++++++++++
makenavselect("User Groups","<hr>");
++++++++++++++++++
under that add:
++++++++++++++++++
//ircaddon
makenavoption("Modify/Enable/Disable IRC","ircadmin.php?action=settings");
makenavselect("IRC");
++++++++++++++++++
hacks done
################################################## ###################
configure the ircaddon:
-----------------------
go to the admin control panel and find "Modify/Enable/Disable IRC"
on the left.
configure all options
notes:
- IRC Forum ID`s
put all your forum id's that you want to have notified in irc here,
use only 1 space to seperate forumid numbers
- IRC Server Address
here you put the ip/hostname of your eggdrop bot
- IRC Server Port
here you put the port number which is set in the vbulletin.tcl script.
This is the port# the bot listens to for notifier messages. in this
case its 1337
################################################## ###################
now your done
################################################## ###################
the following problems could occure:
------------------------------------
Connection Refused
this error occures on 2 known occasions:
1# u have to make sure ur provider allows u to open a port
(in this case 1337, u could try another port, but don't forget to also
change it in the vbulletin.tcl)
2# make sure ur eggdrop has opened a port (1337) to listen for messages.
--
Connection Timeout
this error occures when your bot is offline, or the host of your vb board
cant reach the bots ip
--
slow displaying of the thread announcement is caused by the bot
requesting ident information from the vb boards host. currently i haven't
found any solution for this problem. adjusting the ident timeout setting
on the bot doesnt help, but ive noticed that an eggdrop is faster then a windrop.
if someone has more insight to this plz tell us
--
hint:
make sure a firewall is not blocking any communication
lasttime i helped someone install, it didnt work cos the idiot didnt
turned the firewall off on the bot box. after telling him for the 5th
time 'turn the fecking firewall off' it worked
so make sure nothing is blocking its communication, at the isp where your
vb is running or at the box where the bot is running
--
*504 views on previous attachment 1.0
*141 views on previous attachment 2.0
JohnWoo
06-17-2002, 07:04 PM
greate work
/me install
Demascus
06-17-2002, 07:36 PM
gr8 work but i dont have a eggdrop or a shell to run it on
ModshackUK
06-17-2002, 08:20 PM
Any chance of a txt version of the instructions as the text is getting mixed up with the installer and its causing me loads of parse errors.
Also for those who use quick reply this will not work as it will bypass it if a member uses it to make a reply to a thread.
HM
mADmAX`
06-17-2002, 08:22 PM
I have the eggdrop installed and everything as you stated.
I run the script from IE6 and get Connection refused (111)
When I make a post in the category # I choose, it takes a little while then it redirects but does not come to the channel and notify. I have it pointed at the eggdrop ip and port as stated also. What could the problem be.
NTLDR
06-17-2002, 09:04 PM
Originally posted by mADmAX`
I have the eggdrop installed and everything as you stated.
I run the script from IE6 and get Connection refused (111)
When I make a post in the category # I choose, it takes a little while then it redirects but does not come to the channel and notify. I have it pointed at the eggdrop ip and port as stated also. What could the problem be.
Its the same problem as outlined above:
Originally posted by dong
Connection Refused(117)
this means your host doesnt allow to open a connection on (in this case) port 1337
you could try to resolve this by setting the listening portnumber to a more common port, like 23 (telnet)
You need to change the port number.
mADmAX`
06-17-2002, 09:27 PM
I changed ports to some others and same problem. I changed the ircd to unreal recently and got the same error but it did notify. This was with the previous release, not the eggdrop. I never tried the eggdrop with Unreal at that time though. Well anyways, I had many other problems so I had to go back to UIRCD 3.0.7 and I am getting the same problem which I hoped the eggdrop would fix. So in other words, I dont think the port is the problem cause it did work on Unreal with that same port.
mADmAX`
06-17-2002, 09:53 PM
Well, I didnt make the changes in newreply and new thread to the changes for this way, so I just did (dont know if they are the same).
I get a parse error and wondering something...
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
"Seems theres two } 's missing but I do not know where they belong?"
mADmAX`
06-17-2002, 10:11 PM
I put two } at the end of that to stop the parsing and I was connected to the bot that I have eggdrop running in the channel to see if I could see anything funny
This is what I seen...
<xxxx> [16:04] Telnet connection: xxx.xxx.xxx.19/32989
<xxxx> [16:04] Timeout/EOF ident connection
Originally posted by ModshackUK
Any chance of a txt version of the instructions as the text is getting mixed up with the installer and its causing me loads of parse errors.
Also for those who use quick reply this will not work as it will bypass it if a member uses it to make a reply to a thread.
HM
where do u get those parse errors?, in the installer?
i tested the install_ircaddon.php script, it runned ok 4 me
u shoeld read very good, i think it should work, if u have connection refused, the script works, but u need to find a better port , maybe ask your host what ports u may open
Originally posted by mADmAX`
I have the eggdrop installed and everything as you stated.
I run the script from IE6 and get Connection refused (111)
When I make a post in the category # I choose, it takes a little while then it redirects but does not come to the channel and notify. I have it pointed at the eggdrop ip and port as stated also. What could the problem be.
read the last bit of my post, try another port...
Originally posted by mADmAX`
Well, I didnt make the changes in newreply and new thread to the changes for this way, so I just did (dont know if they are the same).
I get a parse error and wondering something...
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
"Seems theres two } 's missing but I do not know where they belong?"
this is the part of my newthread.php
$goto="showthread.php?s=$session[sessionhash]&threadid=$threadid";
} else {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid";
}
// Create a notice on irc channel
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
}
}
eval("standardredirect(\"".gettemplate("redirect_postthanks")."\",\"$goto\");");
}
}
}
// ############################### start new thread ###############################
if ($action=="newthread") {
// $foruminfo=getforuminfo($forumid);
$message = htmlspecialchars($message); // Without this, a </textarea> in the message breaks the form on preview
$subject = htmlspecialchars($subject);
this is something u can compare with
it runns exellent with my crap
but
i know there are some problems with newreply, but thats of later concern, it should notfiy whit the ++++ i gave u, unless u got connection refused..
mADmAX`
06-18-2002, 08:04 AM
Originally posted by ModshackUK
Any chance of a txt version of the instructions as the text is getting mixed up with the installer and its causing me loads of parse errors.
Also for those who use quick reply this will not work as it will bypass it if a member uses it to make a reply to a thread.
HM
dong has overlooked an error in the install script...thus why you getting the parse errors...
Change this:
{
require("irc.php");
}
to:
{
require("irc.php");
}
}
}
Also, the newreply.php check for action=xxx
Another error is it should =="reply" not "new"
BTW, I am in no way putting your work down dong, I am just trying to help others with the same probs I went through. I also got it to work .... yippie :)
Floris
06-18-2002, 09:02 AM
Does eggdrop need to run on the same server as the web server ? Because I have a seperate shell for eggdrop on a different server then the web server where I will run the .php files.
mADmAX`
06-18-2002, 09:14 AM
No, I am running it on two different servers.
Originally posted by mADmAX`
dong has overlooked an error in the install script...thus why you getting the parse errors...
Change this:
{
require("irc.php");
}
to:
{
require("irc.php");
}
}
}
Also, the newreply.php check for action=xxx
Another error is it should =="reply" not "new"
BTW, I am in no way putting your work down dong, I am just trying to help others with the same probs I went through. I also got it to work .... yippie :)
yea, thx for showing me the error, i thought those } were already in the original script, sometimes i cant see the forest through the tree's :P
i updated the zip
Originally posted by ModshackUK
Any chance of a txt version of the instructions as the text is getting mixed up with the installer and its causing me loads of parse errors.
Also for those who use quick reply this will not work as it will bypass it if a member uses it to make a reply to a thread.
HM
added an installation.txt which include the script hacks
its in the new zip
ModshackUK
06-18-2002, 02:26 PM
added an installation.txt which include the script hacks
its in the new zip
I have looked at the new zip and can not find it ?
HM
anyone got this to work at all?
mADmAX`
06-19-2002, 07:28 PM
yes I have...whats your prob, maybe I can help you as I had lots of probs but I did get it working :)
well when i make a post, i have my eggdrop in the chan and everyhiing...the post goes thru and up on the board...but there is no announcement in the irc chan :( ...
thanks , i am using it on my board ;)
* Pady installed it ;)
nitro
06-20-2002, 01:57 PM
hi donq glad to c u have started yer own thread
as u know i installed your eggdrop mod from the -no eggdrop thread
just a small question
have my bugs been addressed with yer hack
1. get duble announce on sum forums mainly with an id 20+
2. forum that i have not specified is announcing tho others that i have not specified are cool
3.on reply the forum name is not displayed in the announce
apart from these as u know i have it working gr8
an the hack is the coolerst 1 yet
Juanito
07-10-2002, 08:43 PM
The hack is working for me, new thread is created and post annouced on irc but we aren't taked back to the thread, we stay stiucked on a white page.
----edited---
Nevermind, I forgot that you should modify the newthread.php in two places, witch was not specified in the install file I think... All working perfectly now, awesome hack :D
Juanito
07-12-2002, 01:05 AM
OK, one more thing! Now that I got it working perfectly, I don't understand how to custumize the way the IRC messages looks. What should I do if I want the text not inverted, blue or green with only the username, title and forum in bold ?
I assume this is in those parts of irc.php, but I don't understand how I should modify it...
fputs($fp,"\002[\00311,01X\00300,01]\002 New thread in: \002".$forumname[title].".\002 Poster: \002".$postusername.".\002 Subject: \002 ".$subject.". \002 \002[\00311,01X\00300,01]\002 \n\n");
for($i=0;$i<3000000;$i++)
redline
07-14-2002, 08:38 PM
hello i installed this hack
but its not notifing new threads
i have modified this in newthread.php
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid";
}
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
}
}
eval("standardredirect(\"".gettemplate("redirect_postthanks")."\",\"$goto\");");
} else {
//create new thread
vyrusmulder
07-30-2002, 07:09 AM
can i install it on a 2.2.1 vbulletin ???
Frank
08-13-2002, 09:40 PM
I have:
newthread.php
// Create a notice on irc channel
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
}
}
//
and newreply.php:
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircreply] == "1") {
$Action = "reply";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
}
}
//
All requests still get handled by the else if($Action == 'reply') branch of the code, regardless of whether the action is 'new'
Regardless of whether a new thread is started or a reply to an existing thread is posted, I always get the same message on IRC of:
[23:37] (@cyoot): {New reply in: Subject: Mac Users. Thread starter: Ali H, New poster: Frank. }
Note "new reply", never says "new thread".
Also, how can the braces around it be removed.
Also, why does the forum name not show up?
Thanks.
draven
09-05-2002, 07:33 PM
The hack works really great. Could one easily make a direct link to the post/thread?
Floris
09-05-2002, 07:37 PM
It would be great if someone with .tcl and .php knowledge could clean up the files so that irc post thread stuff is removed and it wont timeout on the ident to the bot etc, which would save SO much time when posting new threads/posts.
Currently I only let it do threads, since they are made less.
new reply would be great, but ppl seriously complain a lot about the lag on the forum.
Floris
09-07-2002, 10:36 PM
I just run into a bug.
When someone starts a poll, it will announce the thread (which is actually poll.php?something.. so the user could edit the post (bad vB!) or they get a msg that the poll can't be edited because i am not the owner of it. It SHOULD say the url to the thread, and not the poll :P
moosey
09-12-2002, 03:20 PM
Works fine for me just one thing though it updates to the IRC Chan all most instantly but then it sits there for a minute or so b4 it post the actual message in the forum?
Great work btw :-)
<?
global $goto, $DB_site, $Action, $ircdata;
$fp = fsockopen ($ircdata[ircserver], $ircdata[ircport], $errno, $errstr, 30);
if (!$fp)
{
echo "$errstr ($errno)<br>\n";
}
else
{
if($Action == 'new')
{
global $postusername, $subject, $forumid;
$forumname = $DB_site->query_first("SELECT title FROM forum WHERE forumid=".$forumid);
fputs($fp,"8,5 New thread in: \002" .$forumname[title]. ".\002 Poster: \002".$postusername.".\002 Subject: \002 ".$subject.".\002 LINK: \002 http://www.simplymaya.co.uk/forums/".$goto.". \002 \n\n");
for($i=0;$i<30000;$i++)
{
$g=$i;
}
}
else
{
global $postusername, $subject, $forumid, $threadinfo;
$forumname = $DB_site->query_first("SELECT title FROM forum WHERE forumid=".$forumid);
fputs($fp," 5,15New reply in: \002".$forumname[title]." \002 Subject: \002".$threadinfo[title].".\002 Thread starter: \002".$threadinfo[postusername]."\002, Replies:\002".($threadinfo[replycount] + 1).". \002 \n\n\n");
for($i=0;$i<30000;$i++)
{
$g=$i;
}
}
fputs($fp, "QUIT :Message delivered\n");
fclose ($fp);
}
?>
I modified the irc.php file works like a dream now thanks very much :)
Floris
01-10-2003, 08:45 AM
No matter what I do, the private forum, with forumid XX keeps getting posted, while all the other forums that are not listed don't get posted.
Uhm,
forums to include: 1,2,3,4,5
private mod forums: 6,7,8
and it posts on irc: 1,2,3,4,5,8
So .. how to exclude that one that it shouldn't but still does?
DPoole
01-12-2003, 02:04 AM
can anyone help and to save myself a load of grief can you answer this quick question
i dont have eggdrop from shell so if i was to say run it from me comp (localhost) would that not make it work ? as at moment this is only way for me to get an eggdrop up and running.
Mephisteus
01-19-2003, 02:45 PM
I have an eggdrop installed and did the file edits, but I think I edited the wrong parts. Since there are multiple appearences of the lines you have to find. Could someone post their newreply & newthread part? I am listening on port 22, this is the port I connect to using SSH. I also get an tcl error when I connect. WHAT'S GOING WRONG!? PS. I'm new to eggdrop :p
spaceb
01-23-2003, 04:47 AM
Thanks for the hack it's really a great one but there's a ptoblem..
Either it's posting from all the forums , or either if i choose not to post all forums, it dosen't post at all..
I'm using an eggdrop and a vbb version 2.2.7.. maybe it dosen't work on this version or something ? :/
Killer
02-05-2003, 02:14 PM
I installed the hack, too. Works fine. But one problem: Some of the buttons in admin CP seem to have no function or not the function they should have. Look at the end of my posting, there u can see what the bot does depending on what files are checked ind admin CP. I only want to turn off the notification on new replys!
I would be very thankful for hints to solve this problem.
Below u can see my edited files:
newreply.php:
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "reply";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
}
}
//
newthread.php:
// Create a notice on irc channel
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = trim($ircdata[ircforum]);
$ircforum=explode(" ", preg_replace("/[[:space:]]+/", " ", $fid) );
while (list($key,$val)=each($ircforum))
{
if ((strstr(" ".$forumid," ".trim($val))!="") || ($ircdata[ircforum] == 0))
{
require("irc.php");
}
}
}
//
irc.php:
<?
global $goto, $DB_site, $Action, $ircdata;
$fp = fsockopen ($ircdata[ircserver], $ircdata[ircport], $errno, $errstr, 30);
if (!$fp)
{
echo "$errstr ($errno)<br>\n";
}
else
{
if($Action == 'new')
{
global $postusername, $subject, $forumid;
$forumname = $DB_site->query_first("SELECT title FROM forum WHERE forumid=".$forumid);
if($ircdata[ircchannel1] != FALSE)
fputs($fp,"\002[\00311,01X\00300,01]\002 New thread in: \002".$forumname[title]."\002 Poster: \002".$postusername."\002 Subject: \002".$subject."\002 \002[\00311,01X\00300,01]\002\n\n");
for($i=0;$i<30000;$i++)
{
$g=$i;
}
if($ircdata[ircchannel2] != FALSE)
fputs($fp, "PRIVMSG ".$ircdata[ircchannel2]." :New thread in ".$forumname[title].". Poster: ".$postusername.". Subject: ".$subject.". Link: http://yourdomain.com/".$goto."\n");
for($i=0;$i<30000;$i++)
{
$g=$i;
}
if($ircdata[ircchannel3] != FALSE)
fputs($fp, "PRIVMSG ".$ircdata[ircchannel3]." :New thread in ".$forumname[title].". Poster: ".$postusername.". Subject: ".$subject.". Link: http://yourdomain.com/".$goto."\n");
}
else if($Action == 'reply')
{
global $postusername, $subject, $forumid, $threadinfo;
$forumname = $DB_site->query_first("SELECT title FROM forum WHERE forumid=".$forumid);
if($ircdata[ircchannel1] != FALSE)
fputs($fp, "\002[\00311,01X\00300,01]\002 New reply in: \002".$forumname[title]."\002 Subject: \002".$threadinfo[title]."\002 Thread starter: \002".$threadinfo[postusername]."\002 New poster: \002".$threadinfo[lastposter]."\002 \002[\00311,01X\00300,01]\002\n\n\n");
for($i=0;$i<30000;$i++)
{
$g=$i;
}
if($ircdata[ircchannel2] != FALSE)
fputs($fp, "PRIVMSG ".$ircdata[ircchannel2]." :There is a reply to a post in ".$forumname[title]." with the subject: ".$threadinfo[title].". Thread starter: ".$threadinfo[postusername].", New poster: ".$threadinfo[lastposter].". Link: http://yourdomain.com/".$goto."\n\n\n");
for($i=0;$i<30000;$i++)
{
$g=$i;
}
if($ircdata[ircchannel3] != FALSE)
fputs($fp, "PRIVMSG ".$ircdata[ircchannel3]." :There is a reply to a post in ".$forumname[title]." with the subject: ".$threadinfo[title].". Thread starter: ".$threadinfo[postusername].", New poster: ".$threadinfo[lastposter].". Link: http://yourdomain.com/".$goto."\n\n\n");
}
for($i=0;$i<30000;$i++)
{
$g=$i;
}
for($i=0;$i<23;$i++)
{
$info .= fgets ($fp,1280);
}
fputs($fp, "QUIT :Message delivered\n");
fclose ($fp);
}
?>
What the bot does:
[x] = set to "on" in Admin CP
[ ] = set to "off" in Admin CP
1) Irc Post Notification Addon
2) Irc All New Threads Notification Addon
3) Irc All New Reply's Notification Addon
Case 1: 1) [ ] 2) [ ] 3) [x] ---> Bot does nothing
Case 2: 1) [ ] 2) [ ] 3) [ ] ---> Bot does nothing
Case 3: 1) [ ] 2) [x] 3) [ ] ---> Bot posts new threads and new replies
Case 4: 1) [x] 2) [ ] 3) [ ] ---> Bot does nothing
Case 5: 1) [ ] 2) [x] 3) [x] ---> Bot posts new threads and new replies
Case 6: 1) [x] 2) [x] 3) [ ] ---> Bot posts new threads and new replies
Case 7: 1) [x] 2) [ ] 3) [x] ---> Bot does nothing
Case 8: 1) [x] 2)[x] 3)[x] ---> Bot posts new threads and new replies
I am running vBB 2.2.6
Any hints to make the bot only post on new threads?
Killer
02-05-2003, 08:52 PM
I found the buggy thing :)
Take newreply.php and search for:
if($ircdata[ircthread] == "1")
Replace ircthread with ircreply
The ON/OFF - Option for New Reply Notification should work now :)
Nicarlo
02-24-2003, 11:13 PM
no matter what i do it never dispays the new thread although it does display the new reply's how can i fix this ?
zfrank1
02-28-2003, 06:55 AM
I´ve another problem.
With firewall script isn´t working anymore.
But I don´t know what I must change.
Eggrop is listening on port 25121
I opened outgoing connection to port 25151 for new connection..
irc.php connect to eggdrop, but no announcement in channel...
I think it is an blocked outgoing port..
I use iptables..
any ideas?
PGLion
03-17-2003, 12:18 PM
I have just installed the hack on vbb 2.2.9.
After install_ircaddon.php I am not able to find an entry in the admin control panel.
Could someone please help me and tell where I can find or activate the Modify/Enable/Disable IRC functions.
Thx in advance...
Paul
feldon23
03-18-2003, 07:02 PM
As with the Chatters Online I wrote (which will become a FINAL hack soon), this can be done with mIRC and without an eggdrop.
mIRC can read and write raw bytes on sockets, so you can do primitive GET requests thru HTTP/1.0.
Funkie
03-19-2003, 08:19 PM
@feldon23
sounds good as my host will not allow me to port to irc:)
Nicarlo
04-15-2003, 08:53 PM
no matter what i do it always give me this error in the bot logs
telnet connection: xx.xxx.xxx.xxx/37739
Timeout/EOF ident connection
Can anyone explain to me how to fix this problem ?? thanks alot for your time
ReactoR
05-03-2003, 11:09 AM
Really nice work mate,i have been looking from that!.
Christoff
06-29-2003, 04:30 PM
What do i have to do to have a link to a post/thread in notice?
I tried to add the line from other parts od php.ini but it does'n work [ script is not executed, there is no notice ]
--------EDIT
I managed to do this one :>
But still there is one problem that i don't know how to solve.
Please tell me how to delete those { and } at the begining and at the end of a bot message?
Mike11212
07-09-2003, 11:26 AM
anyone know if this works with 2.3
Kenji Wing
07-15-2003, 03:12 PM
well i installed it correctrly in v 2.3 but now im having a prob
I got it installed running off port 80 because 1337 is blocked off my server but it seems not to send anything to my bot who is sitting in the channel maybe my information is wrong i dinit understand all of thye irc stuff because im not a genius with it -_-
Bulleh
07-20-2003, 09:29 PM
well all is installed, BUT, it doesnt announce on IRC?
Bulleh
07-20-2003, 10:06 PM
what goes in these boxes
IRC Bot Identity user ie(bob)
IRC Bot Identity Hostmask ie(localhost)
IRC Bot Identity Server mask ie(domain address)
IRC Bot Identity Realname ie (john doe)
DeadGaze
09-07-2003, 08:20 AM
great hack but wont install for me.
i am trying to get this to work on my localhost at home.
i am running xp and i am very frustrated.
when i click on "next" in the installer i get a 404.
it gives me this:
NavigationError/?e=ERRDNS&u=http%3A//thec0re.no-ip.com/php/php.exe
wich tells me i may be ++++ out of luck ... any one that could help please pm me :)
I realy need to figure a way to get this to run on my localhost
Thx in advance
DeadGaze
09-11-2003, 01:38 AM
there has to be someone here who knows how i might get this hack to work my local host with xp as the os :\
Anyone with helpful info please reply
PixelFx
09-12-2003, 09:29 AM
can anyone recommend a good & affordable Shell/Irc Host? I want something where I get nickserv, chanserv etc as part of the account. I've searched a lot of sites but haven't found anything that looks any good yet...
lasto
09-12-2003, 11:42 AM
this hack works 100%
ive installed it and use it everyday
I dont use a web host i use a windrop and just run it from my comp but seeing as im up 24/7 then it works fine.
Only thing i dont use from this hack is new replies as it spams the channel so just set for new threads.
How to get it working
Get a windrop
edit teh config file and set it to join a mirc server and room
if you can pull that off then you half way there.
In admin cp enter the details for the eggdrop as your computer so it will be your ip and port 1137
add the vbulleting tcl file to the windrop config file and add the tcl file in the scripts dir.
Is fairly easy to do really.
Nicarlo
09-12-2003, 12:26 PM
when i make a new thread it takes a long time for it to redirect me, how can i fix this ?
DeadGaze
09-13-2003, 03:40 AM
maybe i am not making myself clear enough here.
i have the windrop set up...that was easypie and no problems.
I am running my vb localy...meaning i am the host for the board. The irc addon will not install ...as you can read in the privious 2 threads i have put here.... there must be a workaround to this problem and mayby there is someone who has figured a way to beat the problem running the board on a localhost...
I would think this should not be too tough for those "experts" out there....hope to hear something soon before i go nutzzz :S
DeadGaze
09-14-2003, 07:54 AM
ok folks...this hack is a beauty....i had to make the table myself for the sql db and all is fine now...works great.... beautiful :p
My question here: How can i make it so it announces on 2 or more lines? thx
if($Action == 'new')
{
global $postusername, $subject, $forumid;
$forumname = $DB_site->query_first("SELECT title FROM forum WHERE forumid=".$forumid);
if($ircdata[ircchannel1] != FALSE)
fputs($fp,"\002[\00311,01X\00300,01]\002 New thread in: \002".$forumname[title].".\002 Poster: \002".$postusername.".\002 Subject: \002 ".$subject.". \002 \002[\00311,01X\00300,01]\002 \n\n");
for($i=0;$i<3000000;$i++)
tinbin
10-16-2003, 09:23 AM
when i make a new thread it takes a long time for it to redirect me, how can i fix this ?
I got that problem too :(
Anyone got a solution for that?
updated post and attachment with version 2.0
Christoff
10-22-2003, 07:55 AM
i am trying to make it work on vbb3 beta but it's not that easy...
It's almost done...but i just can't get lastposter and thread starter to work!
And that timeout suxx bigtime [i mean in ver 1.0 because i want to have thread and post announcer]
Regards.
manga
10-25-2003, 10:14 PM
Problem with the thread url announce
Hi,
I have a problem with the url the script announces :
At moment it shows :
[Board] Link: http://www.xxxxxxxxxx.de/forums/showthread.php?amp;postid=79223#post79223
and it should be like this :
[Board] Link: http://www.xxxxxxxxxx.de/forums/showthread.php?postid=79223#post79223
most think i wonder about is "&" ?!
Christoff
10-26-2003, 03:50 PM
yeah..it sometimes does appear
i don't know why but i don't care much since it comes only 1 for 300 announces.
PsychoticManiac
11-02-2003, 08:17 AM
Any1 has a solution for this thing yet?
[05:14] Telnet connection: virgo.nethostco.com/42527
[05:14] Timeout/EOF ident connection
How do i fix this? :s
Christoff
11-02-2003, 08:19 AM
I think that it is correct.
Maybe you forgot to change the channel name in TCL? :)
It happens.
PsychoticManiac
11-02-2003, 08:26 AM
i thought u dont need to change Channelname in TCL ?
Christoff
11-02-2003, 08:28 AM
Ooops... then how will the bot know where to send the message? :)
Yes..you have to set the channel name in TCL.
Regards :)
PsychoticManiac
11-02-2003, 08:32 AM
Yeah but i have V2 and it says you dont have to fill in an Channelname right?
Christoff
11-02-2003, 08:34 AM
Well... i think that you don't have to fill the channelname in the admin panel :)
But... why r u still asking me about it and not giving it a try?
It will take you like one minute!
Regards
PsychoticManiac
11-02-2003, 08:36 AM
Ehm well. Because i DID try :P and i inserted in the V1 TCL when u said about the channel name, and it worked, and i retried the v2 TCL and it also worked but still getting the error in the Telnet Bot thing..
Whatever.. It works! :P Thanks!!
*Install*
Christoff
11-02-2003, 08:57 AM
This is not an error m8.
It's only a message that the script sent the data and disconnect.
Just telnet your bot on that port and send the data...you ill get the same message.
CarolinaKid
11-11-2003, 04:47 AM
I have version one working great. Installed version two writing over the admin irc.php and the irc.php amnd the bot file as told to i rehashed bot and tried it it no long works port is same and all i have checked nay ideas. bot is in channel just does not post anything.
Hard_one
11-11-2003, 08:38 AM
i get the same error
Telnet-Verbindung: ipx10185.ipxserver.de/52158
Zeitueberschreitung/EOF bei der Ident-Verbindung
EDIT:
it works with the tcl file from version 1.0 but the link is wrong:
Link: http://myforum/showthread.php?amp;postid=37023#post37023
the link must be whitout the highlighted text
zwerg
11-26-2003, 02:50 PM
HI
The hack work finde but the newreply dont work. I hav the version 2.0 What can i do?
The second problem: the postbot post the Session with the thread. can you make that the session is hide in link in irc?
Great
FlyingDutchman
12-19-2003, 10:25 AM
i've got it to work with vb3 (created new php code from scratch btw), but is there still not a way to remove those {} things at the beginning and the end of the line?
this should somehow be caused by the tcl right?
i just hope anyone has a 'fix' for this...
liquidblaze
12-26-2003, 11:55 PM
I am running or better yet trying to get this to run with a 2.3.3 board and eggdrop v1.6.15.
I set my eggdrop.conf to
listen 1337 bots
listen 6666 users
and set the port of the script to 1337 - nothing, I changed both to 6666 nothing again.
then I set the bot to listen to "all" and changed the port in the vB admin section - still nothing. I always get Connection refused (111).
The ports are correct though. Anyone can give me a little help on this
CarolinaKid
01-11-2004, 04:24 AM
i've got it to work with vb3 (created new php code from scratch btw), but is there still not a way to remove those {} things at the beginning and the end of the line?
this should somehow be caused by the tcl right?
i just hope anyone has a 'fix' for this...
Have you gotten my email i sent you
FlyingDutchman
01-18-2004, 10:45 AM
Have you gotten my email i sent you
yes, i recieved it, and read it today, but i don't have any install instructions made for it yet, i'm going to do that when vb3 final is released...
i'm not releasing any hacks/conversions untill then (I got same sort of questions before from other people...)
to Liquidblaze: why not set it to a totally different port? like 3852, just an example, just put some random numbers there, that works for me at least (of course i'm not using 3852 myself :))
manga
02-22-2004, 02:01 AM
ah come on :) we need that thing badly.. another 100 years till 3 get final i can not wait
Hazzo
03-22-2004, 10:42 PM
Cant wait till the final version for vb gold is released..
new version 2.9, attachment updated
CarolinaKid
03-31-2004, 06:16 PM
Irc thread Notifier -With eggdrop [VB 2.2.x > 2.3.x]
https://vborg.vbsupport.ru/showthread.php?s=&threadid=39974
################################################## ###################
for installation on VB 3.x.x
the only things that are different are the placement of the code-adds
to /newthread.php and admin/index.php. the code-add of /newthread.php
itself stays the same. admin/ircaddon.php, /irc.php and the required
sql query also stays the same.
since i dont have vb3 i cant check. if anyone tell me where the
code should be in vb3, i will add it to this install text
--
1.0
this is an modification of dymo's Irc post Notifier without eggdrop,
dymo should get all credit, cos i didn't do that much modifications
to his hack. Also IRiDiuM deserves some credit for his tcl, thx dude :)
https://vborg.vbsupport.ru/showthread.php?s=&threadid=38205
--
2.0
removed reply announcement from irc.php and ircadmin.php ,irc.php has
simplyfied code, added chan choice to the admin
--
2.9
code adjustment to newthread.php rewritten. added multiple channel support
removed the ircaddon_install.php, everything is in this txt
################################################## ###################
What it does:
------------
When a new thread is posted by a user on your board a message will
be send to your eggdrop irc bot, and the bot echo's it to your
irc channel
*note: YOU NEED AN EGGDROP BOT CONNECTED TO AN IRC SERVER FOR THIS
u can get eggdrop here: http://www.egghelp.org/
or windrop here: http://windrop.sourceforge.net/
other ircbots that can run tcl scripts could also be usefull
################################################## ###################
When UPGRADING TO 2.0
---------------------
then you only have to overwrite/copy irc.php, ircadmin.php and
vbulletin.tcl to the right places. NO updates to newthread.php
newreply.php and admin/index.php are required
When UPGRADING TO 2.9
---------------------
then you have to overwrite/copy irc.php, ircadmin.php and
vbulletin.tcl to the right places. the old adjustment in
newthread.php must be replaced with the new one
################################################## ###################
place the files from the zip in:
--------------------------------
ircadmin.php -> vb admin dir
irc.php -> vb root dir
vbulletin.tcl -> eggdrop script dir
################################################## ###################
config your eggdrop:
--------------------
edit in vbulletin.tcl
if you want to use another portnumber then 1337, than edit that number
edit your eggdrop config file (eggdrop.conf):
add at the end:
source scripts/vbulletin.tcl
################################################## ###################
run required sql queries:
--------------------------
add a new table with phpmyadmin > run the queries in install.sql
################################################## ###################
php adjustments:
----------------
++++++++++++++++++
open /newthread.php
and find:
++++++++++++++++++
// redirect
if ($postpoll) {
$goto="poll.php?s=$session[sessionhash]&threadid=$threadid&polloptions=".intval($polloptions);
} elseif ($visible) {
$goto="showthread.php?s=$session[sessionhash]&threadid=$threadid";
} else {
$goto="forumdisplay.php?s=$session[sessionhash]&forumid=$forumid";
}
++++++++++++++++++
under that add:
++++++++++++++++++
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = $ircdata[ircchan1forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel1];
require("irc.php");
}
$fid = $ircdata[ircchan2forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel2];
require("irc.php");
}
$fid = $ircdata[ircchan3forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel3];
require("irc.php");
}
}
//
++++++++++++++++++
open admin/index.php
and find:
++++++++++++++++++
makenavselect("User Groups","<hr>");
++++++++++++++++++
under that add:
++++++++++++++++++
//ircaddon
makenavoption("Modify/Enable/Disable IRC","ircadmin.php?action=settings");
makenavselect("IRC");
++++++++++++++++++
hacks done
################################################## ###################
configure the ircaddon:
-----------------------
go to the admin control panel and find "Modify/Enable/Disable IRC"
on the left.
configure all options
notes:
- IRC Forum ID`s
put all your forum id's that you want to have notified in irc here,
use only 1 space to seperate forumid numbers
- IRC Server Address
here you put the ip/hostname of your eggdrop bot
- IRC Server Port
here you put the port number which is set in the vbulletin.tcl script.
This is the port# the bot listens to for notifier messages. in this
case its 1337
################################################## ###################
now your done
################################################## ###################
the following problems could occure:
------------------------------------
Connection Refused
this error occures on 2 known occasions:
1# u have to make sure ur provider allows u to open a port
(in this case 1337, u could try another port, but don't forget to also
change it in the vbulletin.tcl)
2# make sure ur eggdrop has opened a port (1337) to listen for messages.
--
Connection Timeout
this error occures when your bot is offline, or the host of your vb board
cant reach the bots ip
--
slow displaying of the thread announcement is caused by the bot
requesting ident information from the vb boards host. currently i haven't
found any solution for this problem. adjusting the ident timeout setting
on the bot doesnt help, but ive noticed that an eggdrop is faster then a windrop.
if someone has more insight to this plz tell us
--
hint:
make sure a firewall is not blocking any communication
lasttime i helped someone install, it didnt work cos the idiot didnt
turned the firewall off on the bot box. after telling him for the 5th
time 'turn the fecking firewall off' it worked
so make sure nothing is blocking its communication, at the isp where your
vb is running or at the box where the bot is running
--
Hmmm no attachment given
Hmmm no attachment given
should be there now, for some reason i couldnt upload a file with the same size :\
nitro
04-02-2004, 04:54 PM
Irc thread Notifier -With eggdrop [VB 2.2.x > 2.3.x]
https://vborg.vbsupport.ru/show...&threadid=39974
################################################## ###################
for installation on VB 3.x.x
the only things that are different are the placement of the code-adds
to /newthread.php and admin/index.php. the code-add of /newthread.php
itself stays the same. admin/ircaddon.php, /irc.php and the required
sql query also stays the same.
since i dont have vb3 i cant check. if anyone tell me where the
code should be in vb3, i will add it to this install text
--
Looks to me like the whole thing needs a re-write for vb3 gold +
admin coding is completely different to start
At a guess id say in new thread.php your looking for is:
// ### NOT PREVIEW - ACTUAL POST ###
if ($newpost['postpoll'])
{
$url = "poll.php?$session[sessionurl]t=$newpost[threadid]&polloptions=$newpost[polloptions]";
}
else if ($newpost['visible'])
{
$url = "showthread.php?$session[sessionurl]p=$newpost[postid]#post$newpost[postid]";
}
else
{
$_REQUEST['forceredirect'] = 1;
$url = "forumdisplay.php?$session[sessionurl]f=$foruminfo[forumid]";
}
and in admincp/index.php find:
if (can_administer('canadminstyles'))
and above it add:
construct_nav_option("Modify/Enable/Disable IRC", 'ircadmin.php?do=settings', '<br />');
construct_nav_group("IRC", '<hr />');
However this will not get it working as admin functions are called in a completely different manner now so ircadmin.php is useless without a full re-write and iv yet to digest wether irc.php and the code to add in newthread.php also needs re-write
Im really not that advance in coding tho iv np adding hacks
Id be interested to see what dutchman has got so far and maybe I could help out with the tcl
CarolinaKid
04-02-2004, 05:19 PM
I have this working on my forums.
in /newthread.php find:
// ### NOT PREVIEW - ACTUAL POST ###
if ($newpost['postpoll'])
{
$url = "poll.php?$session[sessionurl]t=$newpost[threadid]&polloptions=$newpost[polloptions]";
}
else if ($newpost['visible'])
{
$url = "showthread.php?$session[sessionurl]p=$newpost[postid]#post$newpost[postid]";
}
else
{
$_REQUEST['forceredirect'] = 1;
$url = "forumdisplay.php?$session[sessionurl]f=$foruminfo[forumid]";
}
BELOW it add
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = $ircdata[ircchan1forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel1];
require("irc.php");
}
$fid = $ircdata[ircchan2forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel2];
require("irc.php");
}
$fid = $ircdata[ircchan3forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel3];
require("irc.php");
}
}
//
Run the install.sql as normal.
In the irc.php find:
$postusername
and replace it with $bbuserinfo['username']
then find:
$subject
and replace it with $_POST['subject']
and last find:
$goto
and replace it with $url
as for the admin pannel the ircadmin.php is going to have to be rewote.
But don't let this stop you...just change the vaules in database tot he ip,channel,port and forum id's and run it. then when the ircadmin.php is rewrote its just a admincp/index.php edit and a file upload and your done.
nitro
04-02-2004, 06:54 PM
I have this working on my forums.
in /newthread.php find:
// ### NOT PREVIEW - ACTUAL POST ###
if ($newpost['postpoll'])
{
$url = "poll.php?$session[sessionurl]t=$newpost[threadid]&polloptions=$newpost[polloptions]";
}
else if ($newpost['visible'])
{
$url = "showthread.php?$session[sessionurl]p=$newpost[postid]#post$newpost[postid]";
}
else
{
$_REQUEST['forceredirect'] = 1;
$url = "forumdisplay.php?$session[sessionurl]f=$foruminfo[forumid]";
}
BELOW it add
// irc addon
$ircdata = $DB_site->query_first("SELECT * FROM ircaddon");
if($ircdata[ircthread] == "1") {
$Action = "new";
$fid = $ircdata[ircchan1forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel1];
require("irc.php");
}
$fid = $ircdata[ircchan2forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel2];
require("irc.php");
}
$fid = $ircdata[ircchan3forum];
$ircforum = preg_replace("/[[:space:]]+/", " ", $fid);
$ircforum = " ".$ircforum." ";
$forumtoirc = "/ ".$forumid." /";
if (preg_match($forumtoirc ,$ircforum)) {
$ircchan=$ircdata[ircchannel3];
require("irc.php");
}
}
//
Run the install.sql as normal.
In the irc.php find:
$postusername
and replace it with $bbuserinfo['username']
then find:
$subject
and replace it with $_POST['subject']
and last find:
$goto
and replace it with $url
as for the admin pannel the ircadmin.php is going to have to be rewote.
But don't let this stop you...just change the vaules in database tot he ip,channel,port and forum id's and run it. then when the ircadmin.php is rewrote its just a admincp/index.php edit and a file upload and your done.
Parse error: parse error, unexpected '[', expecting ',' or ';' in irc.php line 10
this is line 10 after changing 2 of each of the instances you suggested :(
global $threadid, $bbuserinfo['username'], $_POST['subject'], $forumid;
CarolinaKid
04-02-2004, 07:07 PM
Parse error: parse error, unexpected '[', expecting ',' or ';' in irc.php line 10
this is line 10 after changing 2 of each of the instances you suggested :(
global $threadid, $bbuserinfo['username'], $_POST['subject'], $forumid;
Sorry should have made directions clear
the irc.php should look like this
<?
function postonirc ($posttext) {
global $goto, $DB_site, $Action, $homeurl, $ircdata, $ircchan;
$fp = fsockopen ($ircdata[ircserver], $ircdata[ircport], $errno, $errstr, 30);
if (!$fp) { echo "$errstr ($errno)<br>\n"; }
else
{
global $threadid, $postusername, $subject, $forumid;
if($ircdata[ircchannel1] != FALSE){
fputs($fp,$posttext);
}
$info .= fgets ($fp,1280);
fclose ($fp);
}
}
$forumname = $DB_site->query_first("SELECT title FROM forum WHERE forumid=".$forumid);
$putstring = "?".$ircchan;
$putstring .= "?\002\00309[\00304,01Board\00309,01]\002\00304 New thread in: \002\00309".$forumname[title]."\002\00304 Poster: \002\00309".$bbuserinfo['username']." \002\00304 Subject: \002\00309".$_POST['subject']."\002";
$putstring .= "?\002\00309[\00304,01Board\00309,01]\002\00304 Link: \00309 http://www.yourdomain.com/forums/".$url."\002";
$putstring .= "\n";
postonirc($putstring);
?>
lasto
04-02-2004, 07:15 PM
can someone put together a file that contains everything to get this running on gold
would be appreciated :)
CarolinaKid
04-02-2004, 07:19 PM
can someone put together a file that contains everything to get this running on gold
would be appreciated :)
lasto would love to but one its not my hack and for 2 only way i have it working on gold does not have a admin option ..due to fact the whole admin section has to be rewrote. so you have to change its via mysql rather than in admincp. and alot of peeps not like changing vaules direct there. but if you follow the last few post i have posted it will get ya up and running
lasto
04-02-2004, 07:57 PM
i dont mind changing stuff though mysql if someone tells me what i have to run :)
CarolinaKid
04-02-2004, 08:22 PM
Here is the edits for dong's notify for vb 3 gold that i have found to work this is not a offical release dong will release it when he gets his done this is just for those of you that are trying to install dong's great hack on vb3. Altho i am not php coder so i could not rewrite the ircadmin.php as it needs to be rewrote i have supplied the file changes for everything else hopefully dong can get the ircadmin.php rewrote for vb3 soon.
Dong if i am outta bounds here i am sorry and please have thread removed.
lasto
04-02-2004, 08:30 PM
nice one much appreciated - i follow what u saying but with no admin cp how do u select which forums it will do posts from or does it just show all from the board ?
CarolinaKid
04-02-2004, 08:36 PM
nice one much appreciated - i follow what u saying but with no admin cp how do u select which forums it will do posts from or does it just show all from the board ?
you have to mannually edit the database via phpmyadmin
open phpmyadmin go to the forum database go to ircaddon
go to browse then edit you will see like #chan1 bot-ip and such just replace the info and save
nitro
04-02-2004, 09:51 PM
hmmm summat wierd im getting no output, I can see it connect ok but getting no output
iv tried forcing in the tcl
set chan #mychan
in mysql ircaddon iv
ircenable 1
ircthread 1
ircreply 0
ircchan1forum 0 (for simplicity till i see it do what v1 used to do when i used it ages ago)
ircchannel1 #mychan and blank when i try to force chan in tcl not that that shud make difference
ircserver theipofbot
ircport thebotport
all other fields iv left blank, really cant see what is wrong :(
I would be questioning the global line i had trouble with earlier but if its working ok for others then it cant be that, strange.
what I really want to do with this is to get it working so I can digest the code and maybe port an addon probly with the need for plenty help from others in this thread if interested to announce new champs from the v3Arcade addon.
CarolinaKid
04-03-2004, 08:15 AM
hmmm summat wierd im getting no output, I can see it connect ok but getting no output
iv tried forcing in the tcl
set chan #mychan
in mysql ircaddon iv
ircenable 1
ircthread 1
ircreply 0
ircchan1forum 0 (for simplicity till i see it do what v1 used to do when i used it ages ago)
ircchannel1 #mychan and blank when i try to force chan in tcl not that that shud make difference
ircserver theipofbot
ircport thebotport
all other fields iv left blank, really cant see what is wrong :(
I would be questioning the global line i had trouble with earlier but if its working ok for others then it cant be that, strange.
what I really want to do with this is to get it working so I can digest the code and maybe port an addon probly with the need for plenty help from others in this thread if interested to announce new champs from the v3Arcade addon.
well its actually pretty simple 0 is not an option in this one for forum id you must put the forum id's in I also could not get it to work using 0 but does if you type them all in.
nitro
04-03-2004, 09:46 AM
well its actually pretty simple 0 is not an option in this one for forum id you must put the forum id's in I also could not get it to work using 0 but does if you type them all in.
well I started with 1 specific forum id and it was connecting to the bot I coud see it in console but no announce so i tried the 0 which also connected to the bot and no announce
* nitro shrugs
lasto
04-03-2004, 09:49 AM
Fatal error: Cannot redeclare postonirc() (previously declared in
anyone get that ? or have i overlooked something ?
all i did was upload the files and then edit new thread
i aint edited irc.php etc
also i edited the sql queries from phpymyadmin etc so it posts which it does but i get that error on the board as well
CarolinaKid
04-03-2004, 09:54 AM
nitro sounds like either you did not add the tcl script to bot config or you did not change #chan1 to #urchannelname
and lasto i dunno what your prob is buddy. not seen that error before
lasto
04-03-2004, 10:03 AM
ok got it to post in mirc but here is the output
why is the poster missing and the thread name ?
(12:00:14) (%Bot) {New thread in Test Section.| Poster: . Subject: . Link: http://localhost/test/}
Also in phpmyadmin can we only select 3 channels from which this is to take posts to mirc as if i do it liek this 35.36.37 etc it dont work
CarolinaKid
04-03-2004, 10:06 AM
ok got it to post in mirc but here is the output
why is the poster missing and the thread name ?
(12:00:14) (%Bot) {New thread in Test Section.| Poster: . Subject: . Link: http://localhost/test/}
Also in phpmyadmin can we only select 3 channels from which this is to take posts to mirc as if i do it liek this 35.36.37 etc it dont work
did u use the irc.php i put in the zip file
it had to be edited some from the one dong posted
and also i not follow ur phpadmin ? cause channels have 3 slots and the are #chan1 #chan2 #chan3 and you shoud just put in #urchannel name can have up to 3 channels but one per box and the 35.36.37 sounds like forum id's and if thats the casue they are 35 36 37 note only one space between
lasto
04-03-2004, 10:11 AM
ok it works cheers CarolinaKid
now for one more question (also it is easy to do this hack even in phpmyadmin :))
i see 3 boxes where i enter the forumids - is this all we allowed as i have more forums i want to be included
CarolinaKid
04-03-2004, 10:17 AM
ok it works cheers CarolinaKid
now for one more question (also it is easy to do this hack even in phpmyadmin :))
i see 3 boxes where i enter the forumids - is this all we allowed as i have more forums i want to be included
i have 100 forum id's listed in the box just make sure to do forum id space forum id..
Example: 1 2 3 4 5 6 7 8 9 10 11 12 13
lasto
04-03-2004, 10:32 AM
i have 100 forum id's listed in the box just make sure to do forum id space forum id..
Example: 1 2 3 4 5 6 7 8 9 10 11 12 13
nice one works perfect - just gotta change them colors for irc then ill be happy :)
infact im happy now cause it works on vb3 :)
appreciate all your help on this one :)
CarolinaKid
04-03-2004, 10:37 AM
nice one works perfect - just gotta change them colors for irc then ill be happy :)
infact im happy now cause it works on vb3 :)
appreciate all your help on this one :)
lol yeah i added colors on black backgroud looks good bit prob not on white....just look for the /003xx and replace xx with the mirc color code u want to have
nitro
04-05-2004, 04:43 PM
nitro sounds like either you did not add the tcl script to bot config or you did not change #chan1 to #urchannelname
and lasto i dunno what your prob is buddy. not seen that error before
definatly got the chaninfo right and the tcl is loaded
bot console:
?6:23PM? [10:23] Loaded chanlimit.tcl v1.5 by slennox (active on all channels)
?6:23PM? [10:23] vbulletin.tcl loaded
yes i just simply added a putlog "vbulletin.tcl loaded" so it shows up in rehash and logs. Note dont put this in a proc, it would usually go at the end of the .tcl
heres what i get in bot console on new thread posting in the 1 forum specified in ircchanforum1:
?6:25PM? [10:24] Telnet connection: xxxx.xxxxxhost.net/47738
?6:25PM? [10:24] Timeout/EOF ident connection
the above is from live testing as opposed to the other tests i made on my own box. Still not getting any announce tho :(
so its connecting ok
i have 1 possible idea what are these new mysql fields for in ver 2 of this addon ?
ircbnick ircbpass irc_user irc_host irc_serv irc_realname
is anything needed in any of these fields for identing, i dont remember these fields in ircadmin of the old ver i used some time ago probably pre v1.
PS thanx for your guidance so far I just hope as others got it going I can too
CarolinaKid
04-07-2004, 03:20 AM
hmm i know this is a dumb question but have ya got bot in channel and as you said it looks to connecting.. almost seems like a problem with the bot itself. All i can say at this point is double check everything and maybe even try adding a 2nd channel to see if it will work in 2nd channel. let me know what you figure out.
Hazzo
04-08-2004, 08:30 PM
heres what i get in bot console on new thread posting in the 1 forum specified in ircchanforum1:
?6:25PM? [10:24] Telnet connection: xxxx.xxxxxhost.net/47738
?6:25PM? [10:24] Timeout/EOF ident connection
the above is from live testing as opposed to the other tests i made on my own box. Still not getting any announce tho :(
so its connecting ok
Do you have the bot setup to allow the xxx.xxxhost.net to telnet into it?
nitro
04-10-2004, 01:02 PM
Do you have the bot setup to allow the xxx.xxxhost.net to telnet into it?
dont remember having to do that before but it was a long time ago. what would i do there like add the host to my user name.
well iv just tried thaT and its the same .+host nitro *!*@xxx.xxxhost.net
Ravenheart
04-17-2004, 05:43 PM
definatly got the chaninfo right and the tcl is loaded
bot console:
?6:23PM? [10:23] Loaded chanlimit.tcl v1.5 by slennox (active on all channels)
?6:23PM? [10:23] vbulletin.tcl loaded
yes i just simply added a putlog "vbulletin.tcl loaded" so it shows up in rehash and logs. Note dont put this in a proc, it would usually go at the end of the .tcl
heres what i get in bot console on new thread posting in the 1 forum specified in ircchanforum1:
?6:25PM? [10:24] Telnet connection: xxxx.xxxxxhost.net/47738
?6:25PM? [10:24] Timeout/EOF ident connection
the above is from live testing as opposed to the other tests i made on my own box. Still not getting any announce tho :(
so its connecting ok
i have 1 possible idea what are these new mysql fields for in ver 2 of this addon ?
ircbnick ircbpass irc_user irc_host irc_serv irc_realname
is anything needed in any of these fields for identing, i dont remember these fields in ircadmin of the old ver i used some time ago probably pre v1.
PS thanx for your guidance so far I just hope as others got it going I can too
I get the same prob :|
Shaved
04-22-2004, 10:08 AM
Fully Working for vb3
eggdrop and windrop
http://www.vbhacks.us/forum/showthread.php?t=140
Hazzo
04-22-2004, 10:26 AM
Yes, yes, the Shaved version you mention is fully working!! Great work again and thanx for figuring out the error/issue with the windrop!!!
Kairo
08-31-2004, 10:57 AM
He i'm trying to annouce on 2 or 3 lines but it still doesn't work i also tried the code what is used here
https://vborg.vbsupport.ru/showthread.php?p=437070&highlight=lines#post437070
but it's still annouces on one Line in IRC, and in the beginning and the end it has an { and } how do i delete those ?
TheShell
11-28-2004, 03:31 PM
Fully Working for vb3
eggdrop and windrop
http://www.vbhacks.us/forum/showthread.php?t=140
Hi all,
does anybody have this Hack for me? The Hack was deleted on vbhacks.us and i need this Hack ;o)
Thanks a lot
TheShell
i get any error
[17:05] Tcl error in file 'eggdrop.conf':
[17:05] invalid command name "source/vbulletin.tcl"
while executing
"source/vbulletin.tcl"
(file "eggdrop.conf" line 1344)
Shaved
01-17-2005, 10:02 AM
i get any error
[17:05] Tcl error in file 'eggdrop.conf':
[17:05] invalid command name "source/vbulletin.tcl"
while executing
"source/vbulletin.tcl"
(file "eggdrop.conf" line 1344)
You need to put the file <b>vbulletin.tcl</b> in scripts dir of your eggdrop
the config line should read
source scripts/vbulletin.tcl not source/vbulletin.tcl
Vizionz
02-05-2005, 09:39 AM
ircserver = Bot Host
ircport = Port the Irc channel ?
are them two correct after that what are all these others for
ircbnick
ircbpass
irc_user
irc_host
irc_serv
irc_realname
Vizionz
02-08-2005, 09:47 PM
anyone ?
bandare
11-08-2007, 01:24 AM
would be great to see this for the latest vb.... any thoughts?
Scared56
06-18-2008, 11:37 PM
I'm trying to follow the install guide but since it's not fully updated for 3.x.x, can someone help me with it? How do I find the new admin/index.php and such?
mizamlar
04-26-2009, 04:58 PM
Is there a version for 3.8.x ?
Scared56 did you find?
Thanks.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.