View Single Post
09-09-23, 01:53 PM   #12
cokedrivers
A Rage Talon Dragon Guard
 
cokedrivers's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 325
Originally Posted by Fizzlemizz View Post
If this is using LibClassicSpec then
Lua Code:
  1. [Paladin.Ret] = {
  2.     ID = Paladin.Ret,
  3.     name = "Retribution",
  4.     description = "",
  5.     icon = "",
  6.     background = "",
  7.     role = Role.Damager,
  8.     isRecommended = true,
  9.     primaryStat = Stat.Strength
  10.   },

and
Lua Code:
  1. local Stat = {
  2.   Strength = 1,
  3.   Agility = 2,
  4.   Stamina = 3,
  5.   Intellect = 4,
  6.   Spirit = 5
  7. }
No AP in Classic but Stat.Strength has an ID of 1
how do i pull the Paladin.Ret?
  Reply With Quote