Hiriako2005-10-02 23:25:42
I want to take the command prompt (*)h, (*)m, (*)e...
And capture it into variables of:
currhealth
currmana
etc...
How would I do this in Mushclient?
And capture it into variables of:
currhealth
currmana
etc...
How would I do this in Mushclient?
Hiriako2005-10-02 23:46:02
Actually,
Perhaps I should specifically discuss my issue. I'm trying to develop some sort of autosipper for it, and I'm not really sure how to go about it. I'm using a modification of Ethelon's free system (no major changes yet, just started working on it).
Perhaps I should specifically discuss my issue. I'm trying to develop some sort of autosipper for it, and I'm not really sure how to go about it. I'm using a modification of Ethelon's free system (no major changes yet, just started working on it).
Hiriako2005-10-03 00:09:29
If this is of any help...
Error number: -2146827263
Event: Execution of line 1 column 26
Description: Expected end of statement
Line in error:
setvariable "currhealth" "2483";
Called by: Immediate execution
Error number: -2146827263
Event: Execution of line 1 column 26
Description: Expected end of statement
Line in error:
setvariable "currhealth" "2483";
Called by: Immediate execution
Ethelon2005-10-03 00:11:56
Why not just copy the auto-sipper right out of my free version?
Hiriako2005-10-03 00:14:10
I'm using your free system, and I can't find a working autosipper. If you could direct me, I'd be thrilled.
Ethelon2005-10-03 00:15:01
Better yet, here...
  custom_colour="5"
 enabled="y"
 group="Alerts"
 match="^  Ego   \\: (.*?)\\/(.*?) (.*?)"
 regexp="y"
 send_to="10"
 sequence="100"
 >
Âmaxe%2
Â
  custom_colour="8"
 enabled="y"
 group="Alerts"
 match="^  Health \\: (.*?)\\/(.*?) (.*?)"
 regexp="y"
 send_to="10"
 sequence="100"
 >
Âmaxh%2
Â
  custom_colour="8"
 enabled="y"
 group="Alerts"
 match="^  Mana  \\: (.*?)\\/(.*?) (.*?)"
 regexp="y"
 send_to="10"
 sequence="100"
 >
Âmaxm%2
Â
  custom_colour="3"
 enabled="y"
 expand_variables="y"
 group="*Script"
 keep_evaluating="y"
 match="^(\\d+)h\\, (\\d+)m\\, (\\d+)e\\, (\\d+)p (.*?)\\-"
 name="HealReflex"
 regexp="y"
 repeat="y"
 send_to="12"
 sequence="100"
 >
Âif (%1 <= @maxhealth*.85) then
send "drink health"
enabletrigger "HealReflex", "0"
elseif (%2 <= @maxmana*.85) then
send "drink mana"
enabletrigger "HealReflex", "0"
elseif (%3 <= @maxego*.85) then
send "drink bromide"
enabletrigger "HealReflex", "0"
else
call deepwounds (a, b, c)
end if
Â
CODE
Â
 enabled="y"
 group="Alerts"
 match="^  Ego   \\: (.*?)\\/(.*?) (.*?)"
 regexp="y"
 send_to="10"
 sequence="100"
 >
Â
Â
Â
 enabled="y"
 group="Alerts"
 match="^  Health \\: (.*?)\\/(.*?) (.*?)"
 regexp="y"
 send_to="10"
 sequence="100"
 >
Â
Â
Â
 enabled="y"
 group="Alerts"
 match="^  Mana  \\: (.*?)\\/(.*?) (.*?)"
 regexp="y"
 send_to="10"
 sequence="100"
 >
Â
Â
Â
 enabled="y"
 expand_variables="y"
 group="*Script"
 keep_evaluating="y"
 match="^(\\d+)h\\, (\\d+)m\\, (\\d+)e\\, (\\d+)p (.*?)\\-"
 name="HealReflex"
 regexp="y"
 repeat="y"
 send_to="12"
 sequence="100"
 >
Â
send "drink health"
enabletrigger "HealReflex", "0"
elseif (%2 <= @maxmana*.85) then
send "drink mana"
enabletrigger "HealReflex", "0"
elseif (%3 <= @maxego*.85) then
send "drink bromide"
enabletrigger "HealReflex", "0"
else
call deepwounds (a, b, c)
end if
Â
Ethelon2005-10-03 00:16:00
QUOTE(Hiriako @ Oct 2 2005, 08:14 PM)
I'm using your free system, and I can't find a working autosipper. If you could direct me, I'd be thrilled.
197696
You using the version that is pinned at the stop of this forum? It's in there... if your prompt shows lime green that means it's on, otherwise it may be turned off, so use "ah on" to turn it back on
Hiriako2005-10-03 00:22:04
I am using the one pinned at the top, no real mods just yet besides aliases and macros for personal use...
The autohealer was turned off, didn't know how to turn it on (hadn't found that yet). Thank you, it's on now, and I would presume working...I will figure out how to use MUSHClient yet. Suppose I should learn VB too...*chew* Alright, thank you Ethelon.
Oh, by the way, how does the parry mode work?
I'm currently working on a script for astrology data, that'll be a pain in the neck, but I should be able to figure it out...
The autohealer was turned off, didn't know how to turn it on (hadn't found that yet). Thank you, it's on now, and I would presume working...I will figure out how to use MUSHClient yet. Suppose I should learn VB too...*chew* Alright, thank you Ethelon.
Oh, by the way, how does the parry mode work?
I'm currently working on a script for astrology data, that'll be a pain in the neck, but I should be able to figure it out...