Advertisement
outsider

ircu opmode in eggdrop

Dec 19th, 2018
955
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.40 KB | None | 0 0
  1. bind need - * gfunc:needmode
  2. proc gfunc:needmode {chan type} {
  3.         global botnick
  4.         switch $type {
  5.                 op { putserv "OPMODE $chan +o $botnick" }
  6.                 unban { putserv "JOIN $chan OVERRIDE" }
  7.                 invite { putserv "JOIN $chan OVERRIDE" }
  8.                 key { putserv "JOIN $chan OVERRIDE" }
  9.                 limit { putserv "JOIN $chan OVERRIDE" }
  10.         }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement