mIRC Home    About    Download    Register    News    Help

Print Thread
#3836 29/12/02 12:27 AM
K
KennyJ
KennyJ
K
on *:join:#:{
font 1 arial
}

I want to make my mirc channel to have font and size that I want. Like when I join a channel, it automatic change font and size for me!
But the above codes keeps doing when someone jon a channel, I want it for me to join only!

Or any other way like set all mirc window, channels to have the excat same font, size with just one command?

#3837 29/12/02 12:34 AM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
Press alt+v to set the default font.

#3838 29/12/02 12:39 AM
L
Lucifer
Lucifer
L
You could also do this
Code:
on *:join:#:{
if ($nick != $me) { halt }
font 1 arial
}

#3839 29/12/02 01:06 AM
K
KennyJ
KennyJ
K
that doesn't do nothing. WHen I join a channel, it suppose to change font!
The above command is when it's my nick it halt, that's not I want. I only want when it nick is me.. it change font.. and other people is halt..
If I use this.. still doesn't work either..
Code:
on *:join:#:{
  if ($nick != $me) { font 1 arial }
  else { return }
}

#3840 29/12/02 01:08 AM
Joined: Dec 2002
Posts: 144
D
Vogon poet
Offline
Vogon poet
D
Joined: Dec 2002
Posts: 144
Try /font # 1 Arial.

#3841 29/12/02 01:09 AM
Joined: Dec 2002
Posts: 1,518
_
Hoopy frood
Offline
Hoopy frood
_
Joined: Dec 2002
Posts: 1,518
try the command he posted ...... the command he posted is set to halt if it isnt u ...... the ! in there would denote that ......

#3842 29/12/02 01:10 AM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
The code "if ($nick != $me) { halt }" means if the nick of the person joining ISN'T your nick then halt the script.

#3843 29/12/02 01:20 AM
K
KennyJ
KennyJ
K
Code:
on *:join:#:{ 
  if ($nick != $me) { font # 1 arial }  
  else { return }
}


./font # 1 arial works.. but it doesn't work i put in the event.. like as above.. it only works when someone join, not as I join..

#3844 29/12/02 01:22 AM
K
KennyJ
KennyJ
K
got it works now

thanks all

#3845 29/12/02 01:22 AM
M
moho
moho
M
People *have* explained this already. The solution is:

Code:
on *:join:#:{
  if ($nick == $me) { font $chan 1 arial } 
  else { return }
}

#3846 29/12/02 05:16 AM
Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
on me:*:JOIN:#: font $chan 1 Arial


Link Copied to Clipboard