help with making macros

Name says it all
Post Reply
User avatar
nocturne7saint
Elder Scribe
Reactions:
Posts: 180
Joined: Thu May 30, 2019 9:32 pm

help with making macros

Post by nocturne7saint »

I'm trying to make a magery macro to get my magery to 110, i know i need to cast earthquake.
but what do i add to meditate when under required mana to cast earthquake, and stop the macro when i hit 110 magery?
blackstone from the ILV guild
User avatar
fixxer1963
Legendary Scribe
Reactions:
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

Re: help with making macros

Post by fixxer1963 »

For UOSteam

Code: Select all

if skill "magery" < 45
  if mana > 16
    for 3
      msg '[cs bless'
      waitfortarget 5000
      target! 'self'
      pause 3000
    endfor
  else
    if mana <= 17
      useskill 'meditation'
      pause 45000
    endif
  endif
elseif skill "magery" >= 45
  if skill "magery" < 60
    if mana > 21
      for 3
        msg '[cs archcure'
        waitfortarget 15000
        target! 'self'
        pause 4000
      endfor
    endif
    if mana <= 22
      useskill 'meditation'
      pause 65000
    endif
  endif
endif
if skill "magery" >= 60
  if skill "magery" < 90
    if mana > 21
      for 3
        cast "Reveal"
        waitfortarget 5000
        target! 'self'
        pause 3000
      endfor
    endif
    if mana <= 22
      pause 3000
      useskill 'meditation'
      pause 55000
    endif
  endif
endif
if skill "magery" >= 90
  if skill "magery" < 100
    for 3
      if mana > 31
        cast "Mana Vampire"
        waitfortarget 5000
        target! 'self'
        pause 4000
      endif
      if mana <= 32
        pause 3000
        useskill 'meditation'
        pause 25000
      endif
    endfor
  endif
endif
if skill "magery" >= 90
 stop
endif
Last edited by fixxer1963 on Sat Jun 08, 2019 2:52 pm, edited 1 time in total.
Hawke Armstrong/FiXXer
User avatar
nocturne7saint
Elder Scribe
Reactions:
Posts: 180
Joined: Thu May 30, 2019 9:32 pm

Re: help with making macros

Post by nocturne7saint »

mana vampire will not get gains into 110, i don't even think mana vampire will get any gains past 80
blackstone from the ILV guild
User avatar
Cerrera
Legendary Scribe
Reactions:
Posts: 412
Joined: Fri Sep 21, 2018 8:51 am

Re: help with making macros

Post by Cerrera »

I think no need to force magery after getting gate,mark,teleport and recall abilites, wait untill will get more regens. (sory not what u were asking but i cannot delete post if i wrote it :D)
User avatar
Wil
Legendary Scribe
Reactions:
Posts: 1228
Joined: Mon Dec 30, 2013 1:19 pm
Location: Seattle, WA, USA
Contact:

Re: help with making macros

Post by Wil »

nocturne7saint wrote:I'm trying to make a magery macro to get my magery to 110, i know i need to cast earthquake.
but what do i add to meditate when under required mana to cast earthquake, and stop the macro when i hit 110 magery?
The way to gain 120 magery is: get a -29 magery malus weapon with spell channeling and then cast what you would to gain from 90 to 100.
User avatar
fixxer1963
Legendary Scribe
Reactions:
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

Re: help with making macros

Post by fixxer1963 »

nocturne7saint wrote:mana vampire will not get gains into 110, i don't even think mana vampire will get any gains past 80
I just used that script on a brand new toon and it took me to 100 overnight.
And I just added the stop section.
If you want to add another spell... you have the template for it right here. Feel free to modify it and thank me for the help at any time.
Hawke Armstrong/FiXXer
User avatar
fixxer1963
Legendary Scribe
Reactions:
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

Re: help with making macros

Post by fixxer1963 »

Wil wrote:
nocturne7saint wrote:I'm trying to make a magery macro to get my magery to 110, i know i need to cast earthquake.
but what do i add to meditate when under required mana to cast earthquake, and stop the macro when i hit 110 magery?
The way to gain 120 magery is: get a -29 magery malus weapon with spell channeling and then cast what you would to gain from 90 to 100.
I didn't think to mention this Wil.. Thanks for the input.
Been doing it so long I just assumed everybody used the malus weapon.
Loni
Passer by
Reactions:
Posts: 4
Joined: Mon Jan 22, 2018 6:17 am

Re: help with making macros

Post by Loni »

I think no need to force magery after getting gate,mark,teleport and recall abilites, wait untill will get more regens. (sory not what u were asking but i cannot delete post if i wrote it :D)
Post Reply