I have a lot of ontest commands. Is this the only way to do it?
IT could take a while to put it at the top of everyone single one.
Zad if you have alot of on text commands I suggest putting everything in one look how to do so ill show you
on *:TEXT:!hit*:#:{
describe hits $nick in the face
}
on *:TEXT:!slap*:#:{
describe slaps $nick across the face
}
on *:TEXT:!beer*:#:{
describe gives $nick a cold ice beer.
}
you can turn that into one on text event.
on *:TEXT:*:#:{
if ($1 == !hit) { describe hits $nick in the face }
elseif ($1 == !slap) { describe slaps $nick across the face }
elseif ($1 == !beer) { describe gives $nick a cold ice beer. }
}
Then you can add the code to that text event.