Simple Owner/Deowner Script
Platform: mIRC
Published Nov 04, 2008
Updated Nov 04, 2008
This is a simple owner/deowner script, I know its not much but its just something that's easy to use and directly to the point. Just put this in your mIRC remotes, type /set %owner (yourname) that way only you can tell your bot to owner or deowner someone. This will only work if your bot is owner (which should be kinda obvious)
on 1:TEXT:'owner*:#: {
if ($nick == %owner) {
/mode $chan +q $2
}
if ($nick != %owner) {
/notice $nick 4Acess Denied Noob!! :|
}
}
on 1:TEXT:'deowner*:#: {
if ($nick == %owner) {
/mode $chan -q $2
}
if ($nick != %owner) {
/notice $nick 4Acess Denied Noob!! :|
}
}