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

by AskMe
Wed Jan 09, 2008 10:45 pm
Forum: Eggdrop Help
Topic: Modifying the ban procedure
Replies: 5
Views: 2805

the script request section its for tcl script right?

i think this i not a script i just want to modify a basic command
by AskMe
Wed Jan 09, 2008 10:34 pm
Forum: Eggdrop Help
Topic: Modifying the ban procedure
Replies: 5
Views: 2805

I know i can find tcl for that but its not realy what i want
by AskMe
Wed Jan 09, 2008 8:49 pm
Forum: Eggdrop Help
Topic: Modifying the ban procedure
Replies: 5
Views: 2805

Modifying the ban procedure

I am log on Undernet server and i want to ALWAYS send my ban in my banlist to X when it trigger...Not only when the 45 limits ban is reach I think i have to play in one module but if someone have the exact procedure i have to do go for it ;) I have a eggdrop and a windrop but i think no one will me ...
by AskMe
Tue Jul 10, 2007 9:56 pm
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1107992

my windrop 1.6.18 (the script is ok) my eggdrop 1.6.18 (and this is where the script give me the error) i remove the bot from a chan and now i have this error [21:35] Tcl error [::AllProtection::joins clones]: can't read "pwait": no such variable [21:35] Tcl error [::AllProtection::core]: ...
by AskMe
Tue Jul 10, 2007 9:47 pm
Forum: Script Support & Releases
Topic: AllProtection.tcl (Stable: v4.8 / Beta: v4.9b4)
Replies: 1351
Views: 1107992

i need your help again... i put your script on windrop and it work perfect... now i have install it on eggdrop and have sone prob... [21:35] Tcl error [::AllProtection::ctcps caps]: Unknown channel setting. [21:35] Tcl error [::AllProtection::ctcps repeatl]: Unknown channel setting. [21:35] Tcl erro...
by AskMe
Tue Jun 12, 2007 6:12 pm
Forum: Scripting Help
Topic: Calculate time
Replies: 16
Views: 11039

I don't suppose you've considdered using mysql's locale-support along with proper date/Time-fieldtypes?
your right


im new with tcl and mysql so you see what it does ;)

ill make some research on mapping and date/Time-fieldtypes.

thanks for your time ;)
by AskMe
Tue Jun 12, 2007 5:53 pm
Forum: Scripting Help
Topic: Calculate time
Replies: 16
Views: 11039

Also, executing that code you posted once in globalspace will only result in $date holding the time for that particular moment, and not current date. thanks i didnt know that info and the link have almost all info i need proc addvoicedb {nick host hand chan args} { global mysqlink UCSRegistered set...
by AskMe
Tue Jun 12, 2007 5:26 pm
Forum: Scripting Help
Topic: Calculate time
Replies: 16
Views: 11039

It would seem to me that you're trying to insert current date/time into a mysql-database your right in fact i use set date [clock format [clock scan "now"] -format %Y.%m.%d] but i try to replace it by the maping of Sir_Fz to have the month listed with a name and not with a number ... as y...
by AskMe
Tue Jun 12, 2007 5:05 pm
Forum: Scripting Help
Topic: Calculate time
Replies: 16
Views: 11039

set date [string map {Jan 01 Fév 02 Mars 03 Avr 04 Mai 05 Juin 06 Juil 07 Aout 08 Sept 09 Oct 10 Nov 11 Déc 12} $date] ################## # Voice database # ################## proc addvoicedb {nick host hand chan args} { global sql botnick mysqlink date UCSRegistered set username [UCS:Registered:Is...
by AskMe
Tue Jun 12, 2007 4:43 pm
Forum: Scripting Help
Topic: Calculate time
Replies: 16
Views: 11039

The mapping is supposed to be a list, so it's better to use: set date [string map {Jan 01 Feb 02 Mar 03 Apr 04 May 05 Jun 06 Jul 07 Aug 08 Sep 09 Oct 10 Nov 11 Dec 12} $date] instead. i try this one (in french) set date [string map {Jan 01 Fév 02 Mars 03 Avr 04 Mai 05 Juin 06 Juil 07 Aout 08 Sept 0...
by AskMe
Tue Jun 12, 2007 1:20 pm
Forum: Scripting Help
Topic: whois info [SOLVED]
Replies: 14
Views: 8727

set info [string trimleft [string range $text $i end] :] This works great Actually, the flaw is that I added 1 and not 2 to the offset. (Forgot I matched 2 characters rather than 1) :oops: Should work as intended set i [expr [string first " :" $text] + 2] set info [string range $text $i e...
by AskMe
Tue Jun 12, 2007 12:59 am
Forum: Scripting Help
Topic: whois info [SOLVED]
Replies: 14
Views: 8727

Alchera wrote:May be try:

Code: Select all

[string trim [join [lrange $text $i end]] :]
not working...

result

Code: Select all

TEST
by AskMe
Mon Jun 11, 2007 10:34 pm
Forum: Scripting Help
Topic: whois info [SOLVED]
Replies: 14
Views: 8727

ok its getting better now but not perfect ;) bind raw - 311 uw:RAW311 proc uw:RAW311 {from keyword text} { set i [expr [string first " :" $text] + 1] set info [string range $text $i end] putlog "TEST $info" } and the result is TEST :www.mysitecom/?u=1234 now i need to remove the ...
by AskMe
Mon Jun 11, 2007 9:38 pm
Forum: Scripting Help
Topic: whois info [SOLVED]
Replies: 14
Views: 8727

i need a little help on that bind raw - 311 uw:RAW311 proc uw:RAW311 {from keyword args} { set args [lindex $args] putlog "TEST $args" } i receive this TEST {botnick nick ~bla myhost.com * :www.mysitecom/?u=1234} anyone can help me to just have this info please? www.mysitecom/?u=1234
by AskMe
Mon Jun 11, 2007 4:53 pm
Forum: Scripting Help
Topic: whois info [SOLVED]
Replies: 14
Views: 8727

whois info [SOLVED]

in MIRC when i do a whois i reveice this info

Code: Select all

nick is "www.mysitecom/?u=1234" ~bla@myhost.com
how can i retreive the full name info "www.mysitecom/?u=1234" ???

i need this info to make a matchattr ;)

thanks