1 2 3 4 5 6 7 8 9 10 11 12 13 |
menu * { aBOT Settings .Set Chan:set %chan $?"Type Chan here" .Add Admin:unset %admins1 | set %admins1 $?"Type Q Account here" | if (%admins1) { set %admins $addtok(%admins,%admins1 $+ .users.quakenet.org,32) } .Del Admin:unset %admins1 | set %admins1 $?"Type Q Account here" | if (%admins1) { set %admins $remtok(%admins,%admins1 $+ .users.quakenet.org,32) } .Add Owner:unset %owners1 | set %owners1 $?"Type Q Account here" | if (%owners1) { set %owners $addtok(%owners,%owners1 $+ .users.quakenet.org,32) } .Del Owner:unset %owners1 | set %owners1 $?"Type Q Account here" | if (%owners1) { set %owners $remtok(%owners,%owners1 $+ .users.quakenet.org,32) } aBOT Protect .Adv Protect:$iif($?!"Adv Protection ON?" == $true,set %adv.status ON,set %adv.status OFF) .Flood Protect:$iif($?!"Flood Protection ON?" == $true,set %flood.status ON,set %flood.status OFF) .TakeOver Protect:$iif($?!"TakeOver Protection ON?" == $true,set %takeover.status ON,set %takeover.status OFF) } |
| Parsed for bracket errors and indented: | |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
menu * { aBOT Settings .Set Chan:set %chan $?"Type Chan here" .Add Admin:unset %admins1 | set %admins1 $?"Type Q Account here" | if (%admins1) { set %admins $addtok(%admins,%admins1 $+ .users.quakenet.org,32) } .Del Admin:unset %admins1 | set %admins1 $?"Type Q Account here" | if (%admins1) { set %admins $remtok(%admins,%admins1 $+ .users.quakenet.org,32) } .Add Owner:unset %owners1 | set %owners1 $?"Type Q Account here" | if (%owners1) { set %owners $addtok(%owners,%owners1 $+ .users.quakenet.org,32) } .Del Owner:unset %owners1 | set %owners1 $?"Type Q Account here" | if (%owners1) { set %owners $remtok(%owners,%owners1 $+ .users.quakenet.org,32) } aBOT Protect .Adv Protect:$iif($?!"Adv Protection ON?" == $true,set %adv.status ON,set %adv.status OFF) .Flood Protect:$iif($?!"Flood Protection ON?" == $true,set %flood.status ON,set %flood.status OFF) .TakeOver Protect:$iif($?!"TakeOver Protection ON?" == $true,set %takeover.status ON,set %takeover.status OFF) } |