Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Beta Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Irc post Notifier -no eggdrop Details »»
Irc post Notifier -no eggdrop
Version: 1.00, by dymo dymo is offline
Developer Last Online: Jun 2009 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 05-03-2002 Last Update: Never Installs: 62
Is in Beta Stage  
No support by the author.

this is a hack in progress but i had a few people who saw us testing and after alot of begging i finally caved, (I know I am weak)

So I decided to release the current version, expect a major update on it tommorrow with a few more options.

What this hack does is allow you to specify either which forum or all forums you wish to monitor and either monitor new threads or new replies, and send a notice to an irc channel when a new thread or reply is posted. Without requiring an eggdrop bot, this is 100% php, and works on servers running php in safe mode.



Its fully configurable, a fair amount of options in the admin panel for this, more to come tommorrow



i am attaching the installer on this post and the other two REQUIRED files in the next two posts.

just upload the installer to your admin directory and run install_ircaddon.php and follow the prompts and make the changes to newreply.php, newthread.php, and admin/index.php

easy enough

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #52  
Old 05-18-2002, 11:08 PM
dymo dymo is offline
 
Join Date: Jan 2002
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry all for the severe lack of a response i have on the road for awhile and lost a large amount of time on another project of our a cms system and portal thats truely ingregrated with vbulletin. we do have alot of updates on this hack already i just need to compile those into an update and rerelease of this hack and then we will publish it, i am hoping for tommorrow if not then on monday, i have also polished the documentation on it a bit better
Reply With Quote
  #53  
Old 05-27-2002, 06:26 AM
Broekie's Avatar
Broekie Broekie is offline
 
Join Date: Dec 2001
Location: Netherlands
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by dymo
sorry all for the severe lack of a response i have on the road for awhile and lost a large amount of time on another project of our a cms system and portal thats truely ingregrated with vbulletin. we do have alot of updates on this hack already i just need to compile those into an update and rerelease of this hack and then we will publish it, i am hoping for tommorrow if not then on monday, i have also polished the documentation on it a bit better
Well, it's a monday today
Just kidding, take your time. We don't want you to get overworked/stressed afterall
But, I'd really like to see the update. I'm definitely going to install this
Reply With Quote
  #54  
Old 05-31-2002, 01:28 AM
countryboy713 countryboy713 is offline
 
Join Date: Mar 2002
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this is a very l33t hack but im having one problem. i got it installed successfully but when the bot joins it give a link to the wrong forums. i know it is probably very simple, but how do i customize the forums the bot advertises for (laugh all you want because its probably the easiest thing to do).

any help is greatly appreciated.
Reply With Quote
  #55  
Old 05-31-2002, 09:11 AM
Broekie's Avatar
Broekie Broekie is offline
 
Join Date: Dec 2001
Location: Netherlands
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by countryboy713
this is a very l33t hack but im having one problem. i got it installed successfully but when the bot joins it give a link to the wrong forums. i know it is probably very simple, but how do i customize the forums the bot advertises for (laugh all you want because its probably the easiest thing to do).

any help is greatly appreciated.
Don't worry, we won't laugh.
You'll have to wait for the 'major update' we're all waiting for...
The current version watches 1 or all forums, the 'major update' should make it possible to exclude some forums, like your crewforums etc.
Reply With Quote
  #56  
Old 06-03-2002, 01:06 PM
Broekie's Avatar
Broekie Broekie is offline
 
Join Date: Dec 2001
Location: Netherlands
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Broekie


Well, it's a monday today
Just kidding, take your time. We don't want you to get overworked/stressed afterall
But, I'd really like to see the update. I'm definitely going to install this
and once again, it's a monday

@Dymo: please please please, bring us the update! *begging face*
Reply With Quote
  #57  
Old 06-04-2002, 12:25 AM
mADmAX` mADmAX` is offline
 
Join Date: Dec 2001
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It didnt work with Ultimate but I updated to Unreal 3.1.3 last night and its working now. Only thing, it will go to irc on a reply but not on a new thread. I have it on and did as instructed...whats wrong?
Reply With Quote
  #58  
Old 06-09-2002, 05:50 PM
dong dong is offline
 
Join Date: May 2002
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by IRiDiuM
Getting this to work with an eggdrop would be simple enough; and the eggdrop would be able to cope with the bandwidth hog.

Unfortunately I know that the fsock functions have been killing my host otherwise I would give it a go.

vB forums -> eggdrop -> irc

you just write a TCL script on the eggdrop to listen on a certain port, the forums connect to the eggdrop and send the line of information and the eggdrop sends the information to a channel.

Code:
vbulletin.tcl
listen 1337 script vbulletinaccept

proc vbulletinaccept {idx} {
 control $idx vbincoming
}

proc vbincoming {idx args} {
 if {[join $args] != "" } {
   putserv "PRIVMSG #vbchan :$args"
 }
 killdcc $idx
}
this vbulletin.tcl works great

with this running on ur eggdrop bot and using my adjusted irc.php
u only have to config IRC Server Address of ircadmin.php to the ip of your eggdrop and IRC Server Port to port 1337
oh, and dont forget to change the channame in the tcl
Reply With Quote
  #59  
Old 06-09-2002, 07:08 PM
dong dong is offline
 
Join Date: May 2002
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i wanna add that there are some bugs with the notify reply part
like the .$forumname[title] isnt shown with replys (with threads it works)
and it notifies the reply of the poster before you, not the last reply

also a feature like choosing multiple specific forums would be nice
cos now u cant even chose 1 specific forum (another bug)

so dymo has some polishing to do
Reply With Quote
  #60  
Old 06-10-2002, 02:06 PM
Rock Rock is offline
 
Join Date: Nov 2001
Location: uk
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how can i remove this
Fatal error: Maximum execution time of 30 seconds exceeded in C:\httpd\HTDOCS\VBH\irc.php on line 36

Fatal error: Maximum execution time of 30 seconds exceeded in C:\httpd\HTDOCS\VBH\admin\functions.php on line 2243

keeps coming up when i try a new thread
Reply With Quote
  #61  
Old 06-11-2002, 12:16 PM
nitro nitro is offline
 
Join Date: Nov 2001
Posts: 302
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

gr8 hack im using the eggdrop version

seems to work ok but 2 things

it wud be nice to be able to exclude forums ie the admin area

and reply doesnt show the forum name
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:44 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04781 seconds
  • Memory Usage 2,312KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete