Imagine Nation Forums
[EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med - Printable Version

+- Imagine Nation Forums (https://in-uo.net/forums)
+-- Forum: Imagine Nation: Xtreme archive (https://in-uo.net/forums/forumdisplay.php?fid=5)
+--- Forum: Player Guides (https://in-uo.net/forums/forumdisplay.php?fid=20)
+--- Thread: [EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med (/showthread.php?tid=3592)



[EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med - imported_Kamos - 05-23-2009

Thought I'd do my part on adding some macros for new players. This is what I used to hit GM magery from 90 (you can get 90 using the skill menu when you start). You need around 8000-9000 magic arrow scrolls and some bandages and you are all set until GM magery. I didn't make restocking part for it since you need to only do it twice anyway. Take 3000 MA scrolls and 1000 bandages on you at a time and just run the macro.

Code:
while #TRUE
{
  if ( #MANA >= 2 )
    gosub CastMA
  else
    gosub Meditate
  if ( #HITS < 64 )
    gosub BandageSelf
  if ( #HITS < 10 )
    halt
}

; MA scroll self
sub CastMA
  finditem CYL C_ , #BACKPACKID
  if ( #FINDCNT > 0 )
  {
      set %CastMana #MANA
      set #LOBJECTID #FINDID
      event macro 17 0
      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 < 98 )
{
  event macro 13 46
  if You_are_preoccupied in #journal
    event macro 6 0
  else
    wait 61
}
return
Meditation could be made better but this should get the job done. Wink


[EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med - smoke - 05-23-2009

thanks kamos!


[EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med - smoke - 05-23-2009

can anyone post a zip of easy uo please? i can't download it from the website because i forgot my password and account name


[EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med - Eighty Swords - 05-23-2009

Good work man!


[EUO] Magery/Healing/Resist/EvalInt/Anatomy/Med - imported_Raziel - 03-28-2010

Kamos Wrote:Thought I'd do my part on adding some macros for new players. This is what I used to hit GM magery from 90 (you can get 90 using the skill menu when you start). You need around 8000-9000 magic arrow scrolls and some bandages and you are all set until GM magery. I didn't make restocking part for it since you need to only do it twice anyway. Take 3000 MA scrolls and 1000 bandages on you at a time and just run the macro.

Code:
while #TRUE
{
  if ( #MANA >= 2 )
    gosub CastMA
  else
    gosub Meditate
  if ( #HITS < 64 )
    gosub BandageSelf
  if ( #HITS < 10 )
    halt
}

; MA scroll self
sub CastMA
  finditem CYL C_ , #BACKPACKID
  if ( #FINDCNT > 0 )
  {
      set %CastMana #MANA
      set #LOBJECTID #FINDID
      event macro 17 0
      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 < 98 )
{
  event macro 13 46
  if You_are_preoccupied in #journal
    event macro 6 0
  else
    wait 61
}
return
Meditation could be made better but this should get the job done. Wink

The medit doesnt work here if i am im combat mode, i fixed it by adding a line
scanjournal 1
before the if You_are_preoccupied in #journal line.
It's an excelent macro! good work ^^