mIRC Homepage
Posted By: DuXxXieJ Mode +i -i - 31/01/07 04:35 PM
Hey. Can me/you make a on mode thing? i mean like this... :

Code:
 On *:MODE:*+i*:#:{
mode $chan -i
}


Php Code:
 It needs to do the mode -i if game.axenet.org +i does...  
Posted By: DJ_Sol Re: Mode +i -i - 31/01/07 07:29 PM
for my server it is rawmode, but I will trust you using your mode event.

on *:mode:#:{
if ($1 == -i) mode $chan +i
elseif ($1 == +i) mode $chan -i
}

This is pretty basic stuff, you can get pretty fancy pretty quickly if you want.

oh sorry, read your post again.
on *:mode:#:{
if ($1 == +i) mode $chan -i
}
Posted By: DuXxXieJ Re: Mode +i -i - 01/02/07 04:58 PM
Ah. Thanks. =)

© mIRC Discussion Forums