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

by wubmerlin
Sat Dec 15, 2007 8:59 pm
Forum: Scripting Help
Topic: another regexp problem ....
Replies: 2
Views: 2671

:D thanks alot ! :D
by wubmerlin
Sat Dec 15, 2007 6:09 pm
Forum: Scripting Help
Topic: another regexp problem ....
Replies: 2
Views: 2671

another regexp problem ....

HELP ! i want to scan email address to know if it contain _something_ or -something_ ...... Ex: !vlaid test_roger_email@testmail.com But i cant get it to work. Thanks for your help ! proc test { nick uhost hand chan arg } { set text [lindex $arg 0] set check [lindex $arg 2] set test "roger john...
by wubmerlin
Mon Dec 03, 2007 2:10 pm
Forum: Scripting Help
Topic: DCCSEND wont work
Replies: 1
Views: 1653

Oh ... and i teste with a wrong filename, the bot reply this:

[13:05:38] -BOT- /home/eggdrop/test2.txt doesn't exist.

If i put the GOOD filename, NOTHING happend ... the bot didn't react ...
by wubmerlin
Mon Dec 03, 2007 2:06 pm
Forum: Scripting Help
Topic: DCCSEND wont work
Replies: 1
Views: 1653

DCCSEND wont work

Hello, i try to make my bot send test.txt. all needed modules are loaded but i cant get this **** work. Eggdrop v1.6.18+SSL (C) 1997 Robey Pointer (C) 2006 Eggheads [12:54] --- Loading eggdrop v1.6.18+SSL (Mon Dec 3 2007) [12:54] Listening at telnet port 52456 (all). [12:54] Module loaded: dns [12:5...
by wubmerlin
Sun Nov 04, 2007 12:51 pm
Forum: Scripting Help
Topic: set $var with $arg ...
Replies: 2
Views: 2142

Just for your information i just got it !

REPLACE:

Code: Select all

#HERE IS MY PROBLEM !!!!!! 
set set_rules $[string tolower [lindex $arg 0]]_rules 
#END OF PROBLEM 
BY:

Code: Select all

#NO MORE PROBLEM !!!!!! 
set set_rules [string tolower [lindex $arg 0]]_rules
set set_rules [set $set_rules]
#END  
Enjoy !
by wubmerlin
Sun Nov 04, 2007 11:57 am
Forum: Scripting Help
Topic: set $var with $arg ...
Replies: 2
Views: 2142

set $var with $arg ...

Hello i wan tto know if this is possible bind pub - !rules pub_rules set public_rules "test public" set private_rules "test private" set pm_rules "test pm" proc pub_rules { nick uhost hand chan arg } { global public_rules pm_rules private_rules if {[string tolower [lind...