Skip to content
MSN

Superkicker Vx 1.3 (Fixed Version)

A TG007 community discussion started by ePox.

Discussion 4 posts
Page 1 of 1
Open
Topic #2277 · 4 published posts · 799 views

Can someone check with Vulturo to see why the emoticon flood protection in that script will not turn off, It stays on. When ya tick the off button for emoticon flood protection in room flood protections it still stays on.(everything else in room flood protections will turn off & on but emoticon flood protection will not turn off). Downloaded it from here at Techgear & Cryton's site and it does the same thing their as well. Thanks epOx

i have a bit of a drawn out method but it works for me

 

open script, click alt + p to load popups then look for the following code

 

.&Emoticon Flood Protection ( $+ $group(#emotfloodkick) $+ )
..&On: {
 .enable #emotfloodkick
 msg # Emoticon Flood Kick Enabled 
 echo -s 11Emoticon Flood Kick Enabled 
}
..&Off: {
 .disable #floodkick
 msg # Emoticon Flood Kick Disabled 
 echo -s 11Emoticon Flood Kick Disabled 
}

 

Replace that with the following

 

.&Emoticon Flood Protection 
..%emotflood: { if ($group(#emotfloodkick) == on) { 
   .disable #emotfloodkick
   %emotflood = Turn on Emotion Flood Kick
 msg # Emoticon Flood Kick Disabled 
 echo -s 11Emoticon Flood Kick Disabled 
 }
 else { .enable #emotfloodkick
   %emotflood = Turn off Whisper kick
   msg # Emoticon Flood Kick Enabled 
   echo -s 11Emoticon Flood Kick Enabled
 }
}

 

do the above in popups then go to variables do type in the following

 

%emotflood Turn off emotion flood kick

 

Chances are there is a slightly easier way but thats using my coding

 

Also - make sure the relevent script is loaded for this to work (miscprots.mrc)

 

If this doesnt work - let me know and ill look at something else for you

the first code you posted had .disable #floodkick in it, it should be .disable #emotfloodkick

i guess thats why the thing wont work for the topic starter..... Well spotted!