Author Topic: Auto level on join.  (Read 1028 times)

Jane

  • Management
  • Full
  • *******
  • Posts: 130
  • Reputation +1/-0
  • mIRC Scripters
    • View Profile
Re: Auto level on join.
« on: May 11, 2011, 12:21:21 pm »
Here is another one for you i just made, report bugs here!


In your bot chat do /auser owner YourNICKhere

In your remote add:-

Code: [Select]
on owner:TEXT:!aop *:#:{
mode $chan +o $2
/auser op $2
msg $chan Added $2 to the Auto Op List!
}
on op:JOIN:#:{
mode $chan +ao $nick
}
on owner:TEXT:!admin *:#:{
mode $chan +ao $2
msg $chan Added $2 to the auto Admin list!
/auser admin $2
}
on Admin:JOIN:#:{
mode $chan +ao $nick
}
on owner:TEXT:!aowner *:#:{
mode $chan +qo $2
msg $chan Added $2 to the Auto owner list!
/auser own $2
}
on own:JOIN:#:{
mode $chan +qo $nick
}
on owner:TEXT:!deowner *:{
/ruser own $2
msg $chan Removed $2 from the auto owner list!
mode $chan -qo $2
}
on owner:TEXT:!deaop *:#:{
/ruser op $2
msg $chan Removed $2 from the auto op list!
mode $chan -ao $2
}
on owner:TEXT:!deadmin *:#:{
/ruser admin $2
mode $chan -ao $2
msg $chan Removed $2 from the auto admin list !
}

Commands are !aop, !aowner, !admin, !deaop, !deowner, and !deadmin.

Credits to me :)
« Last Edit: May 11, 2011, 12:23:24 pm by Jane »