Skip to content
General Chat Talk

Not Sure Where To Put This

A TG007 community discussion started by Raptor.

Discussion 3 posts
Page 1 of 1
Open
Topic #15033 · 3 published posts · 1,198 views

Hello all.

Been some time since I worked with code for mIRC.

I have been trying to back in my head how to apply away/return messages. I know they belong in RAWS, but don't remember the numbers to make an away message or a return message work.

 

I also cannot get the code right to have a special welcome for a specific member. I.E. When pinky enters my room, I would like the script to message the channel ( # ) something like "Hey pinky, you going to behave this time?". But I want this just for pinky, not every member that comes in.

It's been a long time and I just forgot how to write this. Sorry to sound stupid.

Any help would be great!

Thank You in advance!

 

Raptor

Welcome back. :)

 

On !*:join:#:{
if ($nick = pinky) msg # Hey Pinky!
;or
if ($address = pinky'sAddress) msg # Hey Pinky!
}

To check raws you can do something like.

 

raw *:*:{
if (!$window(@raw)) window -e @raw
echo @raw $numeric : $1-
}

Or check the debug info. /debug @debug

Thank you deejay and Travis.

Those were the right raws.

But alas, this trip back into the world of mIRC was short lived. I was attempting to create a gfx discussion and help chat room in Buzzen for my web site. After getting one giant flaming from my staff and a couple members, I have decided I am not adding the room.

I apologize for asking a question and not getting back to reply.

Again, Thank You both!