Page 1 of 1

Magery Razor macro

Posted: Fri Jan 30, 2009 6:38 am
by Al Ein
So I've got a character healing me with bandages as I take the resist route to GM mage (lightning/ebolt/Flamestrike) but I cant figure out in razor if there is a way to re-attempt meditation if i fail initially - and to keep trying until i get it and reach a certain level of mana... Any insight would be appreciated

Re: Magery Razor macro

Posted: Fri Jan 30, 2009 2:28 pm
by Red
You need this line after meditation.

wait for mana >= xx

But, since the meditation gain changes, I think it would be better to do something like..

use meditation
pause 10 sec
use meditation
pause 10 sec
use meditation
pause 10 sec

etc, you just have to watch the macro to see how many meditations you need to get to the mana you want.

Re: Magery Razor macro

Posted: Fri Jan 30, 2009 5:47 pm
by mrbojangles
i find my method works flawlessly after about 45 med.

if (mana < 40)
use med
if (sys message = "you cannot focus your concentration")
use med
end if
wait for mana > 80
end if

Re: Magery Razor macro

Posted: Fri Jan 30, 2009 6:34 pm
by Red
That's a pretty good macro, but when you succeed, it won't actively use the meditation skill for the chance to gain.

Re: Magery Razor macro

Posted: Sat Jan 31, 2009 3:54 am
by 0range
Does anyone have a macro that will work for two people together healing eachother? Thanks!

Re: Magery Razor macro

Posted: Sat Jan 31, 2009 8:07 am
by the same old fears
you guys are making this way too hard.

cast spell
target self
meditate


you can delete the "wait for target" portion, it isn't needed. You can however add in a check hp clause around the target self if you are afraid of killing yourself.

This is the easiest most efficient way of doing it as it will continuously try to meditate, resulting in the best skill gain possible.




edit:

respectively
Image