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

by r6gear
Thu Nov 24, 2022 10:14 am
Forum: Scripting Help
Topic: adding flood protections to this
Replies: 6
Views: 1832

it's posibile to add a option every user to have let's say 1 shoot every 30 seconds?
by r6gear
Wed Nov 23, 2022 7:25 pm
Forum: Scripting Help
Topic: adding flood protections to this
Replies: 6
Views: 1832

# throttle time in seconds set Xthrottled(time) 10 proc throttlecheckerX {nick chan} { global Xthrottled if {[info exists Xthrottled($chan)]} { return 1 } else { set Xthrottled($chan) [utimer $::Xthrottled(time) [list unset Xthrottled($chan)]] return 0 } } bind pub - !love fun_give-love proc fun_gi...
by r6gear
Wed Nov 23, 2022 9:31 am
Forum: Scripting Help
Topic: adding flood protections to this
Replies: 6
Views: 1832

adding flood protections to this

i want to add flood protection to this script. if a user want can user !love !love ...etc and floods the channel. Can anyoane help me adding ? thank you bind pub - !love fun_give-love proc fun_give-love {nick uhost hand chan text} { putserv "privmsg $chan :\001ACTION Lui 5$nick gives 5$text lov...