Hey guys, i need Script assistance that anyone send notice privately to the bot, the bot closes the private mode for half an 10mins,
then open it again,
example: /mode $me +R
then after half an hour OR just 10 minutes the mode opens /mode $me -R
-
thanks
-
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
this working good but if i wonna when anyone msg the bot in private the bot close mode like /mode $me +R. cuz its every time sending flooding private for my bot,
The way that script works should set mode +R whenever anyone mesages the bot be it just saying hello or flood. Then after 10 minutes it will remove the +R mode although I did think at the time that it seemd strange that you wanted the +R removed when it will just readd the +R when anyone messaged the bot anyway. If you dont need anyone to message the bot at any time I would just suggest that you get rid of the timer that removes the mode +R and just leave it on permanently.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
# This is a Tcl script to be run immediately after connecting to a server.
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
global botnick
putquick "MODE $botnick +i-ws"
}
This should set the mode +R to your bot as soon as it joins the server and will stay on unless you manually remove it from your eggdrop. Also remove the TCL script from earlier and restart your eggdrop.
Note: Setting this will make your eggdrop deaf to message commands that you may wish to use in the future.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born