[UOsteam] ninjitsu trainer

If you make a Client-side script you can publish it here for other players to use
Locked
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

[UOsteam] ninjitsu trainer

Post 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.
Last edited by Dyēus Phater on Sun Feb 28, 2016 5:55 pm, edited 6 times in total.
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
Tattersail
Master Scribe
Posts: 57
Joined: Wed Nov 25, 2015 8:22 am

Re: [UOsteam] ninjitsu trainer

Post 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... :)
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

Re: [UOsteam] ninjitsu trainer

Post 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.
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

Re: [UOsteam] ninjitsu trainer

Post 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!
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

Re: [UOsteam] ninjitsu trainer

Post by Dyēus Phater »

UPDATE! FIXED!
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
User avatar
Incognito
Apprentice Scribe
Posts: 18
Joined: Fri Apr 01, 2016 3:45 am

Re: [UOsteam] ninjitsu trainer

Post 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
Locked