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

by doggo
Mon Jan 20, 2014 1:00 pm
Forum: Script Support & Releases
Topic: imdbapi.com v1
Replies: 47
Views: 57973

its because the 1st line you are trying to output is too long ;-)
by doggo
Wed Jan 15, 2014 12:28 pm
Forum: Script Requests
Topic: website up or down status
Replies: 13
Views: 13090

edited first post with changes ;-)
by doggo
Wed Jan 08, 2014 1:19 pm
Forum: Script Requests
Topic: website up or down status
Replies: 13
Views: 13090

did you install netcat? and from the linux terminal type: nc -zvv yourserverip.org 80 output is or should be yourserverip.org: forward host lookup failed: Unknown host and from my eggdrops log [21:10] (4) - Netcat Report - [[ yourserverip.org:80 is down ]] [21:10] (0) - Netcat Report - [[ gotcode4u....
by doggo
Wed Jan 08, 2014 5:53 am
Forum: Script Requests
Topic: website up or down status
Replies: 13
Views: 13090

what does it return from cmd line using nc -zvv badip badport? outputs i get in log are: [14:00] (0) - Netcat Report - [[ gotcode4u.com:80 is ok ]] [14:00] (1) - Netcat Report - [[ google.co.uk:80 is ok ]] [14:00] (2) - Netcat Report - [[ google.com:443 is ok ]] [14:00] (3) - Netcat Report - [[ eggh...
by doggo
Tue Jan 07, 2014 6:22 pm
Forum: Script Requests
Topic: website up or down status
Replies: 13
Views: 13090

############################################################ ############################################################ # port_scan.tcl version 1 # by doggo 07/01/2014 # requires netcat to be installed on your server # apt-get install netcat # written for http://forum.egghelp.org/viewtopic.php?t=...
by doggo
Thu Nov 28, 2013 11:01 am
Forum: Script Requests
Topic: Look for simple script: Just +v every user on join
Replies: 2
Views: 4242

cool ya got sorted but for ppl wanting a simple script that does this..

Code: Select all

bind join -|- "#thechannel *" autovoice
proc autovoice {nick uhost hand chan} {
putserv "mode $chan +v $nick"
}
by doggo
Mon Nov 18, 2013 5:49 pm
Forum: Shell & Bouncer Help
Topic: How to successfully setup crontab for your bot on your shell
Replies: 5
Views: 20143

why not just use autobotchk? located in the scripts dir it will do all of the above automatically... # AutoBotchk - An eggdrop utility to autogenerate botchk/crontab entries # # Copyright (C) 1999, 2000, 2001, 2002 Jeff Fisher (guppy@eggheads.org) # # How to use # ---------- # # Most people begin to...
by doggo
Fri Feb 15, 2013 11:54 am
Forum: Script Support & Releases
Topic: imdbapi.com v1
Replies: 47
Views: 57973

thanks to spike and speechless for the additions :D ive added a bit to catch the year tested a lil works great!! # 15/02/2013 # by doggo #omgwtfnzbs @ EFNET # drop in and try this script ;) all feedback is welcome # to add channels, do: .chanset #somechan +imdbapi setudef flag imdbapi namespace eval...
by doggo
Fri Feb 15, 2013 10:13 am
Forum: Script Requests
Topic: Search file
Replies: 6
Views: 4863

give this a go.. not tested on bot but should be ok bind pub -|- !stats bigtoe:search set database_file "/home/botty/bigtoe.db" set how_many "3" proc bigtoe:search {nick uhost hand chan text} { global database_file how_many set file [open $database_file r] set data [read $file] c...
by doggo
Thu Feb 14, 2013 5:14 pm
Forum: Eggdrop Help
Topic: Help Required
Replies: 3
Views: 5898

Thanks nml375, after making the post here i joined #egghelp on the efnet :) was given similar advice, and managed get it all the bodys of the procs back :D [05:54pm] <John13> doggo, depends [05:54pm] <John13> it's not easy, but [info body] is your friend [05:55pm] <John13> ohh, and .binds [07:55pm] ...
by doggo
Thu Feb 14, 2013 4:27 pm
Forum: Eggdrop Help
Topic: Help Required
Replies: 3
Views: 5898

Help Required

is there a way to dump a script to a file from the bots memory? was editing a script remotely and has a power outage, logged back into the shell to check the file and its blank :( all the procs are still working on the bot because i have restarted or rehashed, is there anything i can do?? please hel...
by doggo
Sat Dec 08, 2012 5:49 pm
Forum: Script Requests
Topic: Autokick if hostmask not defined in file
Replies: 13
Views: 12981

put this together.. not tested but you can do that :D # http://forum.egghelp.org/viewtopic.php?t=19197 set autokick_channels "#chan1 #chan2" set autokick_exempts "/home/spunky/bot/text/exempt_hosts_kick_out.txt" set autokick_kickmsg "You don't have the access to be on this c...
by doggo
Sat Oct 20, 2012 6:07 pm
Forum: Script Requests
Topic: Youtube title TCL problem, help.
Replies: 7
Views: 11682

yep.. edited script i pasted above ;)
reload the script and do

Code: Select all

.chanset #chan +savety
from the partyline
by doggo
Tue Oct 16, 2012 6:18 am
Forum: Script Requests
Topic: Youtube title TCL problem, help.
Replies: 7
Views: 11682

@tomekk forgot the http package dont support ssl, i use this script i wrote for youtube.. works with all variations of youtube urls :D also saves the embeded code urls to a file so you could display them via a webpage :) looks like this in channel.. http://i.imgur.com/xqkoS.jpg and the webpage you c...
by doggo
Tue Oct 16, 2012 5:51 am
Forum: Script Requests
Topic: Youtube title TCL problem, help.
Replies: 7
Views: 11682

find this in the code # Pattern used to patch youtube links in channel public text set youtube(pattern) {http://.*youtube.*/watch\?(.*)v=([A-Za-z0-9_\-]+)} and alter to # Pattern used to patch youtube links in channel public text set youtube(pattern) {http*://.*youtube.*/watch\?(.*)v=([A-Za-z0-9_\-]...