New Convert from Zmud

Posted by Fraust on Sun 05 Jul 2009 03:35 AM — 3 posts, 15,431 views.

#0
Hi All,

I'm trying to get use to MUSHclient after being with Zmud for a few years. Hopefully someone can explain to me what I'm doing wrong.

Here's my trigger:

^Hp\: (?P<hp>.*?)\((?P<maxhp>.*?)\) Gp\: (?P<gp>.*?)\((?P<maxgp>.*?)\) Xp\: (?P<xp>.*?)\((?P<maxxp>.*?)\)*

I'm trying use an if statement to fire an alias when my Gp drops below a certain point. I thought it should be as simple as

if %<gp> < 2000 then
send (gpheal)
end

I have this set to 'send to script' but still getting an error.

Help is appreciated.

Thanks,

Fraust.
USA #1
Capitalize the S in Send and put quotes around gpheal.

Send ("gpheal")
Amended on Sun 05 Jul 2009 04:00 AM by Fadedparadox
Australia Forum Administrator #2
Send sends to the MUD. If you want to fire a client alias, use Execute instead.