mIRC Homepage
Posted By: BassReFLeX On join change ident and host ! - 07/02/04 11:17 AM
Hi there !

I wanted to make a code wich will .. " on join change ident and host ". I tried this but it didn't work !

on *:join:bassreflex:#: {
/chgident bassreflex test
/chghost bassreflex tes.test.pl
}

can an1 tell me the right answer?
Posted By: Collective Re: On join change ident and host ! - 07/02/04 01:55 PM
Code:
on *:JOIN:#: {
  if ( $nick == bassreflex ) {
    chgident $nick test
    chghost $nick tes.test.pl
  }
}
© mIRC Discussion Forums