Simple Topic Changer
Platform: mIRC
Published Feb 13, 2010
Updated Feb 13, 2010
A simple topic changer to changer your topic :P
Triggers:
!t = Start of the topic, then there will be a /
!status = Middle of the topic, then there will be a /
!static = End of topic
Change the triggers to fit your needs. I used !t because I have GeekShed in my channel, so it would just go it him
Need help? Email me:
mail@mr09.co.cc
Or join my channel:
irc.GeekShed.net
on *:TEXT:*:#:{
if ( $nick isop $chan && $me isop $chan ) {
if ( $1 == !t ) { /topic $chan $2- / %status / %static | /set %topic $2- }
if ( $1 == !status) { /topic $chan %topic / $2- / %static | /set %status $2- }
if ( $1 == !static ) { /topic $chan %topic / %status / $2- | /set %static $2- }
}
}