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

by metroid
Thu Jan 31, 2008 5:34 pm
Forum: Script Requests
Topic: shipping track
Replies: 17
Views: 7100

:roll:
by metroid
Thu Jan 31, 2008 1:01 pm
Forum: Scripting Help
Topic: How to get a script to reload itself in eggdrop?
Replies: 8
Views: 9154

Hey, Cheers for the replies. Sorry I was being a bit dumb (long day) its a script I wrote so load/unload mod will be pointless. I've achieved what I need now using the following though: "onDisc" { sleep 120 exec "/bin/kill -HUP `cat /usr/home/xxx/eggdrop/pid.xxxx`" } Noticed tha...
by metroid
Thu Jan 31, 2008 12:57 pm
Forum: Script Requests
Topic: Portscan
Replies: 6
Views: 4500

@Tosser: Isn't it a bit dangerous using exec with nmap, since scans may take a while. Thought 'bout using "open" with pipe instead? A bit more complex, but wouldn't block your bot while scanning... Also, what's the point of this: foreach x [split $portlist \n] { return "$x" } Wo...
by metroid
Wed Jan 30, 2008 1:49 pm
Forum: Scripting Help
Topic: How to get a script to reload itself in eggdrop?
Replies: 8
Views: 9154

Is it a mod or a script?
Your information seems to be conflicting.

Furthermore, we can't help you if you don't post the script.
by metroid
Tue Jan 29, 2008 1:48 pm
Forum: Script Requests
Topic: Auto-Add on Channel Registration
Replies: 5
Views: 3013

It would be difficult to make this type of script secure . I'm sure the person that owns the bot/network would of increased security my means such as locking the channel ...etc as this tends to be strongly adviced when having services log to a channel. On a scripting note, Is it even possible to ch...
by metroid
Mon Jan 28, 2008 1:25 pm
Forum: Script Requests
Topic: Auto-Add on Channel Registration
Replies: 5
Views: 3013

That script will cause problems if you use it like that. This version should be much more secure. Also, you should note that the bot will use alot of resources if it has to join alot of channels like this. You're better off using a network service for these kind of things. [untested] # Make sure you...
by metroid
Wed Jan 23, 2008 11:10 am
Forum: Scripting Help
Topic: Character Encode
Replies: 14
Views: 5995

Over a 100 posts and you still don't how TCL works? :roll:
by metroid
Sun Jan 20, 2008 5:12 pm
Forum: Script Requests
Topic: Script to ban people with a certain string in their GECOES?
Replies: 2
Views: 1540

Try searching in the TCL Archive for realname.

I'm sure something will come up.
by metroid
Fri Jan 18, 2008 2:04 pm
Forum: Eggdrop Help
Topic: Having Few problems
Replies: 6
Views: 3054

user wrote:
metroid wrote:An eggdrop won't set invite only and the limit to 1 if you don't have a script loaded that does this.
Really?

Code: Select all

.chanset #chan chanmode +il 1
It doesn't look like he knows enough about eggdrops to even do something like that.
by metroid
Fri Jan 18, 2008 2:01 pm
Forum: Script Requests
Topic: Need a script to display txt files from subdirs to a channel
Replies: 10
Views: 6974

Re: thanks user

thanks user and tosser. user i tried your tcl. it works fine for listing directory. But it is not dumping the text file. <TuN>!display <Shugal> TuN: sports, games <TuN>!display sports <Shugal>TuN: cricket, playingminds <TuN>!display cricket <Shugal> TuN: Error: invalid category I made cricket.txt i...
by metroid
Fri Jan 18, 2008 11:27 am
Forum: Eggdrop Help
Topic: Having Few problems
Replies: 6
Views: 3054

An eggdrop won't set invite only and the limit to 1 if you don't have a script loaded that does this.
by metroid
Thu Jan 17, 2008 3:15 pm
Forum: Eggdrop Help
Topic: Having Few problems
Replies: 6
Views: 3054

Sounds like you have a shady script loaded on your bot.
by metroid
Thu Jan 17, 2008 8:26 am
Forum: Eggdrop Help
Topic: Can't telnet in?
Replies: 16
Views: 7403

Try running it with -n so you can see what the eggdrop is reporting.
by metroid
Wed Jan 16, 2008 1:28 pm
Forum: Script Requests
Topic: Operator Excess Join Channel
Replies: 8
Views: 3090

Sounds like a dumb request.

I'm sure you can modify some existing whois scripts to accomplish what you want.
by metroid
Mon Jan 14, 2008 10:28 am
Forum: Script Requests
Topic: Hi, need help to edit script
Replies: 17
Views: 5611

You should use braces in 'if' expressions.

Have a look at this example to see the difference in speed :)
% time { expr 10 * 5 } 1000
2.833 microseconds per iteration
% time { expr {10 * 5} } 1000
0.262 microseconds per iteration