|
|
| Author |
Message |
walkingtwig none

Joined: 05 Feb 2005 Posts: 1
|
Posted: Mar 12, 2005 2:10pm Post subject: tags |
|
|
how do you make tags?
<nick> ** PîZzŧ ** text ** PîZzŧ** |
|
| Back to top |
|
 |
Dan_C none

Joined: 09 Nov 2004 Posts: 18
|
Posted: Mar 12, 2005 6:12pm Post subject: Re: tags |
|
|
| walkingtwig wrote: | how do you make tags?
<nick> ** PîZzŧ ** text ** PîZzŧ** |
the easy way to do this, is use windows character map, found in your system tools folder. or go to run and enter charmap.exe. But note that not all fonts are compatible with miRC, so play around with it and find something you like. |
|
| Back to top |
|
 |
PingBad Guru

Joined: 05 Feb 2005 Posts: 2026 Location: New Zealand
|
Posted: Mar 13, 2005 6:40am Post subject: |
|
|
once ya have sorted out both parts of your tags, type this into the mIRC scripts editor (if you use mIRC 6 or later):
| Code: |
on *:INPUT:#:{
;check for command character
if ($left($1,1) == /) {
if ($ctrlenter) {
;used for displaying commands
say $1-
halt
}
if (!$ctrlenter) {
;process a command
return
}
}
say <tag1> $1- <tag2>
halt
}
|
thus, everytime you enter a message into a channel, it will be decorated with your tags (with the exception of issuing commands) |
|
| Back to top |
|
 |
|