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

by tomekk
Wed Jun 03, 2009 5:31 am
Forum: Script Requests
Topic: FileReader
Replies: 13
Views: 6749

not tested ;p, try: set out_chan "#channel" set txt_file "myfile.txt" bind pub -|- !read read_proc proc read_proc { nick uhost hand chan arg } { global out_chan txt_file set take_me [open $txt_file r] set take_all [split [read $take_me] "\n"] close $take_me foreach txt_...
by tomekk
Wed May 27, 2009 2:16 pm
Forum: Scripting Help
Topic: Announce Bot w/ Telnet
Replies: 13
Views: 16268

i have some script which i wrote for someone on another forum, this script is sending simple msgs to the eggdrop, you can fix it for yourself: here is 'eggsend.php' (file name should be the same like in <form> action and in header()): <?php //eggdrop host port $egg_port = 1234; //eggdrop host ip $eg...
by tomekk
Sun May 24, 2009 5:49 am
Forum: Script Requests
Topic: Script challenge - Only for the serious scripters among us.
Replies: 7
Views: 3934

ha ha, yeah i already sold it to Microsoft ;p

sorry mates !
by tomekk
Sat May 23, 2009 12:48 pm
Forum: Script Requests
Topic: Script challenge - Only for the serious scripters among us.
Replies: 7
Views: 3934

reply

Now write please, i'm curious ;)
by tomekk
Thu May 21, 2009 5:29 pm
Forum: Script Requests
Topic: Trap Bot: delete word on file
Replies: 4
Views: 3186

try: proc logip {ip} { if {$ip == "0.0.0.0"} { return } set db_get [open iplog.txt r] set all_ips [split [read $db_get] "\n"] close $db_get if {[lsearch $all_ips $ip] != -1} { return } set file [open iplog.txt a+] puts $file "$ip" close $file } or, if want with "a+...
by tomekk
Thu May 21, 2009 2:09 pm
Forum: Script Requests
Topic: Trap Bot: delete word on file
Replies: 4
Views: 3186

Re: Trap Bot: error with # of args

Here's my script: [13:53] Tcl error [userip]: wrong # args: should be "userip nick uhost hand channel txt" When its already there. >:\ :shock: What can I do to fix this? from tcl-commands.txt: (8) JOIN (stackable) bind join <flags> <mask> <proc> procname <nick> <user@host> <handle> <chann...
by tomekk
Sat May 02, 2009 2:37 pm
Forum: Scripting Help
Topic: Scraping pages while logged in
Replies: 3
Views: 3051

remember about cookies, most of login "systems" uses session IDs on the server side and session cookies on the client side (web browser)

some hints,
http://wiki.tcl.tk/3828
http://wiki.tcl.tk/17611
by tomekk
Sat May 02, 2009 8:11 am
Forum: Script Requests
Topic: [SOLVED] NickServ IDENTIFY on Mibbit.com
Replies: 2
Views: 3711

did you try something like this?: (eggdrop.conf, of course server module needed):

Code: Select all

set init-server { putserv "PRIVMSG nickserv :identify <password_here>" }
by tomekk
Sun Apr 26, 2009 10:29 am
Forum: Script Requests
Topic: Bans
Replies: 6
Views: 3734

can you give your script for me see? sure, try: # Author: tomekk # e-mail: tomekk/@/oswiecim/./eu/./org # home page: http://tomekk.oswiecim.eu.org/ # # Version 0.1 # # This file is Copyrighted under the GNU Public License. # http://www.gnu.org/copyleft/gpl.html # !aban <nick> <interval_in_minutes> ...
by tomekk
Sun Apr 26, 2009 6:16 am
Forum: Script Requests
Topic: Bans
Replies: 6
Views: 3734

yeah, cool i just asked because i have one timeban script, but i see that you want something else

cheers
by tomekk
Sat Apr 25, 2009 2:43 pm
Forum: Script Requests
Topic: Bans
Replies: 6
Views: 3734

Re: Bans

McMilan wrote: *This must work in akick from bot.
what you mean?

script can kick user after !ban command ;>
by tomekk
Sat Apr 25, 2009 5:54 am
Forum: Script Support & Releases
Topic: Tomekk's badwords script
Replies: 29
Views: 28741

yeah, good hint speechles,
i you want 'smth word smth' should be '* word *'

*word* will match 'swords' ;-)

cheers

P.S
i prefer Lineage 2 ;-p

[edit]
for the newest version always check the egghelp.org TCL archive
by tomekk
Fri Apr 24, 2009 4:34 pm
Forum: Script Requests
Topic: Public IP Information Checker [SOLVED]
Replies: 60
Views: 64517

Sydneybabe wrote:Good day speechles, I try your script but an error occured on partyline which bot doesn't response.
Tcl error [whereis]: invalid command name "::http::config"
add line:

Code: Select all

package require http
after:

Code: Select all

setudef flag whereis
by tomekk
Fri Apr 24, 2009 4:13 am
Forum: Script Support & Releases
Topic: Tomekk's badwords script
Replies: 29
Views: 28741

# description: Kicks/Bans people who say bad words. Words/pharses are stored in a file. Op protect is allowed. You can add/del/list words/pharses via priv msg. You don't need to rehash/restart your bot. You can define ban duration time etc. Script is very simple to use. # Author: tomekk # e-mail: t...
by tomekk
Thu Apr 23, 2009 6:47 pm
Forum: Script Support & Releases
Topic: Tomekk's badwords script
Replies: 29
Views: 28741

yes,
i allready fix that but i need to add one more thing, later i will post it ;)

goodnight