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 9 matches

by x-treem
Fri Dec 19, 2008 6:58 pm
Forum: Scripting Help
Topic: Check Pretime
Replies: 3
Views: 3510

you sure have something that will call a duration function, somewhere there you should have a difference betwen now and pretime that is the variable you look for (or create one if that is not set to a variable). If that is >12h (3600 * 12) or whatever you like, then BACKFILL
by x-treem
Fri Dec 19, 2008 12:58 pm
Forum: Scripting Help
Topic: unload
Replies: 1
Views: 2006

unload

is there a way to link to an event that pops when bot is forced to shutdown? for instance if i'm connected to somewhere to let a script clean up things and disconnect prior to close.
by x-treem
Wed Nov 26, 2008 1:14 pm
Forum: Eggdrop Help
Topic: Eggdrop Won't run in BackGround
Replies: 6
Views: 8766

i have same problem. I tried adding #define HAVE_TCL_THREADS with no luck. Any other guess? I'm running on a Virtual Machine with Ubuntu EDIT My fault, i tryed a make clean with no succes, still stuck when backgrounded, then i completely deleted eggdrop/ and eggdrop1.16.19/, re-extracted the src and...
by x-treem
Thu Aug 14, 2008 4:22 pm
Forum: Eggdrop Help
Topic: Ignoring services
Replies: 2
Views: 2508

thanks a lot. I solved the problem :)
by x-treem
Wed Aug 13, 2008 12:12 pm
Forum: Eggdrop Help
Topic: Ignoring services
Replies: 2
Views: 2508

Ignoring services

Hi, I have my eggdrop and i join partyline from telnet. then i issue i.e. this command to service: .msg ChanServ help what i get is Msg to chanserv: help [12:06] -ChanServ (services@mynet.net)- ChanServ permette di registrare i canali e di controllarne [12:06] -ChanServ (services@mynet.net)- vari as...
by x-treem
Mon Jul 21, 2008 3:23 pm
Forum: Scripting Help
Topic: setudef and channel set problem
Replies: 7
Views: 8115

mmm cant understand why of your answer. I'm new to TCL programming so i dont really know the "best" way to program a script right now i made a solution using times as you said before. set infochan {"#testing" "#testing1"} setudef flag sendinfo set timerID [utimer 15 set...
by x-treem
Mon Jul 21, 2008 2:21 pm
Forum: Scripting Help
Topic: setudef and channel set problem
Replies: 7
Views: 8115

channel set #infochan +sendinfo Get rid of that in the script, and instead put that line @ the end (after the source scripts section) of your eggdrop.conf and it'll work. But a person has to ask, why can't you simply .chanset #infochan +sendinfo on the partyline once that script is running? As that...
by x-treem
Mon Jul 21, 2008 1:55 pm
Forum: Scripting Help
Topic: setudef and channel set problem
Replies: 7
Views: 8115

because i wanted to make the script "handly" to change adding a list of channels with that flag in just one line to have the script run also for that chan as needed instead of having to write it 10thousand times in the party line .chanset #chan1 blah blah .chanset #chan2 blah blah etc
by x-treem
Mon Jul 21, 2008 11:21 am
Forum: Scripting Help
Topic: setudef and channel set problem
Replies: 7
Views: 8115

setudef and channel set problem

hi, i'm tryign to make it work but i'm not able to get it. I have a script bind pub * !info sendinfo setudef flag sendinfo channel set #infochan +sendinfo proc info {nick uhost hand chan arg} { if {[channel get $chan sendinfo]} { .... } else { return } but it's never triggering the if. [channel get ...