Code: Select all
bind msg - !opme aop_op
proc aop_op {nick host hand chan text} {
pushmode $chan +o $nick
putserv "PRIVMSG $chan :Sure thing $nick."
return 0
}
putlog "OP Script is loaded succesfully!"
Code: Select all
bind msg - !opme aop_op
bind msg - !deopme deop_op
proc aop_op {nick host hand chan text} {
pushmode $chan +o $nick
putserv "PRIVMSG $chan :Sure thing $nick."
return 0
}
proc deop_op {nick host hand chan text} {
pushmode $chan -o $nick
putserv "PRIVMSG $chan :Sure thing $nick."
return 0
}
putlog "OP Script is loaded succesfully!"
So i changed it back to the origional form (top code)
Ive done everything i can think of.
The script is added in the eggdrop.conf
i have .rehash and .restart
ive even killed the eggdrop process and restarted it that way.
Nothing i do works.
Any help is greatly appriciated.