This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 25 matches

by Hamish
Sat Oct 14, 2006 4:19 am
Forum: Eggdrop Help
Topic: Eggdrop linking problem.
Replies: 1
Views: 2644

Eggdrop linking problem.

Ok, Whenever I get my eggdrops linked up. In the next day or two, they all unlink from each other then they set passwords for each other and won't link back up again. Then I have to delete there userfiles and re-link them. This is always a big hassle and it's very annoying. Does anyone have any idea...
by Hamish
Fri Oct 13, 2006 7:13 am
Forum: Scripting Help
Topic: [SOLVED YO] Help with a bind
Replies: 8
Views: 5612

Ok I did what you said but now when I type:

@trigger It simply does nothing.
!trigger Works great, ofcourse.
by Hamish
Tue Oct 10, 2006 1:42 pm
Forum: Scripting Help
Topic: [SOLVED YO] Help with a bind
Replies: 8
Views: 5612

Dude, you rock!
Thanks.
by Hamish
Tue Oct 10, 2006 4:40 am
Forum: Scripting Help
Topic: [SOLVED YO] Help with a bind
Replies: 8
Views: 5612

I made a list out of the possible triggers then used lsearch to check if what the user entered was a trigger. But now. I have two triggers: bind pubm - "% !*" stuff:private bind pubm - "% @*" stuff:public But when someone types !something - It activates both procedures! :? Also i...
by Hamish
Mon Oct 09, 2006 6:06 am
Forum: Scripting Help
Topic: [SOLVED YO] Help with a bind
Replies: 8
Views: 5612

Yes but there is lots of different possible !commands I could have. I used this:

bind pubm - "% !*" proc:stuff

And that worked.
But I need a way so I can store all the possible commands after that, I tried in a text file but It didn't quite work, can someone help?
by Hamish
Sun Oct 08, 2006 6:31 am
Forum: Scripting Help
Topic: [SOLVED YO] Help with a bind
Replies: 8
Views: 5612

[SOLVED YO] Help with a bind

bind pub - ! random:stuff

But it only works when someone types !
I want it to work when someone types
!randomthing
!stuff
!lollllers
Basically when someone types anything after it.
by Hamish
Sun Sep 24, 2006 2:59 pm
Forum: Scripting Help
Topic: Help with getting info from site
Replies: 9
Views: 6018

Sorry I didn't explain very well, I need it to return the statistics for the persons nickname if they don't specify a name, for example:
<RandomGuy> !stats
-Bot- Stats for RandomGuy
-Bot- Blablabla
Thanks.
by Hamish
Fri Sep 22, 2006 3:00 pm
Forum: Scripting Help
Topic: Help with getting info from site
Replies: 9
Views: 6018

Ok, fixed up that (used string trim). Now I have this code, it doesn't work, please tell me whats wrong with it. proc stats:private {nick uhost hand chan text} { if {![lindex $text 0]} { set rsname $nick } else { set rsname [lindex $text 0] } set site "http://kewlbot.us.jerrcs.net/stats2.php?na...
by Hamish
Wed Sep 20, 2006 11:10 am
Forum: Scripting Help
Topic: Help with getting info from site
Replies: 9
Views: 6018

Ok, rockon thanks. I now have this, I have added some stuff for design reasons: bind pub - !stats stats:private proc stats:private {nick uhost hand chan text} { set rsname [lindex $text 0] set site "http://*/stats2.php?name=$rsname" set token [::http::geturl $site] set content [::http::dat...
by Hamish
Wed Sep 20, 2006 3:00 am
Forum: Scripting Help
Topic: Help with getting info from site
Replies: 9
Views: 6018

Cool, thanks. :)

Do you think you could help me with colours too?
by Hamish
Tue Sep 19, 2006 11:58 am
Forum: Scripting Help
Topic: Help with getting info from site
Replies: 9
Views: 6018

Help with getting info from site

Ok I got this so far: bind pub - !stats stats:private proc stats:private {nick uhost hand chan text} { set rsname [lindex $text 0] set site "http://*/stats2.php?name=$rsname" set token [::http::geturl $site] set content [::http::data $token] ::http::cleanup $content foreach line [split $co...
by Hamish
Wed Aug 02, 2006 5:26 am
Forum: Eggdrop Help
Topic: Eggdrop joins random channels!
Replies: 2
Views: 3689

I deleted it's chan files and on startup it said: [04:25] Creating channel file [04:25] Ignored masks for channel(s): #mIRC #but315 #gph555 #hzg304 #jqu352 #cir869 #ylh271 #mjb684 #zad806 #mwe276 #gur450 #nuo445 #qvk162 #nmn741 #ycr437 #ach334 #ibj898 #wyk289 #ldy330 #wbu401 #aal650 #dot713 #eln781 ...
by Hamish
Tue Aug 01, 2006 1:19 pm
Forum: Eggdrop Help
Topic: Eggdrop joins random channels!
Replies: 2
Views: 3689

Eggdrop joins random channels!

My eggdrop just joins a bunch of nonsense channels look: `SurferDude on @#lnp199 @#rkt310 @#gkx225 @#tbo55 @#kis877 @#rea222 @#had792 @#rhj255 @#zhm211 @#oll645 @#cqp294 @#ilg195 @#kxi507 @#pwx7 @#dhh179 @#gbg86 @#tig328 @#gmm896 @#uhm762 @#yrs456 @#ygn39 @#tjj229 @#sez684 @#xnz625 @#rss89 @#jdz452 ...
by Hamish
Sat May 06, 2006 3:48 am
Forum: Scripting Help
Topic: Help with a channel protection script.
Replies: 2
Views: 4471

Ah yeah! Works perfectly thanks!
Now I'm gonna try a ban reset-er lol.
by Hamish
Fri May 05, 2006 4:30 pm
Forum: Scripting Help
Topic: Help with a channel protection script.
Replies: 2
Views: 4471

Help with a channel protection script.

Ok, I've got an autoop channel (everyone is autoop on join)... Of course I don't want everyone banning each other and changing the topic all the time so I tried to write a script to stop that. Here what I got so far: set Hamish "Hamish" bind topc - "#hamish *" resetopc:topc proc ...