Razor / healing macro

Moderator: Support Moderators

Post Reply
Zim
Posts: 175
Joined: Sun Jul 20, 2008 1:36 am

Razor / healing macro

Post by Zim »

Did some searching...

So if I have 2 characters, with healing, what is the best way to make them heal each other assuming they are GM anat/heal.

I couldnt find a "if" condition for a targets hp/poison status etc...

Right now them just try to heal each other, and I have it set to look for that target is at full... but if I could just have it do a "If" conditonal or something equivilent, that would be awesome.

Thanks!

User avatar
the bazookas
UOSA Donor!!
UOSA Donor!!
Posts: 671
Joined: Tue Aug 02, 2011 4:57 pm

Re: Razor / healing macro

Post by the bazookas »

Razor has limited capability regarding what type of logic you can use with respect to the possessions / people aside from your own. Outside of yourself, conditions do not exist in Razor, and therefore you are limited to relying on SysMessages. You can still do some stuff (it sounds like you are doing it), such as looping the following:
if (SysMessage == "you begin applying")
pause 6.00 seconds
else
pause 1.00 seconds
end if

That way it retries much faster than it would if you just always paused 6 seconds. Not much else you can do, I'm afraid.
Most people like us, or at least they like what we do. Regardless, we appreciate all our victims, and we hope that their encounter with us is a memorable one.
-a machine gun, a bazooka, and a grenade
... a not-for-profit organization (usually)

User avatar
Neithusak
Posts: 22
Joined: Fri Aug 14, 2009 9:32 pm

Re: Razor / healing macro

Post by Neithusak »

If you want to peer macro healing from 60-80 by poison curing following macro might be to your liking.
Requesting bandages is handled via system messages (if poisoned for curing and if below 50hp for healing).

Pros & cons:
+ fast (poison gets reapplied immediately after resisting it, curing by other character is fast ~6s)
+ safe (50hp bandage trigger safety net)
+ little poison damage (poison gets cured fast and damage it deals is little)
- needs poison caster with meditation (otherwise you run out of mana quite quickly)
- during meditation period healer will apply one bandage when poison is not on

Healer (stocked up on bandages):

Code: Select all

!Loop
Assistant.Macros.IfAction|4|0|attempting to peek
Assistant.Macros.DoubleClickTypeAction|3617|True
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.AbsoluteTargetAction|0|2|197075|842|1203|7|400
Assistant.Macros.PauseAction|00:00:06
Assistant.Macros.EndIfAction
Assistant.Macros.PauseAction|00:00:02
Poison caster (stocked up on nightshade):

Code: Select all

!Loop
Assistant.Macros.IfAction|3|-1|0
// Am I already being cured?
Assistant.Macros.IfAction|4|0|attempting to heal you
Assistant.Macros.ElseAction
// Snoop healer for curing
Assistant.Macros.DoubleClickAction|1076655773|3701
Assistant.Macros.EndIfAction
Assistant.Macros.PauseAction|00:00:02
Assistant.Macros.ElseAction
Assistant.Macros.IfAction|0|1|50
Assistant.Macros.IfAction|1|1|20
// Poison yourself
Assistant.Macros.MacroCastSpellAction|20
Assistant.Macros.WaitForTargetAction|30
Assistant.Macros.HotKeyAction|1059|
Assistant.Macros.ElseAction
// Low on mana ... meditate
Assistant.Macros.UseSkillAction|46
Assistant.Macros.PauseAction|00:00:10
Assistant.Macros.EndIfAction
Assistant.Macros.PauseAction|00:00:00.1000000
Assistant.Macros.ElseAction
Assistant.Macros.DoubleClickAction|1076655773|3701
Assistant.Macros.PauseAction|00:00:06
Assistant.Macros.EndIfAction
Assistant.Macros.EndIfAction
Tips:
- re-target backpack of your healer in poison caster macro
- re-target poison caster in healer macro
- adjust mana in meditation condition according to your meditation skill

Post Reply

Return to “New Player Help”