[EUO] Maery, Resist, Eval Int, Healing, Meditation macro - Printable Version
+- Imagine Nation Forums (
https://in-uo.net/forums)
+-- Forum: Imagine Nation archive (
https://in-uo.net/forums/forumdisplay.php?fid=6)
+--- Forum: Player Guides (
https://in-uo.net/forums/forumdisplay.php?fid=29)
+--- Thread: [EUO] Maery, Resist, Eval Int, Healing, Meditation macro (
/showthread.php?tid=5622)
[EUO] Maery, Resist, Eval Int, Healing, Meditation macro -
Cyanide - 04-27-2012
This is a script i fownd on this forum and modified to use magic arrow from your spellbook instead of MA scrolls, there are still some useless lines in that script but they dont do anything so i didnt bother to delete them.
Basicly all you need is to have Bandages and Sulfrous Ash in backpack. I hope this helps somebody.
PHP Code:
while #TRUE
{
if ( #MANA >= 6 )
gosub CastMA
else
gosub Meditate
if ( #HITS < 64 )
gosub BandageSelf
if ( #HITS < 10 )
halt
}
; MA self
sub CastMA
finditem CYL C_ , #BACKPACKID
{
set %CastMana #MANA
set #LOBJECTID #FINDID
event macro 15 4
target 15s
event macro 23
while ( #MANA >= %CastMana )
{
}
}
return
; Uses a bandage on yourself
sub BandageSelf
finditem ZLF C
if ( #FINDCNT > 0 )
{
set #lObjectId #findId
event macro 17 0 ;last object
target 15s
event macro 23
wait 50
}
return
sub Meditate
while ( #MANA < 95 )
{
event macro 13 46
if You_are_preoccupied in #journal
event macro 6 0
else
wait 61
}
return
[EUO] Maery, Resist, Eval Int, Healing, Meditation macro -
Arcannine - 05-21-2012
im using this and when it meditates it fully meditates then just ssays you are at peace over and over. it dosent seem to reconize when its finished medi.
[EUO] Maery, Resist, Eval Int, Healing, Meditation macro -
Gang - 05-21-2012
Arcannine Wrote:im using this and when it meditates it fully meditates then just ssays you are at peace over and over. it dosent seem to reconize when its finished medi.
I never used EasyUO so I could be wrong, but ain't your int lower than 95?
Code:
while ( #MANA < 95 )
{
event macro 13 46
[EUO] Maery, Resist, Eval Int, Healing, Meditation macro -
Arcannine - 05-22-2012
so my int needs to be 95 or up yes?