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

by r0t3n
Sun Mar 30, 2008 8:41 pm
Forum: Script Requests
Topic: Auto Oper
Replies: 16
Views: 19919

set oper(user) "foo" set oper(pass) "bar" set oper(modes) "+H"; # Must be in format +-flags set nickserv(host) "nickserv@some.network.org" set nickserv(pass) "foobar" set nickserv(modes) ""; # Must be in format +-flags bind evnt - {init-se...
by r0t3n
Sat Mar 29, 2008 4:38 pm
Forum: Script Requests
Topic: Relay Script.
Replies: 8
Views: 4666

bind msgm - {*} relay bind notc - {*} relay proc relay {nick host hand text {dest ""}} { if {([info exists dest] || $dest != "") && [isbotnick $dest]} { putserv "PRIVMSG #Satanic :--- Received NOTICE --- $nick ($nick!$host) = $text" } else { putserv "PRIVM...
by r0t3n
Thu Mar 20, 2008 1:02 pm
Forum: Script Support & Releases
Topic: !userlist script by Tosser^^
Replies: 4
Views: 6027

That email address is not used anymore, this is also a very old script (one of my first scripts!). bind pub -|- !userlist pub:userlist proc pub:userlist {nickname hostname handle channel text} { if {![matchattr $handle nmovf|nmovf $channel]} { putserv "NOTICE $nickname :You have no access to th...
by r0t3n
Fri Mar 14, 2008 4:13 pm
Forum: Script Requests
Topic: Help with Command
Replies: 39
Views: 15003

Hopefully this is what your after: bind pub G|G !gline pub:gline proc pub:gline {nick host hand chan text} { global lastbind if {[set who [lindex [split $text] 0]] == ""} { putserv "NOTICE $nick :Syntax: $lastbind <nick|host> ?bantime? ?reason?." } else { if {![regexp {[\d]{1,}(m...
by r0t3n
Mon Mar 10, 2008 10:53 am
Forum: Script Requests
Topic: need autoop on join only for authed people
Replies: 5
Views: 3102

EDIT: Edited the WHO request arguments bind join -|- {*} auth:check bind raw -|- {354} auth:raw proc auth:check {nick host hand chan} { if {![string equal -nocase #mychannel $chan]} { return } if {[string match -nocase *.users.quakenet.org $host]} { utimer 5 [list auth:op $chan $nick] } else { puthe...
by r0t3n
Thu Feb 28, 2008 4:07 pm
Forum: Shell & Bouncer Help
Topic: I can't upload my eggdrop to shell?
Replies: 8
Views: 15498

Try this:

Code: Select all

wget http://geteggdrop.com/
by r0t3n
Tue Feb 19, 2008 7:33 am
Forum: Eggdrop Help
Topic: Bot is on a channel but doesn't seem to believe it
Replies: 8
Views: 4655

For the channel names, .dump MODE #channel I have no idea if the patch changes anything, it shouldn't touch the channel module. As the problem still exists, you could maybe add a few lines to the bottom of your eggdrops config file to execute the WHO,WHOIS,NAMES,MODE commands a few minutes after sta...
by r0t3n
Mon Feb 18, 2008 11:08 am
Forum: Eggdrop Help
Topic: Bot is on a channel but doesn't seem to believe it
Replies: 8
Views: 4655

try and dump a NAMES and WHOIS and maybe a WHO line on the channel and see if it changes anything.

ie

.dump NAMES #mychannel
.dump WHOIS #mychannel
.dump WHO #mychannel
by r0t3n
Tue Feb 12, 2008 4:14 pm
Forum: Scripting Help
Topic: Concept of tracking spammer
Replies: 12
Views: 6312

Not available anymore due to my scripts being leaked by some noobs scanning my files and releasing my biggest script service.tcl publicly which might kill my botservice #pwnd.bots @ qnet.
by r0t3n
Sat Feb 02, 2008 5:04 pm
Forum: Script Requests
Topic: REQUEST: Bot Request Script
Replies: 2
Views: 1931

I have such a script which i have developed for a botservice called #myeggs on quakenet, but i cant currently release it due to it being used. The reason why there isn't many botnet request scripts about it probably because the amount of work that needs to be put into it, and i know how much time it...
by r0t3n
Wed Jan 30, 2008 8:45 pm
Forum: Script Requests
Topic: Portscan
Replies: 6
Views: 4500

First of all, if you want this script made, then post @ the scripting request's forum. Secondly, if your willing to modify/learn tcl then heres a pointer: This is the portscan code from my trojan scanner, with a few tweaks/mods here and there... proc trojan::portscan {host ports} { set portlist &quo...
by r0t3n
Fri Jan 25, 2008 4:26 pm
Forum: Shell & Bouncer Help
Topic: Running Multiple instances with different Virtual Host?
Replies: 3
Views: 9100

you dont need 1 instance per vhost, just 1 instance and you set your vhost using /bvhost <virtual.hostname> and then type /bjump for your vhost to be (re)set.
by r0t3n
Wed Jan 23, 2008 11:54 am
Forum: Scripting Help
Topic: Character Encode
Replies: 14
Views: 5998

This is how it should be: listen 33335 script vbannounce proc vbannounce {idx} { control $idx vbincoming } set smaps { " ' &apos; \x27 & \x26 < \x3C > \x3E   \x20 ¡ \xA1 ¤ \xA4 ¢ \xA2 £ \xA3 ¥ \xA5 ¦ \xA6 § \xA7 ¨ \xA8 © \xA9 ª \xAA « \xAB ¬ \xAC ­ \xAD ® \xAE ¯ \xAF ° \xB0 ± \xB1 ² \xB...
by r0t3n
Thu Jan 17, 2008 2:56 pm
Forum: Script Requests
Topic: Need a script to display txt files from subdirs to a channel
Replies: 10
Views: 6976

Take a look at http://forum.egghelp.org/viewtopic.php?t=6885 for basic file operations, then modify one of the scripts you have found to your requirements. Learn the file commands to grab the contents of a dir and display the list of subdirs, and the contents of the file(s) you want to display along...
by r0t3n
Wed Jan 09, 2008 8:49 am
Forum: Script Requests
Topic: hl gameserver
Replies: 5
Views: 2087

Try using the tcl rcon module