UOGamers Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • To obtain new Razor updates, please reinstall Razor from our new website.

Lighting Strike (bushido) macro!?

DamaGeR

Sorceror
Pls give me macro (in assist) to Lighting Strike SPAM ;)
I got in on easyuo, but must have on assist ;)

THX !!!
 

kgb

Squire
if you catch something like mana vampire or mana drain and you have lack of mana this macro being disturbed
because you didn't perform ability and your journal is finally cleared, so, when action repeated again there is no msg like "'You attack with lightning precision!"
thats why its doesnt work right
so, i'm try to repair it by this way:

Code:
if @injournal 'You need 3 mana to perform that attack' 'system' (thats msg you see if you doesnt have enough mana to perform lighting strike this moment)
       pause 3000 (little waiting to regenerate enough amount of mana)
       cast "Lightning Strike"
       clearjournal
       elseif @injournal 'You attack with lightning precision!' 'system'
       cast "Lightning Strike"
       clearjournal
endif

but it's doesnt work :\ idk why

can anybody give any advise to repair this stuff?
 

MB

Knight
Never casted lightning strike and don't have character to test, but I would try something like

if @injournal 'You attack with lightning precision!' or @injournal 'failure message'
while mana <#you need to cast
endwhile
cast "Lightning Strike"
clearjournal
endif
 

preman

Sorceror
tested & working
Code:
@getenemy 'enemy' 'criminal' 'gray' 'nearest' 'closest'
Never casted lightning strike and don't have character to test, but I would try something like
Code:
if @injournal 'You attack with lightning precision!' or @injournal 'failure message'
while mana <#you need to cast
endwhile
cast "Lightning Strike"
clearjournal
endif
Code:
attack 'enemy'
pause 100
 
  • Like
Reactions: MB

kgb

Squire
I cant finally get working macro, its breaks if mana is over or if there is no msg like "You attack with lightning precision!"
 

Latifa

Traveler
I use the macro above for cast automaticaly light strike spell but it not work fine for me . I have to click on buton for its work not start work automaticaly,anyone have idea how to do it? The macro is;

if @injournal 'You attack with lightning precision!' or @injournal 'failure message'
while mana < 3 #you need to cast
endwhile
cast "Lightning Strike"
clearjournal
endif
 

ThePope

Traveler
if not buffexists 'enemy of one'

cast 'enemy of one'

endif

if not buffexists 'consecrate weapon'

cast 'consecrate weapon'

endif

if stam < 100

cast 'divine fury'

endif

if @buffexists "Blood Oath"

warmode 'off'

usetype! '0x2fd8'

endif

@getenemy 'criminal' 'enemy' 'murderer' 'grey' 'closest'

@autotargetobject 'enemy'

if @inrange 'enemy' 5

virtue 'honor'

waitfortarget 600

target 'enemy'

@autotargetobject 'enemy'

@canceltarget

endif

@canceltarget

@cancelautotarget

@attack 'enemy'

cast 'lightning strike'

waitforjournal 'You attack with lightning precision!' 4000

@clearjournal
 

c0d3r

Traveler
Code:
// Lightning Strike
clearjournal
while not @injournal 'prepare to strike' 'system'
  cast 'lightning strike'
  waitforjournal 'prepare to strike' 500 'system'
  if @injournal 'prepare to strike' 'system'
    waitforjournal 'attack with lightning' 5000 'system'
  endif
endwhile
 
Top