PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 593 of 779 FirstFirst ... 93493543589590591592593594595596597643693 ... LastLast
Results 8,881 to 8,895 of 11681
  1. #8881
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok guys I been having issues making the DK talent Conversion work in a pvp profile. Below is the code snippet where I have the nova frame call to w/e hp variable calls to use the spell and make sure i have at least 40 rp to cast it.
    I will post both the edited nova frame from leetjerk and the nova frame conversion ability i created.

    Nova Frame: COenabled and CO health are the cvars for Conversion:
    Code:
    if PQR_RotationStarted == true then	PQR_RotationStarted = false
    	
    	-- Tables
    	Nova_ValueCheck = {
    		[1] =	{ Var1 = nil,	Text = "Cooldowns",				Var2 = nil, },
    		[2] =	{ Var1 = 35,	Text = "Healthstone",			Var2 = 1 },
    		[3] =	{ Var1 = 95,	Text = "Death Siphon",			Var2 = 0 },
    		[4] =	{ Var1 = 90,	Text = "Death Strike",			Var2 = 1 },
    		[5] =	{ Var1 = nil,	Text = "Others",				Var2 = nil },
    		[6] =	{ Var1 = nil,	Text = "Trinket 01",			Var2 = 0 },
    		[7] =	{ Var1 = nil,	Text = "Trinket 02",			Var2 = 0 },
    		[8] =	{ Var1 = nil,	Text = "Gloves",				Var2 = 0 },
    		[9] =	{ Var1 = nil,	Text = "Auto Racial Use",		Var2 = 1 },
    		[10] =	{ Var1 = nil,	Text = "CD: Boss Only",			Var2 = 1 },
    		[11] =	{ Var1 = 90,	Text = "Conversion",			Var2 = 0 },		
    	}
    	Nova_CooldownCheck = {
    		[1]	=	{ Mod = 16,		Text = "Death n Decay",			Var1 = 1},
    		[2]	=	{ Mod = 4,		Text = "Pestilence",			Var1 = 1},
    		[3]	=	{ Mod = 3,		Text = "Lichborne",				Var1 = 1},
    		[4]	=	{ Mod = 6,		Text = "Raise Ally",			Var1 = 1},
    		[5]	=	{ Mod = 8,		Text = "AoE Rotation",			Var1 = 1},
    		[6]	=	{ Mod =	2,		Text = "Pause 1",				Var1 = 1},
    		[7]	=	{ Mod =	1,		Text = "Pause 2",				Var1 = 1}
    	}
    	
    	-- CVar Registration
    	for i=1,#Nova_ValueCheck do
    		if GetCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_")) == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_"), Nova_ValueCheck[i].Var1)
    		end
    		if GetCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_").."_Enabled") == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_").."_Enabled", Nova_ValueCheck[i].Var2)
    		end
    	end
    	for i=1,#Nova_CooldownCheck do
    		if GetCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_")) == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_"), Nova_CooldownCheck[i].Mod)
    		end
    		if GetCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_").."_Enabled") == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_").."_Enabled", Nova_CooldownCheck[i].Var1)
    		end
    	end
    
    
    function Update_Nova()
    	-- CVar Translations
    	-- Cooldowns
    	
    	HSenabled 		= GetCVarBool("Nova_Healthstone_Enabled")
    	HShealth 		= tonumber(GetCVar("Nova_Healthstone"))
    	
    	COenabled 		= GetCVarBool("Nova_Conversion_Enabled")
    	COhealth 		= tonumber(GetCVar("Nova_Conversion"))
    	
    	DSSenabled 		= GetCVarBool("Nova_Death_Siphon_Enabled")
    	DSShealth 		= tonumber(GetCVar("Nova_Death_Siphon"))
    	
    	DSenabled		= GetCVarBool("Nova_Death_Strike_Enabled")
    	DShealth		= tonumber(GetCVar("Nova_Death_Strike"))
    	
    	T01enabled		= GetCVarBool("Nova_Trinket_01_Enabled")
    	T02enabled		= GetCVarBool("Nova_Trinket_02_Enabled")
    	GLOenabled		= GetCVarBool("Nova_Gloves_Enabled")		
    	
    	RAenabled = GetCVarBool("Nova_Auto_Racial_Use_Enabled")
    	CDenabled = GetCVarBool("Nova_CD:_Boss_Only_Enabled")
    	
    	DNDenabled = GetCVarBool("Nova_Death_n_Decay_Enabled")
    	DNDHotkey = tonumber(GetCVar("Nova_Death_n_Decay"))
    	
    	PEenabled = GetCVarBool("Nova_Pestilence_Enabled")
    	PEHotkey = tonumber(GetCVar("Nova_Pestilence"))
    	
    	LBenabled = GetCVarBool("Nova_Lichborne_Enabled")
    	LBHotkey = tonumber(GetCVar("Nova_Lichborne"))
    	
    	BREZenabled = GetCVarBool("Nova_Raise_Ally_Enabled")
    	BREZHotkey = tonumber(GetCVar("Nova_Raise_Ally"))
    	
    	AoEHotkey = tonumber(GetCVar("Nova_AoE_Rotation"))
    	PHotkey = tonumber(GetCVar("Nova_Pause_1"))
    	PHotkey2 = tonumber(GetCVar("Nova_Pause_2"))	
    	
    end
    	
    	-- Load LUA files
    	if PQR_LoadLua ~= nil then
    		if PQR_LoadLua("PQR_Nova_Data.lua") == false then
    			PQR_WriteToChat("|cffb73737You're missing PQR_Nova_Data.lua - Make sure it's in your Data folder! The Rotation has been halted.|cffffffff", "Error")
    			PQR_StopRotation()
    			return true
    		end
    		if PQR_LoadLua("PQR_Nova_Frame.lua") == true then
    			MiniMapCreation()
    			
    			-- Slash Commands
    			SLASH_NOVAFRAME1 = "/novaframe"
    			SLASH_NOVAFRAME2 = "/nova"
    			function SlashCmdList.NOVAFRAME(msg, editbox)
    				if Setup == nil then
    					Setup = true
    					FrameCreation(Nova_ValueCheck, Nova_CooldownCheck, "2H FROST", "HOTKEYS")
    				end
    				if not Nova_Frame:IsShown() then Nova_Frame:Show() else Nova_Frame:Hide() end
    			end
    		end
    	end
    end
    Nova Conversion Ability- have it set to Target "player" on the panel on the left side:
    Code:
    if COenabled ~= 1 then return false end
    
    
    
    	if PlayerHP <= COhealth
    	and IsSpellKnown(Conversion)
    	
    	and UnitPower("player") >= 40
    then
    	CastSpellByName(GetSpellInfo(Conversion))
    	return true
    end
    the spell never fires off even if i set the hp variable to 95% for debugging reasons. It does not even show up in pqi.

    Also conversion is in my spell list with a spell id of 119975
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

    PQR - Rotation Bot
  2. #8882
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    ok guys I been having issues making the DK talent Conversion work in a pvp profile. Below is the code snippet where I have the nova frame call to w/e hp variable calls to use the spell and make sure i have at least 40 rp to cast it.
    I will post both the edited nova frame from leetjerk and the nova frame conversion ability i created.

    Nova Frame: COenabled and CO health are the cvars for Conversion:
    Code:
    if PQR_RotationStarted == true then	PQR_RotationStarted = false
    	
    	-- Tables
    	Nova_ValueCheck = {
    		[1] =	{ Var1 = nil,	Text = "Cooldowns",				Var2 = nil, },
    		[2] =	{ Var1 = 35,	Text = "Healthstone",			Var2 = 1 },
    		[3] =	{ Var1 = 95,	Text = "Death Siphon",			Var2 = 0 },
    		[4] =	{ Var1 = 90,	Text = "Death Strike",			Var2 = 1 },
    		[5] =	{ Var1 = nil,	Text = "Others",				Var2 = nil },
    		[6] =	{ Var1 = nil,	Text = "Trinket 01",			Var2 = 0 },
    		[7] =	{ Var1 = nil,	Text = "Trinket 02",			Var2 = 0 },
    		[8] =	{ Var1 = nil,	Text = "Gloves",				Var2 = 0 },
    		[9] =	{ Var1 = nil,	Text = "Auto Racial Use",		Var2 = 1 },
    		[10] =	{ Var1 = nil,	Text = "CD: Boss Only",			Var2 = 1 },
    		[11] =	{ Var1 = 90,	Text = "Conversion",			Var2 = 0 },		
    	}
    	Nova_CooldownCheck = {
    		[1]	=	{ Mod = 16,		Text = "Death n Decay",			Var1 = 1},
    		[2]	=	{ Mod = 4,		Text = "Pestilence",			Var1 = 1},
    		[3]	=	{ Mod = 3,		Text = "Lichborne",				Var1 = 1},
    		[4]	=	{ Mod = 6,		Text = "Raise Ally",			Var1 = 1},
    		[5]	=	{ Mod = 8,		Text = "AoE Rotation",			Var1 = 1},
    		[6]	=	{ Mod =	2,		Text = "Pause 1",				Var1 = 1},
    		[7]	=	{ Mod =	1,		Text = "Pause 2",				Var1 = 1}
    	}
    	
    	-- CVar Registration
    	for i=1,#Nova_ValueCheck do
    		if GetCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_")) == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_"), Nova_ValueCheck[i].Var1)
    		end
    		if GetCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_").."_Enabled") == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_ValueCheck[i].Text,"%s","_").."_Enabled", Nova_ValueCheck[i].Var2)
    		end
    	end
    	for i=1,#Nova_CooldownCheck do
    		if GetCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_")) == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_"), Nova_CooldownCheck[i].Mod)
    		end
    		if GetCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_").."_Enabled") == nil then
    			RegisterCVar("Nova_"..string.gsub(Nova_CooldownCheck[i].Text,"%s","_").."_Enabled", Nova_CooldownCheck[i].Var1)
    		end
    	end
    
    
    function Update_Nova()
    	-- CVar Translations
    	-- Cooldowns
    	
    	HSenabled 		= GetCVarBool("Nova_Healthstone_Enabled")
    	HShealth 		= tonumber(GetCVar("Nova_Healthstone"))
    	
    	COenabled 		= GetCVarBool("Nova_Conversion_Enabled")
    	COhealth 		= tonumber(GetCVar("Nova_Conversion"))
    	
    	DSSenabled 		= GetCVarBool("Nova_Death_Siphon_Enabled")
    	DSShealth 		= tonumber(GetCVar("Nova_Death_Siphon"))
    	
    	DSenabled		= GetCVarBool("Nova_Death_Strike_Enabled")
    	DShealth		= tonumber(GetCVar("Nova_Death_Strike"))
    	
    	T01enabled		= GetCVarBool("Nova_Trinket_01_Enabled")
    	T02enabled		= GetCVarBool("Nova_Trinket_02_Enabled")
    	GLOenabled		= GetCVarBool("Nova_Gloves_Enabled")		
    	
    	RAenabled = GetCVarBool("Nova_Auto_Racial_Use_Enabled")
    	CDenabled = GetCVarBool("Nova_CD:_Boss_Only_Enabled")
    	
    	DNDenabled = GetCVarBool("Nova_Death_n_Decay_Enabled")
    	DNDHotkey = tonumber(GetCVar("Nova_Death_n_Decay"))
    	
    	PEenabled = GetCVarBool("Nova_Pestilence_Enabled")
    	PEHotkey = tonumber(GetCVar("Nova_Pestilence"))
    	
    	LBenabled = GetCVarBool("Nova_Lichborne_Enabled")
    	LBHotkey = tonumber(GetCVar("Nova_Lichborne"))
    	
    	BREZenabled = GetCVarBool("Nova_Raise_Ally_Enabled")
    	BREZHotkey = tonumber(GetCVar("Nova_Raise_Ally"))
    	
    	AoEHotkey = tonumber(GetCVar("Nova_AoE_Rotation"))
    	PHotkey = tonumber(GetCVar("Nova_Pause_1"))
    	PHotkey2 = tonumber(GetCVar("Nova_Pause_2"))	
    	
    end
    	
    	-- Load LUA files
    	if PQR_LoadLua ~= nil then
    		if PQR_LoadLua("PQR_Nova_Data.lua") == false then
    			PQR_WriteToChat("|cffb73737You're missing PQR_Nova_Data.lua - Make sure it's in your Data folder! The Rotation has been halted.|cffffffff", "Error")
    			PQR_StopRotation()
    			return true
    		end
    		if PQR_LoadLua("PQR_Nova_Frame.lua") == true then
    			MiniMapCreation()
    			
    			-- Slash Commands
    			SLASH_NOVAFRAME1 = "/novaframe"
    			SLASH_NOVAFRAME2 = "/nova"
    			function SlashCmdList.NOVAFRAME(msg, editbox)
    				if Setup == nil then
    					Setup = true
    					FrameCreation(Nova_ValueCheck, Nova_CooldownCheck, "2H FROST", "HOTKEYS")
    				end
    				if not Nova_Frame:IsShown() then Nova_Frame:Show() else Nova_Frame:Hide() end
    			end
    		end
    	end
    end
    Nova Conversion Ability- have it set to Target "player" on the panel on the left side:
    Code:
    if COenabled ~= 1 then return false end
    
    
    
    	if PlayerHP <= COhealth
    	and IsSpellKnown(Conversion)
    	
    	and UnitPower("player") >= 40
    then
    	CastSpellByName(GetSpellInfo(Conversion))
    	return true
    end
    the spell never fires off even if i set the hp variable to 95% for debugging reasons. It does not even show up in pqi.

    Also conversion is in my spell list with a spell id of 119975
    Did you try making it
    Code:
    CastSpellByName(GetSpellInfo(Conversion), "player")
    or on the ability editor part making it from target to player? I've ran into a few issues where it wouldnt cast spells like that unless I had the "player" in there

  3. #8883
    thepieisonfire's Avatar Member
    Reputation
    3
    Join Date
    Nov 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wheres the prot profile? I can only find ret.

  4. #8884
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will try adding player in the cast spell by name. And yes I have it set to player not target.

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  5. #8885
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you paintpauller! I really appreciate the help. Do you have a paypal?

    @thepieisonfire

    https://subversion.assembla.com/svn/...files/PALADIN/
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  6. #8886
    thepieisonfire's Avatar Member
    Reputation
    3
    Join Date
    Nov 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do I put the profile on? I dont know what url to put

  7. #8887
    thepieisonfire's Avatar Member
    Reputation
    3
    Join Date
    Nov 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nvm* figured it out It doesnt have a multi target though.

  8. #8888
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Thank you paintpauller! I really appreciate the help. Do you have a paypal?
    lol, i do but getting a updated 5.2 ret PVE profile is more then enough payment =D
    besides the list of spells is osbornx22 hard work and i just happened to know that it was on the forum and where. and it wouldnt feel right taking a donation for someone else's work.

    feel free to use the hand logic as i would just be adding it in after and may as well make it for the public!
    you could also add the following to work in arenas:
    PHP Code:
    local members GetNumGroupMembers()
    for 
    i=1,members do
        
    local customTarget
        local _
    type GetInstanceInfo()
        if 
    type == arena then
            customTarget 
    "arena"..i
            Help_run 
    true
        
    elseif IsInRaid() then
            customTarget 
    "raid"..i
            Help_run 
    true
        
    elseif IsInGroup() then
            customTarget 
    "party"..i
            Help_run 
    true
        
    else 
            
    Help_run false
        end 
    do let me know if you want help with the PQI, i am more then willing to help out with it!

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  9. #8889
    osbornx22's Avatar Sergeant
    Reputation
    14
    Join Date
    Nov 2009
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx but i decided not to use the 2-MB-list, because its simply too big, its better to use this for PVP:

    Code:
    local buffs = {
    
    	-- Death Knight
    	
    	[108194] = "CC",		-- Asphyxiate
    	[115001] = "CC",		-- Remorseless Winter
    	[47476]  = "Silence",		-- Strangulate
    	[96294]  = "Root",		-- Chains of Ice (Chilblains)
    	[45524]  = "Snare",		-- Chains of Ice
    	[50435]  = "Snare",		-- Chilblains
    	[43265]  = "Snare",		-- Death and Decay (Glyph of Death and Decay) - no way to distinguish between glyphed spell and normal. :(
    	[115000] = "Snare",		-- Remorseless Winter
    	[115018] = "ImmuneCC",		-- Desecrated Ground
    	[48707]  = "ImmuneSpell",	-- Anti-Magic Shell
    	[48792]  = "ImmuneStun",		-- Icebound Fortitude
    	[49039]  = "ImmuneFear",		-- Lichborne	
    	
    	-- Death Knight Ghoul
    	
    	[91800]  = "CC",		-- Gnaw
    	[91797]  = "CC",		-- Monstrous Blow (Dark Transformation)
    	[91807]  = "Root",		-- Shambling Rush (Dark Transformation)
    	
    	-- Druid
    	
    	[113801] = "CC",		-- Bash (Force of Nature - Feral Treants)
    	[102795] = "CC",		-- Bear Hug
    	[33786]  = "Immune",		-- Cyclone
    	[99]     = "CC",		-- Disorienting Roar
    	[2637]   = "CC",		-- Hibernate
    	[22570]  = "CC",		-- Maim
    	[5211]   = "CC",		-- Mighty Bash
    	[9005]   = "CC",		-- Pounce
    	[102546] = "CC",		-- Pounce (Incarnation)
    	[114238] = "Silence",		-- Fae Silence (Glyph of Fae Silence)
    	[81261]  = "Silence",		-- Solar Beam
    	[339]    = "Root",		-- Entangling Roots
    	[113770] = "Root",		-- Entangling Roots (Force of Nature - Balance Treants)
    	[19975]  = "Root",		-- Entangling Roots (Nature's Grasp)
    	[45334]  = "Root",		-- Immobilized (Wild Charge - Bear)
    	[102359] = "Root",		-- Mass Entanglement
    	[50259]  = "Snare",		-- Dazed (Wild Charge - Cat)
    	[58180]  = "Snare",		-- Infected Wounds
    	[61391]  = "Snare",		-- Typhoon
    	[127797] = "Snare",		-- Ursol's Vortex
    	[16914] = "Snare", -- Hurricane
    	[106996] = "Snare", -- Astral Storm
    	[102354] = "Snare", -- Faerie Swarm
    	
    	-- Druid Symbiosis
    	
    	[110698] = "CC",		-- Hammer of Justice (Paladin)
    	[113004] = "CC",		-- Intimidating Roar [Fleeing in fear] (Warrior)
    	[113056] = "CC",		-- Intimidating Roar [Cowering in fear] (Warrior)
    	[126458] = "Disarm",		-- Grapple Weapon (Monk)
    	[110693] = "Root",		-- Frost Nova (Mage)
    	[110617] = "Immune",		-- Deterrence (Hunter)
    	[110715] = "Immune",		-- Dispersion (Priest)
    	[110700] = "Immune",		-- Divine Shield (Paladin)
    	[110696] = "Immune",		-- Ice Block (Mage)
    	[110570] = "ImmuneSpell",	-- Anti-Magic Shell (Death Knight)
    	[110788] = "ImmuneSpell",	-- Cloak of Shadows (Rogue)
    	[113002] = "ImmuneSpell",	-- Spell Reflection (Warrior)	
    	[110575] = "ImmuneStun",		-- Icebound Fortitude (Death Knight)	
    	[133901] = "Silence",		-- Solar Beam	
    	
    	-- Hunter
    	
    	[117526] = "CC",		-- Binding Shot
    	[3355]   = "CC",		-- Freezing Trap
    	[1513]   = "CC",		-- Scare Beast
    	[19503]  = "CC",		-- Scatter Shot
    	[19386]  = "CC",		-- Wyvern Sting
    	[34490]  = "Silence",		-- Silencing Shot
    	[19185]  = "Root",		-- Entrapment
    	[128405] = "Root",		-- Narrow Escape
    	[35101]  = "Snare",		-- Concussive Barrage
    	[5116]   = "Snare",		-- Concussive Shot
    	[61394]  = "Snare",		-- Frozen Wake (Glyph of Freezing Trap)
    	[13810]  = "Snare",		-- Ice Trap
    	[19263]  = "Immune",		-- Deterrence
    	[120761] = "Snare", -- Glaive Toss
    	[121414] = "Snare", -- Glaive Toss	
    	
    	-- Hunter Pets
    	
    	[90337]  = "CC",		-- Bad Manner (Monkey)
    	[24394]  = "CC",		-- Intimidation
    	[126246] = "CC",		-- Lullaby (Crane)
    	[126355] = "CC",		-- Paralyzing Quill (Porcupine)
    	[126423] = "CC",		-- Petrifying Gaze (Basilisk)
    	[50519]  = "CC",		-- Sonic Blast (Bat)
    	[56626]  = "CC",		-- Sting (Wasp)
    	[50541]  = "Disarm",		-- Clench (Scorpid)
    	[91644]  = "Disarm",		-- Snatch (Bird of Prey)
    	[90327]  = "Root",		-- Lock Jaw (Dog)
    	[50245]  = "Root",		-- Pin (Crab)
    	[54706]  = "Root",		-- Venom Web Spray (Silithid)
    	[4167]   = "Root",		-- Web (Spider)
    	[50433]  = "Snare",		-- Ankle Crack (Crocolisk)
    	[54644]  = "Snare",		-- Frost Breath (Chimaera)
    	[54216]  = "ImmuneSnare",		-- Master's Call (root and snare immune only)
    	[136634] = "Root",		-- Narrow Escape
    	
    	-- Mage
    	
    	[108843] = "ImmuneSnare", -- Blazing Speed
    	[118271] = "CC",		-- Combustion Impact
    	[44572]  = "CC",		-- Deep Freeze
    	[31661]  = "CC",		-- Dragon's Breath
    	[118]    = "CC",		-- Polymorph
    	[61305]  = "CC",		-- Polymorph: Black Cat
    	[28272]  = "CC",		-- Polymorph: Pig
    	[61721]  = "CC",		-- Polymorph: Rabbit
    	[61780]  = "CC",		-- Polymorph: Turkey
    	[28271]  = "CC",		-- Polymorph: Turtle
    	[82691]  = "CC",		-- Ring of Frost
    	[102051] = "Root",		-- Frostjaw (also a root)
    	[55021]  = "Silence",	-- Silenced - Improved Counterspell
    	[122]    = "Root",		-- Frost Nova
    	[111340] = "Root",		-- Ice Ward
    	[11113]  = "Snare",		-- Blast Wave - gone?
    	[121288] = "Snare",		-- Chilled (Frost Armor)
    	[120]    = "Snare",		-- Cone of Cold
    	[116]    = "Snare",		-- Frostbolt
    	[44614]  = "Snare",		-- Frostfire Bolt
    	[113092] = "Snare",		-- Frost Bomb
    	[31589]  = "Snare",		-- Slow
    	[45438]  = "Immune",		-- Ice Block
    	[115760] = "ImmuneSpell",	-- Glyph of Ice Block
    	[84721] = "ImmuneSnare", 	-- Frozen Orb	
    	
    	-- Mage Water Elemental
    	
    	[33395]  = "Root",		-- Freeze
    	
    	-- Monk	
    	
    	[116849] = "Immune",	-- Life Cocoon
    	[140023] = "Disarm",		-- Ring of Peace
    	[137460] = "Silence",	-- Ring of Peace Silence		
    	[123393] = "CC",		-- Breath of Fire (Glyph of Breath of Fire)
    	[126451] = "CC",		-- Clash
    	[122242] = "CC",		-- Clash (not sure which one is right)
    	[119392] = "CC",		-- Charging Ox Wave
    	[117418] = "CC",		-- Fists of Fury
    	[119381] = "CC",		-- Leg Sweep
    	[115078] = "CC",		-- Paralysis
    	[117368] = "Disarm",	-- Grapple Weapon	
    	[116709] = "Silence",	-- Spear Hand Strike
    	[116706] = "Root",		-- Disable
    	[113275] = "Root",		-- Entangling Roots (Symbiosis)
    	[123407] = "Root",		-- Spinning Fire Blossom
    	[116095] = "Snare",		-- Disable
    	[118585] = "Snare",		-- Leer of the Ox
    	[123727] = "Snare",		-- Dizzying Haze
    	[123586] = "Snare",			-- Flying Serpent Kick	
    	[115176] = "Immune",	-- Zen Meditation
    	
    	-- Paladin
    	
    	[1044] = "ImmuneSnare", -- Hand of Freedom
    	[1022] = "ImmunePhysical", -- Hand of Protection
    	[105421] = "CC",		-- Blinding Light
    	[115752] = "CC",		-- Blinding Light (Glyph of Blinding Light)
    	[105593] = "CC",		-- Fist of Justice
    	[853]    = "CC",		-- Hammer of Justice
    	[119072] = "CC",		-- Holy Wrath
    	[20066]  = "CC",		-- Repentance
    	[10326]  = "CC",		-- Turn Evil
    	[31935]  = "Silence",		-- Avenger's Shield
    	[110300] = "Snare",		-- Burden of Guilt
    	[63529]  = "Snare",		-- Dazed - Avenger's Shield
    	[20170]  = "Snare",		-- Seal of Justice
    	[642]    = "Immune",		-- Divine Shield
    	
    	-- Priest
    	
    	[113506] = "Immune",		-- Cyclone (Symbiosis)
    	[605]    = "CC",		-- Dominate Mind
    	[88625]  = "CC",		-- Holy Word: Chastise
    	[64044]  = "CC",		-- Psychic Horror
    	[8122]   = "CC",		-- Psychic Scream
    	[113792] = "CC",		-- Psychic Terror (Psyfiend)
    	[9484]   = "CC",		-- Shackle Undead
    	[87204]  = "CC",		-- Sin and Punishment
    	[15487]  = "Silence",		-- Silence
    	[64058]  = "Disarm",		-- Psychic Horror
    	[113275] = "Root",		-- Entangling Roots (Symbiosis)
    	[87194]  = "Root",		-- Glyph of Mind Blast
    	[114404] = "Root",		-- Void Tendril's Grasp
    	[15407]  = "Snare",		-- Mind Flay
    	[47585]  = "Immune",		-- Dispersion
    	[114239] = "ImmuneSnare",	-- Phantasm
    	[47788] = "Immune",		-- Guardian Spirit
    	
    	-- Rogue
    	
    	[108212] = "ImmuneSnare", -- Burst of Speed
    	[2094]   = "CC",		-- Blind
    	[1833]   = "CC",		-- Cheap Shot
    	[1776]   = "CC",		-- Gouge
    	[408]    = "CC",		-- Kidney Shot
    	[113953] = "CC",		-- Paralysis (Paralytic Poison)
    	[6770]   = "CC",		-- Sap
    	[1330]   = "Silence",		-- Garrote - Silence
    	[51722]  = "Disarm",		-- Dismantle
    	[115197] = "Root",		-- Partial Paralysis
    	[3409]   = "Snare",		-- Crippling Poison
    	[26679]  = "Snare",		-- Deadly Throw
    	[119696] = "Snare",		-- Debilitation
    	[31224]  = "ImmuneSpell",	-- Cloak of Shadows	
    	
    	-- Shaman
    		
    	[116947] = "Snare", -- Earthbind
    	[76780]  = "CC",		-- Bind Elemental
    	[77505]  = "CC",		-- Earthquake
    	[51514]  = "CC",		-- Hex
    	[118905] = "CC",		-- Static Charge (Capacitor Totem)
    	[113287] = "Silence",		-- Solar Beam (Symbiosis)
    	[64695]  = "Root",		-- Earthgrab (Earthgrab Totem)
    	[63685]  = "Root",		-- Freeze (Frozen Power)
    	[3600]   = "Snare",		-- Earthbind (Earthbind Totem)
    	[77478]  = "Snare",		-- Earthquake (Glyph of Unstable Earth)
    	[8034]   = "Snare",		-- Frostbrand Attack
    	[8056]   = "Snare",		-- Frost Shock
    	[51490]  = "Snare",		-- Thunderstorm	
    	[118345] = "CC",		-- Pulverize
    	
    	-- Warlock
    	
    	[48020] = "ImmuneSnare", -- Demonic Circle: Teleport
    	[710]    = "CC",		-- Banish
    	[54786]  = "CC",		-- Demonic Leap (Metamorphosis)
    	[5782]   = "CC",		-- Fear
    	[118699] = "CC",		-- Fear
    	[130616] = "CC",		-- Fear (Glyph of Fear)
    	[5484]   = "CC",		-- Howl of Terror
    	[22703]  = "CC",		-- Infernal Awakening
    	[6789]   = "CC",		-- Mortal Coil
    	[132412] = "CC",		-- Seduction (Grimoire of Sacrifice)
    	[30283]  = "CC",		-- Shadowfury
    	[104045] = "CC",		-- Sleep (Metamorphosis)
    	[132409] = "Silence",		-- Spell Lock (Grimoire of Sacrifice)
    	[31117]  = "Silence",		-- Unstable Affliction
    	[18223]  = "Snare",		-- Curse of Exhaustion
    	[47960]  = "Snare",		-- Shadowflame
    	[17962] = "Snare", -- Conflagrate	
    	
    	-- Warlock Pets
    	
    	[89766]  = "CC",		-- Axe Toss (Felguard/Wrathguard)
    	[115268] = "CC",		-- Mesmerize (Shivarra)
    	[6358]   = "CC",		-- Seduction (Succubus)
    	[115782] = "Silence",		-- Optical Blast (Observer)
    	[24259]  = "Silence",		-- Spell Lock (Felhunter)
    	[118093] = "Disarm",		-- Disarm (Voidwalker/Voidlord)
    	
    	-- Warrior
    	
    	[7922]   = "CC",		-- Charge Stun
    	[118895] = "CC",		-- Dragon Roar
    	[5246]   = "CC",		-- Intimidating Shout (aoe)
    	[20511]  = "CC",		-- Intimidating Shout (targeted)
    	[132168] = "CC",		-- Shockwave
    	[107570] = "CC",		-- Storm Bolt
    	[132169] = "CC",		-- Storm Bolt
    	[105771] = "CC",		-- Warbringer
    	[18498]  = "Silence",		-- Silenced - Gag Order
    	[676]    = "Disarm",		-- Disarm
    	[107566] = "Root",		-- Staggering Shout
    	[1715]   = "Snare",		-- Hamstring
    	[12323]  = "Snare",		-- Piercing Howl
    	[129923] = "Snare",		-- Sluggish (Glyph of Hindering Strikes)
    	[137637] = "Snare",		-- Warbringer
    	[46924]  = "ImmuneSnare",		-- Bladestorm
    	[23920]  = "ImmuneSpell",	-- Spell Reflection
    	[114028] = "ImmuneSpell",	-- Mass Spell Reflection
    	[113344] = "Snare", -- Bloodbath
    	
    	-- Other
    	
    	[30217]  = "CC",		-- Adamantite Grenade
    	[67769]  = "CC",		-- Cobalt Frag Bomb
    	[30216]  = "CC",		-- Fel Iron Bomb
    	[107079] = "CC",		-- Quaking Palm
    	[13327]  = "CC",		-- Reckless Charge
    	[20549]  = "CC",		-- War Stomp
    	[25046]  = "Silence",		-- Arcane Torrent (Energy)
    	[28730]  = "Silence",		-- Arcane Torrent (Mana)
    	[50613]  = "Silence",		-- Arcane Torrent (Runic Power)
    	[69179]  = "Silence",		-- Arcane Torrent (Rage)
    	[80483]  = "Silence",		-- Arcane Torrent (Focus)
    	[129597] = "Silence",		-- Arcane Torrent (Chi)
    	[39965]  = "Root",		-- Frost Grenade
    	[55536]  = "Root",		-- Frostweave Net
    	[13099]  = "Root",		-- Net-o-Matic
    	[1604]   = "Snare",		-- Dazed
    	
    }
    attention: spells wich reduce dmg by 90% or something similar has type "Immune" (dispersion, cocoon, etc.)

    need to check/correct/test this list again and again, after every patch, etc. If someone finds a mistake, please tell me.
    Last edited by osbornx22; 03-24-2013 at 05:29 AM.

  10. #8890
    fryto's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im looking for a Resto Druid PVE profile plzzzzzzzzzzzzzzzzzz

  11. #8891
    ashdale's Avatar Corporal
    Reputation
    9
    Join Date
    Jun 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fryto, check out the Nova Teams profiles here http://www.ownedcore.com/forums/worl...-profiles.html Buba has a pretty good Rest Druid PVE profile there, Or Vachiusa's resto druid PVE profile located here http://www.ownedcore.com/forums/worl...ml#post2670185 One of those two should get you moving in the right direction.

  12. #8892
    chk's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anybody know how I can detect a debuff on me which ticks for damage? (And would knock me out of stealth)

  13. #8893
    proxximo1823's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looking for a good PVP fire or frost mage profile......????

  14. #8894
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fryto View Post
    Im looking for a Resto Druid PVE profile plzzzzzzzzzzzzzzzzzz
    Hi!

    Did you take a look in the Bots Maps & Profiles-section? You can find them there.

    http://www.ownedcore.com/forums/worl...-profiles.html

    http://www.ownedcore.com/forums/worl...-profiles.html

    Cheers

  15. #8895
    kokinha's Avatar Member
    Reputation
    2
    Join Date
    Mar 2013
    Posts
    47
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    plz rotation pve on 5.2( Assassination Rogue)????

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 02:34 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search