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.

help on longtxt tcl

Old posts that have not been replied to for several years.
Locked
s
suffering
Voice
Posts: 27
Joined: Fri May 27, 2005 4:34 am

help on longtxt tcl

Post by suffering »

######################
#- Characters Limit -#
######################
Last edited by suffering on Sat Aug 20, 2005 4:07 pm, edited 1 time in total.
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

remove

Code: Select all

setudef flag longtxt
and

Code: Select all

if {![channel get $chan longtxt]} { return 0 }
As for the notice, remove

Code: Select all

if {[isop $nick $chan]} {
 putserv "NOTICE Gorilaki :Long Text Detected: As being an Operator you are not allowed to do such stupid act!" 
 return 
}
s
suffering
Voice
Posts: 27
Joined: Fri May 27, 2005 4:34 am

Post by suffering »

its work perfect the only problem now its that he kick and the operators, can u help me to fix that pls?
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Then instead of deleting:

Code: Select all

if {[isop $nick $chan]} { 
 putserv "NOTICE Gorilaki :Long Text Detected: As being an Operator you are not allowed to do such stupid act!" 
 return 
}
replace it with

Code: Select all

if {[isop $nick $chan]} { 
 return 
}
Locked