|
mikjall Newbie
Joined: 28 Dec 2005 Posts: 1
|
Posted: Wed Dec 28, 2005 7:07 pm
Medievia Formation heal |
I am looking for a script that will heal whomever is hurt the most in the formation. Either automatically (set-up to use either 'c heal <form member>', or 'c cure critical <form member>'. or by pressing the "F" keys. I know there are a couple of different ones for Mud Master but can't seem to find any for zMud (of course some Githyanki Warlock could've blinded me and I'm just too stupid to cast cure blind (Medievian humor ).
Thanks in advance for your help. |
|
|
|
TonDiening GURU
Joined: 26 Jul 2001 Posts: 1958 Location: Canada
|
Posted: Tue Jan 03, 2006 1:54 pm |
Show us what Medievia gives when you query the formation for the status of the members. It would be good to include mud output before teh formation and after the formation query.
From there we can show you how to make a trigger that scans that result and determines the most hurt or whatever triage priority you want. |
|
|
|
TonDiening GURU
Joined: 26 Jul 2001 Posts: 1958 Location: Canada
|
|
|
|
Adnil Newbie
Joined: 21 Dec 2005 Posts: 4
|
Posted: Tue Jan 03, 2006 4:55 pm |
I set up a simple trigger that uses the prompt in medievia when fighting in a form to assign the name of the current most hurt person in the form to a variable. You can then use a macro key to heal that person. e.g.
Code: |
#CLASS {FormHeal}
#VAR fheal {elemental} {elemental}
#TRIGGER {^<~[*~%~]%1>~[*~] <%2/%3hp %4/%5m %6/%7mv %8br *xp> %9 *} {#var fheal %1}
#KEY MULT {c heal @fheal}
#CLASS 0
|
this would need modifying to match your prompt in medievia so the correct persons name is picked up. You can also change which key functions as the macro key, currently it is set to use * on the numpad.
This won't work with the formrep output to select who to heal, it only works with the change to the prompt built into medievia when formation fighting to save you typing. |
|
|
|
|
|