Recent content by paperninja

  1. P

    Player Written Guides The Ninja Summoner Build

    Healing Stone + Mirror Image Orion Script - function useHealingStone() { var healingStone = Orion.FindType('0x4078',any,'mainbag'); Orion.UseObject(healingStone); Orion.Wait(100); Orion.Cast('Mirror Image'); Orion.Wait(500); } Mystic Weapon and Gift of Life Macro -...
  2. P

    Player Written Guides The Ninja Summoner Build

    A UOAlive EXCLUSIVE Build. **Skills Required** Mysticism - 120 Focus - 100 Magery - 100 Spell Weaving - 100 Ninjitsu - 100 Tactics - 100 Anatomy - 100 Mastery - Mysticism ** You will want to...
  3. P

    Player Written Guides Odd Builds - Melee Tamer

    I've got a fun one for you try. Going to post a no jewelry version and you can go crazy from there. It can be a melee tamer as well. 110 - Animal Taming 110 - Animal Lore 85 - Veterinary 115 - Mysticism 100 - Tactics 100 - Chivalry 100 - Focus Key Takeaways - You're using Mysticism Mastery...
  4. P

    Orion Scripting

    - Train Hiding - function trainHiding() { const castSpellDelay = 4000; const skillValueGoal = 1000; const target = Player.Serial(); const useSkillDelay = 10250; var skillValue = Orion.SkillValue('hiding'); while (skillValue < skillValueGoal) {...
  5. P

    Orion Scripting

    - Train Chivalry - function trainChivalry() { const castSpellDelay = 4000; const skillValueGoal = 1000; const target = Player.Serial(); const useSkillDelay = 10250; var skillValue = Orion.SkillValue('Chivalry'); while (skillValue < skillValueGoal) { if...
  6. P

    Orion Scripting

    - Train Bushido - There is a skill gap in this one and you will have to run around lightning striking everything to jump that gap. function trainBushido() { const castSpellDelay = 3000; const skillValueGoal = 1000; const target = Player.Serial(); const useSkillDelay = 10250...
  7. P

    Orion Scripting

    - Train Necromancy - Found and tweaked for high gains system implemented on this shard. function trainNecromancy() { const castSpellDelay = 4000; const skillValueGoal = 1100; const target = Player.Serial(); const useSkillDelay = 10250; var skillValue =...
  8. P

    Orion Scripting

    - Attack Nearest Mob - Also has built in Honor and Lightning Strike. I don't know if those are working. I found this and made 0 changes. If I need to tweak this to get it working properly I'll update this thread. function attackNearestMob(){ var target, range = 12; var mobs =...
  9. P

    Orion Scripting

    -Auto Vet Care- Found this. It didn't work. I fixed the code errors and added the Mysticism functionality. May need tweaking, works great for me. This will use bandages and spells if you're close and only spells if you're further away. I could change it to not use spells up close, but I...
  10. P

    Orion Scripting

    -Use Healing Stone- I couldn't find this anywhere so I made a super simple script that searches by graphic, set item ID if found and uses item. I may go back and add some warnings if it's not found or low on points at a later date. You will need to create an Object under Lists called...
  11. P

    Orion Scripting

    Just a few scripts I've been using with Orion Client. I haven't found a ton of stuff on the internet, mostly trainers, and what I have found, I've often had to tweak it to actually get it to work (maybe written for an older version? or tranlated from Russian poorly). I thought I'd share what...