mIRC Home    About    Download    Register    News    Help

Print Thread
#3836 29/12/02 12:27 AM
Joined: Dec 2002
Posts: 25
K
KennyJ Offline OP
Ameglian cow
OP Offline
Ameglian cow
K
Joined: Dec 2002
Posts: 25
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,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Press alt+v to set the default font.

#3838 29/12/02 12:39 AM
Joined: Dec 2002
Posts: 40
L
Ameglian cow
Offline
Ameglian cow
L
Joined: Dec 2002
Posts: 40
You could also do this
Code:
on *:join:#:{
if ($nick != $me) { halt }
font 1 arial
}

#3839 29/12/02 01:06 AM
Joined: Dec 2002
Posts: 25
K
KennyJ Offline OP
Ameglian cow
OP Offline
Ameglian cow
K
Joined: Dec 2002
Posts: 25
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.


"Any sufficiently advanced technology is indistinguishable from magic." - Arthur C. Clarke
#3841 29/12/02 01:09 AM
Joined: Dec 2002
Posts: 1,527
_
Hoopy frood
Offline
Hoopy frood
_
Joined: Dec 2002
Posts: 1,527
try the command he posted ...... the command he posted is set to halt if it isnt u ...... the ! in there would denote that ......


D3m0nnet.com
#3842 29/12/02 01:10 AM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
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
Joined: Dec 2002
Posts: 25
K
KennyJ Offline OP
Ameglian cow
OP Offline
Ameglian cow
K
Joined: Dec 2002
Posts: 25
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
Joined: Dec 2002
Posts: 25
K
KennyJ Offline OP
Ameglian cow
OP Offline
Ameglian cow
K
Joined: Dec 2002
Posts: 25
got it works now

thanks all

#3845 29/12/02 01:22 AM
Joined: Dec 2002
Posts: 12
M
Pikka bird
Offline
Pikka bird
M
Joined: Dec 2002
Posts: 12
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,321
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,321
on me:*:JOIN:#: font $chan 1 Arial


DALnet: #HelpDesk and #m[color:#FF0000]IR[color:#EEEE00]C

Link Copied to Clipboard