The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Eggdrop IRC Manager Details »» | |||||||||||||||||||||||||
The Eggdrop IRC Manager (EIM) is a TCL script for NIX Eggdrop or Win32 Windrop. It will allow you to refresh your forum home with information about your channel, such as the nicks currently in it, the record users, and the activity of the channel. This is a port from my IRC Channel Manager, yet that hack was for MIRC and had some bugs. I created a new thread for this hack as the audience is different. Most people seeking eggdrops wont look into the mIRC thread. The eggdrop version is far better than the former, so I highly recommend you make the switch if you're capable of running eggdrop. Demos: http://www.animesystem.com/forums/ http://www.buckeyeplanet.com/forum/ Quick overview of features
Only drawback currently is that you must run multiple bots with the script if you intend to update multiple channels. I will be working on a version that allows 1 bot to update multiple channels. For those using IRC Channel Manager, making the upgrade is easy, just refer to the installation manual. Examples attached. Enjoy! Notice 1: Ah yes, I forgot to mention the two manual bot commands in the documentation. As a bot owner, type !refresh to manually refresh the channel. Type !startact to do the initial start of the activity timer. Both these commands should be performed when you first place your bot on the channel or after you rehash it when installing the script. You wont have to run these scripts again, unless your bot exits the channel. Notice 2: Your bot will refresh your channel whenever someone leaves, changes nick, joins, is kicked, topic change, or a mode change occurs (such as someone being op'd, voiced, etc.) On a large traffic intensive channel, this will make your bot very busy. Just be aware of this. I'll plan for a timer-version, where the bot updates every X minutes, in the future. FAQ What is an eggdrop? http://www.eggheads.org/ Will this work with my java IRC client? (pjIRC, etc.) Read what an eggdrop is. Once you figure it out, you'll know that they are completely independent things. How do I start up my own IRC channel? This thread isn't a beginners guide to IRC. For that, refer to Google: http://www.google.com/search?hl=en&i...s+guide+to+irc Will this work with vB 3.x.x? More than likely, since there is little modification to vBulletin. :up: Show Your Support
|
Comments |
#42
|
||||
|
||||
Hey thanks a lot for the detailed response.. I'll certainly play around with the settings and see what I can do!
So this is more reliant upon how many users are in the chat, then how many are actually talking/lines of text? -Jason |
#43
|
|||
|
|||
Well, if you look at the ircrefresh.tcl, (the file loaded by the eggdrop used for monitoring the channel and determining stats) you'll notice the line:
bind pubm - * incr_activity what this line does is call incr_activity in the channel everytime a message is typed in the channel and the bot sees it. incr_activity is just the way the eggdrop determines activity, incrementing the activity by 1 on each message detected in the channel. So, depending on how active your channel is (how many people are typing at once) this will increase. proc incr_activity {nick host hand chan {text ""}} { global activity irc_chan if {$chan != $irc_chan} { return 0 } incr activity 1 return 0 } The thing to note, is that, when the bot decides to update the activity, (by writing the activity to the database every 180seconds (2mins)) it will reset the activity back to 0. So maybe change activity_wait (in ircrefresh.tcl) to something like 3 mins or 3 anda half mins, so that your activity will be greater when it gets written to the database. (note: .save and .refresh your bot after doing this). Again, this will be trial and error as well |
#44
|
||||
|
||||
This is all starting to go past my expertise. ;( hehe...
We actually have a fairly lively chat room, with 10+ people talking regulerly and about 30-40 in there at any given time.. Any recommended settings for the fields specifically? I tried a few things and nothing seemed to change the meter... |
#45
|
|||
|
|||
I am stumped. I cant get this to work... ;( and I know its user error. grrrrr...
|
#46
|
|||
|
|||
Quote:
to incr activity 2 |
#47
|
|||
|
|||
Quote:
|
#48
|
||||
|
||||
For your problem Alien, you should set the activity_wait variable in the TCL script from the default 180 (3 minutes), to something such as 360 (6 minutes).
If you haven't already fixed it. This gives the bot a longer sampling time to gauge activity. |
#49
|
|||
|
|||
Great mod.. Works fine!!
Just a future suggestion-- maybe you can add support for the ! (channel owner) and % (halfops) to this great script.. |
#50
|
||||
|
||||
Unfortunantly I don't know how to grab the ! or % users with the eggdrop IRC functions. If I have time I'll look around for how to do so.
|
#51
|
||||
|
||||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|