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

by Rapfnny
Fri Jul 24, 2009 4:18 pm
Forum: Script Requests
Topic: Delete word from text file [SOLVED]
Replies: 2
Views: 2161

Re:

Thank you very much
by Rapfnny
Wed Jul 22, 2009 10:04 am
Forum: Script Requests
Topic: Join Room Script (Modify)
Replies: 4
Views: 3137

Re:

This is really familiar :P
by Rapfnny
Tue Jul 21, 2009 11:37 pm
Forum: Script Requests
Topic: Delete word from text file [SOLVED]
Replies: 2
Views: 2161

Delete word from text file [SOLVED]

Can anyone make me a snippit/script which deletes any specified word from a text file? I couldn't find any resources online that would help.
Thanks in advanced. :)
by Rapfnny
Sun Jul 19, 2009 11:20 am
Forum: Scripting Help
Topic: Join through tcl script (/msg bot join #channel) [SOLVED]
Replies: 4
Views: 4758

a

Oh for some reason, it works now. Thank you.
by Rapfnny
Sat Jul 18, 2009 1:18 pm
Forum: Scripting Help
Topic: Join through tcl script (/msg bot join #channel) [SOLVED]
Replies: 4
Views: 4758

s

:\ it didn't work
[10:34] Tcl error [msg:join]: invalid command name ""
[10:34] joined #chan but didn't want to!
[10:34] Oops. Someone made me join #chan... leaving...
by Rapfnny
Sat Jul 18, 2009 12:10 pm
Forum: Scripting Help
Topic: Join through tcl script (/msg bot join #channel) [SOLVED]
Replies: 4
Views: 4758

Join through tcl script (/msg bot join #channel) [SOLVED]

How can I make the bot join/part a channel through a pm? I tried this: bind MSG -|- "join" msg:join bind MSG -|- "part" msg:part proc msg:join {nick uhost handle text} { set chan [lindex $text 0] [channel add $chan] putserv "PRIVMSG $chan :Invited by $nick" } proc msg:p...
by Rapfnny
Thu May 21, 2009 2:47 pm
Forum: Script Requests
Topic: Trap Bot: delete word on file
Replies: 4
Views: 3213

Another Issue

Thanks! I edited the script and it works fine now. Here's the next thing i need help with. proc logip {ip} { set file [open iplog.txt a+] if {$ip != "0.0.0.0"} { puts $file "$ip" } close $file } But I would like to know how I can make it search if $ip exists in the file, and if i...
by Rapfnny
Thu May 21, 2009 2:02 pm
Forum: Script Requests
Topic: Trap Bot: delete word on file
Replies: 4
Views: 3213

Trap Bot: delete word on file

Never mind I decided to finish it. Here's what i need help on next: I decided to make it go by nicks. I wan't the nick to be removed from nicklog.db if it is kicked from the channel heres my current code which isn't working. bind kick - "#DontJoinItsATrap" unlog proc unlog {nick uhost hand...