Page 1 of 1

[UOsteam] ninjitsu trainer

Posted: Sat Feb 27, 2016 2:48 am
by Dyēus Phater
alrighty, back again with another one for you guys.


This time it is a ninjitsu trainer and it comes in two parts because i havent worked out how to combine them so they work properly

Attention! Do not wear a Hanzo's bow with the Animal Form macro. it will break it! THX, plz continue!

First up Animal Form one.

Code: Select all

if skill 'ninjitsu' < 30
  cast 'Animal Form'
  waitforgump 3027724650 15000
  pause 500
  replygump 0xb477696a 1 110
  pause 3000
  cast 'Animal Form'
  pause 3000
elseif skill 'ninjitsu' = 30
  headmsg 'start Ninjitsu macro now please!'
  stop
endif


then once you hit 30 skill equip a hanzo's bow and start this macro, once you hit 55 real skill, unequip the hanzo's and continue with mirror image.

Code: Select all

 if skill 'ninjitsu' < 65
  cast 'Mirror Image'
  pause 3000
elseif skill 'ninjitsu' < 85
  cast 'Focus Attack'
  pause 3000
elseif skill 'ninjitsu' < 100
  cast 'Death Strike'
  pause 3000
elseif skill 'ninjitsu' >= 100
  headmsg 'Finished Ninjitsu!'
  stop
endif

if anyone knows of a way to combine the two so they work properly message me in game or on here or reply here please.

Re: [UOsteam] ninjitsu trainer

Posted: Sat Feb 27, 2016 9:36 am
by Tattersail
I had ninjitsu 23.3 with 'show real' flagged and in the first one I had to take out all you 'if this or that then something' to make it work. Also, when it worked I got an error while I was in animal form that made it skip. The last problem could be because I removed some stuff or it could be due to how the spell works, I'm not sure.

That said, in the form I'm using now, it keeps going till I hit 30, so I just left it running... :)

Re: [UOsteam] ninjitsu trainer

Posted: Sat Feb 27, 2016 4:39 pm
by Dyēus Phater
were you wearing a hanzo's bow at the time? because I've discovered even if you have show real clicked it will still mess it up.

Re: [UOsteam] ninjitsu trainer

Posted: Sat Feb 27, 2016 4:56 pm
by Dyēus Phater
Hrmmm, well last night it was working flawlessly, but now it wont recognize that i have the 23 skill.. though I have 28.4 and I got that far with it last night hahaha.. well I will remove the initial check for skill... just leave the last one where it stops the macro haha And that is done! Also, thank you for the feedback. It is much appreciated!

Re: [UOsteam] ninjitsu trainer

Posted: Sat Feb 27, 2016 7:23 pm
by Dyēus Phater
UPDATE! FIXED!

Re: [UOsteam] ninjitsu trainer

Posted: Thu Apr 21, 2016 12:24 am
by Incognito

Code: Select all

if skill 'ninjitsu' < 30
  cast 'Animal Form'
  waitforgump 3027724650 15000
  pause 500
  replygump 0xb477696a 1 110
  pause 3000
  cast 'Animal Form'
  pause 3000
elseif skill 'ninjitsu' < 65
  cast 'Mirror Image'
  pause 3000
elseif skill 'ninjitsu' < 85
  cast 'Focus Attack'
  pause 3000
elseif skill 'ninjitsu' < 100
  cast 'Death Strike'
  pause 3000
elseif skill 'ninjitsu' >= 100
  headmsg 'Finished Ninjitsu!'
  stop
endif