mIRC Home    About    Download    Register    News    Help

Print Thread
#106401 29/12/04 05:13 PM
Joined: Nov 2004
Posts: 84
GogetaX Offline OP
Babel fish
OP Offline
Babel fish
Joined: Nov 2004
Posts: 84
raw JOIN:*:{ haltdef | echo -s New Join: $nick $+ ( $+ $address($nick,1) $+ ) }

whats wrong with this?

i want it to say New Join to the ppls that joined to channel

Last edited by GogetaX; 29/12/04 05:18 PM.

by the time you finish reading this, you realize you have wasted 5 secundes of your life!
#106402 29/12/04 05:34 PM
Joined: Dec 2002
Posts: 145
G
Vogon poet
Offline
Vogon poet
G
Joined: Dec 2002
Posts: 145
Quote:
i want it to say New Join to the ppls that joined to channel

on *:JOIN:*:{ msg $nick New Join: $nick $+ ( $+ $address($nick,1) $+ ) }

Set it to your specific channel, if not, you may end up getting banned for annoyance.

#106403 29/12/04 05:48 PM
Joined: Nov 2004
Posts: 84
GogetaX Offline OP
Babel fish
OP Offline
Babel fish
Joined: Nov 2004
Posts: 84
it says:
* New Join: He`Mou(*!*Pscript@195.13.200.114)
* He`Mou has joined #mu.crash

but i need to replace 'He`Mou has joined #mu.crash' with my own TEXT...


by the time you finish reading this, you realize you have wasted 5 secundes of your life!
#106404 29/12/04 06:31 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Code:
on ^!*:JOIN:#: {
   echo $chan <Your message here> $nick ( $+ $address $+ )
   haltdef
}


Link Copied to Clipboard