mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2004
Posts: 8
B
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
B
Joined: Jan 2004
Posts: 8
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?

Last edited by BassReFLeX; 07/02/04 11:18 AM.

-= Leave Some Trace =-
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Code:
on *:JOIN:#: {
  if ( $nick == bassreflex ) {
    chgident $nick test
    chghost $nick tes.test.pl
  }
}


Link Copied to Clipboard