mIRC Home    About    Download    Register    News    Help

Print Thread
#129966 11/09/05 08:34 PM
Joined: Sep 2005
Posts: 4
M
Self-satisified door
OP Offline
Self-satisified door
M
Joined: Sep 2005
Posts: 4
Hey guys,

I made a small script,

on *TExt*!test....{
/me hello there
}

But when i type !test to trigger the event mIrc gives me this error msg in the status window

* /me: cannot use /me in this window (line 120, test.mrc)

But if I type /me bla bla in the Channel it works fine.
This script works on one mIRc but on another one it's just bicthing and giveming that error.
I think it's somethink with window focus, any one who can help me?

Thx in advance

Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
You cant use /me in remotes
Use /describe

Code:
on *:text:!test:#: {
describe $chan hello there
}


or

Code:
on *:text:!test:*: {
describe $target hello there
}


echo -a $signature
Joined: Sep 2005
Posts: 6
T
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
T
Joined: Sep 2005
Posts: 6
try using /describe instead of /me

Joined: Sep 2005
Posts: 6
T
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
T
Joined: Sep 2005
Posts: 6
Quote:
You cant use /me in remotes
Use /describe

Code:
on *:text:!test:#: {
describe $chan hello there
}


or

Code:
on *:text:!test:*: {
describe $target hello there
}


beat me to it :P

Joined: Sep 2005
Posts: 4
M
Self-satisified door
OP Offline
Self-satisified door
M
Joined: Sep 2005
Posts: 4
Nic guys, works like a charm !!
Thx for the fast replyes

Joined: Aug 2005
Posts: 1,052
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Aug 2005
Posts: 1,052
Mighty Joe its nice you wanna start in script but type /help to get most commands something like on text could of easily been found there

/help on TEXT

wink cheers


Code:
if $reality > $fiction { set %sanity Sane }
Else { echo -a *voices* }
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
That is very true but the mIRC help file should show a little more information on the /ME command as it does for the /DESCRIBE command.

/ME message
Tells the current channel or query about what you are doing.

/describe <nick|channel> <message>
Sends an action to the specified nickname or channel, the same as the /me command, except that /me is used while in a query or channel window so you don't need to specify the target when using it.

So I think maybe the /describe should be mentioned in the help for /me or just moved into Basic IRC Command scompletely under or above /me. smile

-Andy


Link Copied to Clipboard