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.

Most in One Whammy Trainer

Cimber

Wanderer
Hello folks! New to the shard and this is my first real post so please be gentle :). I have been working a lot with Tanya and have decided to make my own whammy. I wanted a nice macro that could simultaneously train all the skills required for Tanya's guide. This is designed for a non-vetted char. Start with 20 mana and it will train Bushido up to 97.5 of 115 (the other 12.5 pts is done with momentum strike), Train parrying up to 115, Train swords to 115 and Tactics to 115. It will lock chivalry and Spirit Speak at 70. It also trains resists with the tamer casting curse on you. I recommend having all scrolls purchased and eaten before starting the script. I also recommend a +20 stat scroll since they are affordable. Eat all your scrolls, purchase 5 cats, 20+ wooden shields, 15+ butcher knives and lock all skills your not training. Have a guild member with a cu that can heal the cu and cast curse on you constantly to train magic resist. Run the script and it will ask you for a practice target - target the cu. Make sure your guild member is casting curse and healing the cu and your off to the races!!! I hope this helps, let me know what you think!
Code:
//Most in One Whammy Trainer by Cimber
//This trainer will simultaneously train your
//Bushido, Chivalry, Parrying, Spirit Speak, Swords and Tactics
//Start with 50 parry and 50 tactics then train rest up to 40 in haven
//Get a guilded cu and set as practicetarget, have 5 kittens that can attack you.
//Have 20+ wooden shields and butcher knives in pack it auto-equips for you
//Do not wear armor this WILL destroy it, BE NAKED minus shield and weapon.
//Have Necro Mage in Lich Form with Dark Wisp cast Curse on you constantly and heal cu.
//Have atleast 20 mana for casting spells and SS
if not findalias 'practicetarget'
  promptalias 'practicetarget'
endif
while not dead
  // Check if layer slot is empty and search for weapon type on backpack
  if not @findlayer 'self' 1 and @findtype 0x13f6 'all' 'backpack'
    equipitem 'found' 1
    pause 750
  endif
  // Check if layer slot is empty and search for shield type on backpack
  if not @findlayer 'self' 2 and @findtype 0x1b7a 'all' 'backpack'
    equipitem 'found' 2
    pause 750
  endif
  if skill 'parrying' == 115 and mana > 10
    if skill 'spirit speak' < 70 
      useskill 'spirit speak'
    endif
  endif
  if diffhits 'self' > 5 and mana > 10
    useskill 'spirit speak'
  elseif hits == maxhits and skill 'parrying' < 115
    attack 'practicetarget'
    pause 500
    msg 'all kill'
    waitfortarget 1000
    target 'self'
  endif
  if hits < 20
    msg 'all stop'
    msg 'all stay'
  endif
  attack 'practicetarget'
  if mana > 18
    if skill 'Bushido' < 60
      cast 'Confidence'
    elseif skill 'bushido' < 75
      cast 'Counter Attack'
    elseif skill 'bushido' < 97.5
      cast 'Evasion'
    endif
    if skill 'Chivalry' < 40
      cast 'Consecrate Weapon'
    elseif skill 'Chivalry' < 55
      cast 'Divine Fury'
    elseif skill 'Chivalry' < 70
      cast 'Enemy of One'
    endif
  endif
  if skill 'Chivalry' == 70
    setskill 'Chivalry' 'locked'
  endif
  if skill 'Spirit Speak' == 70
    setskill 'Spirit Speak' 'locked'
  endif
  if skill 'Bushido' == 97.5
    setskill 'Bushido' 'locked'
  endif
endwhile
 
Last edited:
Top