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

by iNFERiON
Wed Jan 18, 2006 6:14 am
Forum: Script Support & Releases
Topic: auto-invite script
Replies: 11
Views: 10129

auto-invite script

Description pretty much says it all, enjoy :) ####################### ## auto-invite.tcl ## ## v1.0 01/18/2006 ## ## Coded by iNFERiON ## ####################### # DESCRIPTION # ####################### # This script will monitor a channel for joining people # and see if their hostname is in the by y...
by iNFERiON
Sat Dec 10, 2005 7:28 pm
Forum: Script Support & Releases
Topic: Greet script
Replies: 16
Views: 18468

Well, script is now tested and works just fine as expected, hope everybody is happy now :roll:
by iNFERiON
Thu Dec 08, 2005 3:29 pm
Forum: Script Support & Releases
Topic: Greet script
Replies: 16
Views: 18468

Alchera wrote:You will test your script and debug!
Why ? You having problems with it ?
by iNFERiON
Wed Dec 07, 2005 7:32 pm
Forum: Script Support & Releases
Topic: Greet script
Replies: 16
Views: 18468

Greet script

I wrote a greet script that will make your bot say "Good morning/afternoon/evening/night" depending on the time of the day. Script is untested, but should work, if you experience problems, let me know ;) ############################# ## ## ## iNFERiON's Greet Script ## ## v1.0 - 12/08/2005...
by iNFERiON
Wed Nov 30, 2005 11:40 am
Forum: Scripting Help
Topic: File search problem
Replies: 1
Views: 6769

File search problem

I am writing a script that is supposed to search trough a file on the server and check if a string given by the user exists in it, if so, it should output it. So far, with the help of greenbear on IRC I got this: set query [lrange $text 1 end] set query [string map {" " "\*"} $qu...
by iNFERiON
Tue Nov 08, 2005 12:47 pm
Forum: Scripting Help
Topic: [SOLVED] Determining the time
Replies: 1
Views: 6735

[SOLVED] Determining the time

This problem has been solved on IRC, see the bottom of this post for the final WORKING code. I am writing a greet script that will determine the time first and then will respond "Good Morning/Afternoon/Evening/Night" depending on the time. I got this code and this works: proc gen_test {ni...
by iNFERiON
Sun Nov 06, 2005 9:19 pm
Forum: Scripting Help
Topic: wrong # args - confused
Replies: 1
Views: 6940

wrong # args - confused

Hello all, I am writing a TCL script for my WoW guild channel that would enable users to add their WoW characters to a database. I have this as script to add characters: proc cu_addchar {nick host handle chan text} { set charname [lindex $text 0] set race [lindex $text 1] set class [lindex $text 2] ...