Originally Posted by
Bgreen12
anyone know of any lists of spellID's for developers...and what i mean about this is
a list of spell id's for slows, offensive cooldowns, roots, defensive cooldowns for each class?
like if you want to develop a profile it would be very easy to just import the list and then do a loop as such, for example slows:
Code:
local slows = { *** LIST OF SNARES WOULD GO HERE *** }
local bSlowed = false
for _,v in ipairs(slows) do
if UnitDebuffID("target",v)
then
bSlowed = true
end
end
if bSlowed == false
then return true end
it would just make it a lot easier to have organized lists like these for profile writers... if ones dont exist i could try my hand at writing them. i already did one for snares. and it just got me thinking about what if there was one for like useful spell id's to interrupt, spell reflect... etc.. sorry if you people dont understand what im talking about at all. its late here

Actually just did this myself. Don't know if it's all of them, but if you want to use them, go for it. Just went through all of my 85's and started casting everything I knew of and from descriptions to get the Debuff ID's.
PHP Code:
local slows = {
102355, --Faerie Swarm
339, --Roots
58180, --Infected Wounds
12323, --Piercing Howl
1715, --Hamstring
5116, --Concussive Shot
110300, --Judgement talent Debuff
118223, --Curse of Exhaustion
120, --Cone of Cold
31589, --Mage Slow
8056, --Frost Shock
116947, --Earthbind totem
50435, --Chillbanes
45524, --Chains of Ice
3409 --Crippling Poison
}
local freezes = {
122, --Frost Nova
102051, --Frostjaw
116, --Frostbolt Slow
33395, --Water Elemental Freeze
64685, --Earth totem
63685 --Frost Shock Freeze
}