Advertisement
Guest User

Untitled

a guest
Oct 14th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.90 KB | None | 0 0
  1. Ovale.defaut["MONK"] = [[
  2. Define(shuffle 115307)
  3.   SpellInfo(shuffle duration=6 )
  4.   SpellAddBuff(shuffle shuffle=1)
  5. Define(blackout_kick 100784)
  6.   SpellInfo(blackout_kick chi=2 )
  7.   SpellAddBuff(blackout_kick shuffle=1)
  8. Define(jab 100780)
  9.   SpellInfo(jab energy=40 chi=-1 )
  10. Define(dizzying_haze 123727)
  11.   SpellInfo(dizzying_haze duration=15)
  12.   SpellAddBuff(dizzying_haze dizzying_haze=1)
  13.  Define(weakened_blows 115798)
  14.   SpellInfo(weakened_blows duration=30)
  15.   SpellAddBuff(weakened_blows weakened_blows=1)
  16. Define(keg_smash 121253)
  17.   SpellInfo(keg_smash energy=40 chi=-1 cd=8)
  18.   SpellAddTargetDebuff(keg_smash dizzying_haze=1)
  19.   SpellAddTargetDebuff(keg_smash weakened_blows=1)
  20. Define(expel_harm 115072)
  21.   SpellInfo(expel_harm energy=40 chi=-1 cd=15)
  22. Define(tiger_power 125359)
  23.   SpellInfo(tiger_power duration=20 )
  24.   SpellAddBuff(tiger_power tiger_power=1)
  25. Define(power_guard 118636)
  26.   SpellInfo(power_guard duration=30 )
  27.   SpellAddBuff(power_guard power_guard=1)
  28. Define(tiger_palm 100787)
  29.   SpellInfo(tiger_palm)
  30.   SpellAddBuff(tiger_palm tiger_power=1)
  31.   SpellAddBuff(tiger_palm power_guard=1)
  32. Define(guard 115295)
  33.   SpellInfo(guard chi=2 cd=30)
  34.   SpellAddBuff(guard guard=1)
  35. Define(breath_of_fire 115181)
  36.   SpellInfo(breath_of_fire chi=2)
  37. Define(fortifying_brew 115203)
  38.   SpellInfo(fortifying_brew duration=20 cd=180)
  39.   SpellAddBuff(fortifying_brew fortifying_brew=1)
  40. Define(purifying_brew 119582)
  41.   SpellInfo(purifying_brew chi=1 cd=1)
  42. Define(elusive_brew 128939)
  43.   SpellInfo(elusive_brew duration=30 )
  44.   SpellAddBuff(elusive_brew elusive_brew=1)
  45. Define(elusive_brew_use 115308)
  46.   SpellInfo(elusive_brew_use duration=15 cd=9)
  47.   SpellAddBuff(elusive_brew_use elusive_brew=1)
  48. Define(legacy_of_the_emperor 115921)
  49.   SpellInfo(legacy_of_the_emperor duration=3600 )
  50.   SpellAddBuff(legacy_of_the_emperor legacy_of_the_emperor=1)
  51. Define(stance_of_the_sturdy_ox 115069)
  52.   SpellAddBuff(stance_of_the_sturdy_ox stance_of_the_sturdy_ox=1)
  53.  
  54.  
  55.  
  56.  
  57. AddIcon mastery=1 help=main
  58. {
  59.     if not InCombat()
  60.     {
  61.         if not BuffPresent(str_agi_int any=1) Spell(legacy_of_the_emperor)
  62.         unless Stance(1) Spell(stance_of_the_sturdy_ox)
  63.     }
  64.     if HealthPercent() <30 Spell(fortifying_brew)
  65.     if Level() >= 45 and HealthPercent() <35 Spell(expel_harm)
  66.     if BuffStacks(elusive_brew) >10 Spell(elusive_brew_use)
  67.     if HealthPercent() <40 Spell(guard)
  68.     if SpellCooldown(guard) <5 and BuffStacks(power_guard) <3 Spell(tiger_palm)
  69.     Spell(guard)
  70.     if not BuffPresent(shuffle) Spell(blackout_kick)
  71.     if target.DebuffRemains(weakened_blows) <5 and Chi() <3 Spell(keg_smash)
  72.     if BuffStacks(tiger_power) <3 or BuffRemains(tiger_power) <=3 Spell(tiger_palm)
  73.     if HealthPercent() <100 and Chi() <4 Spell(expel_harm)
  74.     Spell(blackout_kick)
  75.     Spell(keg_smash)
  76.     if HealthPercent() <100 Spell(expel_harm)
  77.     if Energy() >={40 +{{SpellCooldown(keg_smash) +1 } /11 } } Spell(jab)
  78. }
  79. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement