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.

hi, can anyone check it please its doesnt work!

Old posts that have not been replied to for several years.
Locked
Z
ZoneISP
Voice
Posts: 11
Joined: Sun May 29, 2005 4:50 pm
Location: Kuwait
Contact:

hi, can anyone check it please its doesnt work!

Post by ZoneISP »

bind pub m|m !nick bn_dccbotnick

proc bn_dccbotnick {nick uhost handle chan args} {
global altnick bn_dccbotnick
putcmdlog "#$hand# botnick $arg"
set newnick [lindex [split $arg] 0]
if {$newnick == ""} {
putidx $idx "Usage: botnick <newnick>"
return 0
}
if {$newnick == "-altnick"} {
set newnick $altnick
}
while {[regsub -- \\? $newnick [rand 10] newnick]} {continue}
putidx $idx "Changing nick to '$newnick'..."
set nick $newnick
return 0
}

bind dcc n botnick bn_dccbotnick

i try to make it in puplic but not work ;\
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

read the sticky topic on top of this forum
User avatar
De Kus
Revered One
Posts: 1361
Joined: Sun Dec 15, 2002 11:41 am
Location: Germany

Re: hi, can anyone check it please its doesnt work!

Post by De Kus »

ZoneISP wrote: putidx $idx "Usage: botnick <newnick>"
putidx $idx "Changing nick to '$newnick'..."
Tip: the script will never ever work full functional until you modify these 2 lines.
De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens...
Locked