[BETA] PQRotation - an automated ability priority queue. menu

User Tag List

Page 477 of 731 FirstFirst ... 377427473474475476477478479480481527577 ... LastLast
Results 7,141 to 7,155 of 10955
  1. #7141
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey

    i´m looking for a shadow pvp set? i dont no maybe mentally released someone?
    i search the forum but i found nothing

    [BETA] PQRotation - an automated ability priority queue.
  2. #7142
    Tyron1989's Avatar Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok! all done here is the new Shaman Restro Profile!

    Hope it works! it needs testing and im at work so i need you guys to be the sheep! let me know if it works or not im online all day.

    Adikt_Restro_SHAMAN_Abilities:

    Code:
    <?xml version="1.0" encoding="utf-8" ?><SHAMAN><Ability><Name>Autotarget Low Hp (No Mo)</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>if UnitExists(&amp;quot;target&amp;quot;) 
      and UnitIsDead(&amp;quot;target&amp;quot;) == nil
      and UnitIsFriend(&amp;quot;player&amp;quot;, &amp;quot;target&amp;quot;) 
      and UnitCanCooperate(&amp;quot;player&amp;quot;,&amp;quot;target&amp;quot;)
      then PQR_CustomTarget = &amp;quot;target&amp;quot;
              PQR_CustomTargetHP = 100 * UnitHealth(&amp;quot;target&amp;quot;) / UnitHealthMax(&amp;quot;target&amp;quot;)
    else 
    
    PQR_CustomTarget = &amp;quot;player&amp;quot;
    PQR_CustomTargetHP = 100 * UnitHealth(&amp;quot;player&amp;quot;) / UnitHealthMax(&amp;quot;player&amp;quot;)
    local group = &amp;quot;party&amp;quot;
    local members = GetNumPartyMembers()
    lowhpmembers = 0
    local lowest = 100
    
    if GetNumRaidMembers() &amp;gt; 0 then
      group = &amp;quot;raid&amp;quot;
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      local memberhp = 100 * UnitHealth(member) / UnitHealthMax(member)
      if UnitInRange(member) 
      and UnitIsFriend(&amp;quot;player&amp;quot;, member)
      and UnitIsDeadOrGhost(member) == nil  then
        if UnitGroupRolesAssigned(member) == &amp;quot;TANK&amp;quot; then memberhp = memberhp - 1 end
        if UnitThreatSituation(member) == 3 then memberhp = memberhp - 3 end
        if UnitBuffID(member, 974) ~= nil then memberhp = memberhp + 7 end
        if memberhp &amp;lt; 85 then lowhpmembers = lowhpmembers +1 end
        if memberhp &amp;lt; lowest then
          PQR_CustomTarget = member
          lowest = memberhp
          PQR_CustomTargetHP = 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget)
        end
      end
    end
    
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Auto Stop Casting</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>local Spell = UnitCastingInfo(&amp;quot;player&amp;quot;)
    
    if PQR_CustomTargetHP &amp;gt; 96 then
    	if Spell == &amp;quot;Greater Healing Wave&amp;quot; or Spell == &amp;quot;Healing Wave&amp;quot; or Spell == &amp;quot;Healing Surge&amp;quot; then
    		SpellStopCasting()
    	end
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>EarthShield(Left Alt)</Name><Default>false</Default><SpellID>974</SpellID><Actions></Actions><Lua>if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Mouseover</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>EarthShield</Name><Default>false</Default><SpellID>974</SpellID><Actions></Actions><Lua>local EarthShieldTarget = nil
    local EarthShieldTank = nil
    local EarthShieldTarget = nil
    local group = &amp;quot;party&amp;quot;
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() &amp;gt; 0 then
      group = &amp;quot;raid&amp;quot;
      members = GetNumRaidMembers()
    end
    
    if group == &amp;quot;raid&amp;quot; and UnitExists(&amp;quot;focus&amp;quot;) then EarthShieldTarget = &amp;quot;focus&amp;quot; end
    if group == &amp;quot;party&amp;quot; then
     	for i = 1, members, 1 do
        		local member = group..tostring(i)
    		local EarthShield = UnitBuffID(member, 974)
    		if EarthShield ~= nil then EarthShieldTarget = member end
        		if UnitGroupRolesAssigned(member) == &amp;quot;TANK&amp;quot; and UnitIsDead(member) ~= 1 then 
    			EarthShieldTank = member
    			EarthShieldTankTarget = 1  
    		end
      	end
    end
    
    if EarthShieldTarget ~= nil then
    	local _, _, _, _, _, _, expire = UnitBuffID(EarthShieldTarget, 974)
    	expire = (expire  - GetTime())
    	if expire &amp;lt; 5 then
    		CastSpellByID(974, EarthShieldTarget)
    	end
    end
    
    if EarthShieldTankTarget and EarthShield == nil then
    	CastSpellByID(974, EarthShieldTank)
    end</Lua><RecastDelay>100</RecastDelay><Target>Player</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>AT Smart Low HP NMO</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>if not healinit then
    
      function CalculateHP(t)
        local incomingheal = 0
        if UnitGetIncomingHeals(t) then incomingheal = UnitGetIncomingHeals(t)  end
        return 100 * ( UnitHealth(t) + incomingheal ) / UnitHealthMax(t)
      end
    
      function SafeTarget(t)
        if IsSpellInRange(tostring(GetSpellInfo(635)),t) == 1 
        and UnitIsCharmed(t) == nil
        and UnitIsDeadOrGhost(t) == nil 
        and UnitCanCooperate(&amp;quot;player&amp;quot;,t) 
        and PQR_IsOutOfSight(t) == false 
        then return true end 
      end
    
      healinit = true
    
    end
    
    if SafeTarget(&amp;quot;target&amp;quot;) then 
      PQR_CustomTarget = &amp;quot;target&amp;quot; 
      PQR_CustomTargetHP = CalculateHP(&amp;quot;target&amp;quot;) 
    else 
      lowhpmembers = 0
      PQR_CustomTarget = &amp;quot;player&amp;quot;
      PQR_CustomTargetHP = CalculateHP(&amp;quot;player&amp;quot;)
      local group = &amp;quot;party&amp;quot;
      local members = GetNumPartyMembers()
      if GetNumRaidMembers() &amp;gt; 0 then group = &amp;quot;raid&amp;quot; members = GetNumRaidMembers() end
    
      for i = 1, members, 1 do
        local member = group..tostring(i)
        local memberhp = CalculateHP(member)
        if SafeTarget(member)  then
          if UnitGroupRolesAssigned(member) == &amp;quot;TANK&amp;quot; and UnitBuffID(member, 974) == nil  then memberhp = memberhp - 1 else memberhp = memberhp + 3  end
          if UnitThreatSituation(member) == 3 then memberhp = memberhp - 3 end
          if memberhp &amp;lt; 80 then lowhpmembers = lowhpmembers +1 end
          if memberhp &amp;lt; PQR_CustomTargetHP then
            PQR_CustomTarget = member
            PQR_CustomTargetHP = 100 * UnitHealth(PQR_CustomTarget) / UnitHealthMax(PQR_CustomTarget)
          end 
    
        end
      end
    
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Nature&amp;apos;s Swiftness</Name><Default>false</Default><SpellID>16188</SpellID><Actions></Actions><Lua>if PQR_CustomTargetHP &amp;lt; 30 and lowhpmembers &amp;gt;= 3 then
    	return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Mana Tide Totem</Name><Default>false</Default><SpellID>16190</SpellID><Actions></Actions><Lua>local myMana = 100 * UnitPower(&amp;quot;player&amp;quot;) / UnitPowerMax(&amp;quot;player&amp;quot;)
    
    if myMana &amp;lt; 65 then
    	return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Riptide</Name><Default>false</Default><SpellID>61295</SpellID><Actions></Actions><Lua>if PQR_CustomTargetHP &amp;lt; 90 then 
    	return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Chain Heal</Name><Default>false</Default><SpellID>1064</SpellID><Actions></Actions><Lua>local myMana = 100 * UnitPower(&amp;quot;player&amp;quot;) / UnitPowerMax(&amp;quot;player&amp;quot;)
    local CH = UnitBuffID(&amp;quot;player&amp;quot;, 1064)
    
    if lowhpmembers &amp;gt;= 2 and myMana &amp;gt;20 and PQR_IsMoving(1) == false and CH == nil then 
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>EarthLiving: Wep</Name><Default>false</Default><SpellID>51730</SpellID><Actions></Actions><Lua>local Elw = UnitBuffID(&amp;quot;player&amp;quot;, 51730)
    
    if Elw == nil then 
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Player</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>WaterSheild</Name><Default>false</Default><SpellID>52127</SpellID><Actions></Actions><Lua>local Ws = UnitBuffID(&amp;quot;player&amp;quot;, 52127)
    
    if Ws == nil then 
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Player</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Spirit Link</Name><Default>false</Default><SpellID>98008</SpellID><Actions></Actions><Lua>local myMana = 100 * UnitPower(&amp;quot;player&amp;quot;) / UnitPowerMax(&amp;quot;player&amp;quot;)
    local SL = UnitBuffID(&amp;quot;player&amp;quot;, 98008)
    
    if lowhpmembers &amp;gt;= 4 and myMana &amp;gt;20 and SL == nil then 
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Healing Surge</Name><Default>false</Default><SpellID>8004</SpellID><Actions></Actions><Lua>local TidalWaves = UnitBuffID(&amp;quot;player&amp;quot;, 51562, 51563, 51564)
    
    if PQR_CustomTargetHP &amp;lt; 28 and PQR_IsMoving(1) == false and PQR_IsCastingSpell(8004) == false then 
    	return true
    elseif PQR_CustomTargetHP &amp;lt; 70 and PQR_IsMoving(.1) and Infusion ~= nil then
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Greater Healing Wave</Name><Default>false</Default><SpellID>77472</SpellID><Actions></Actions><Lua>if PQR_CustomTargetHP &amp;lt; 58 and PQR_IsMoving(1) == false and PQR_IsCastingSpell(77472) == false then 
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Healing Wave</Name><Default>false</Default><SpellID>331</SpellID><Actions></Actions><Lua>if PQR_CustomTargetHP &amp;lt; 95 and PQR_IsMoving(1) == false and PQR_IsCastingSpell(331) == false then 
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Cleanse Spirit</Name><Default>false</Default><SpellID>51886</SpellID><Actions></Actions><Lua>if not DontDispel(PQR_CustomTarget) 
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(PQR_CustomTarget, i)
      while buff do
        if (bufftype == &amp;quot;Curse&amp;quot; or bufftype == &amp;quot;Magic&amp;quot;)
        and duration &amp;gt; 6 
        and count ~= 1 
        and UnitIsFriend(&amp;quot;player&amp;quot;,PQR_CustomTarget) 
        and UnitIsUnit(priordispell, PQR_CustomTarget)
        then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(PQR_CustomTarget, i)
      end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Cleanse Priority</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>if not DontDispel(PQR_CustomTarget) 
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(PQR_CustomTarget, i)
      while buff do
        if (bufftype == &amp;quot;Curse&amp;quot; or bufftype == &amp;quot;Magic&amp;quot;)
        and duration &amp;gt; 6 
        and count ~= 1 
        and UnitIsFriend(&amp;quot;player&amp;quot;,PQR_CustomTarget) 
        and UnitIsUnit(priordispell, PQR_CustomTarget)
        then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(PQR_CustomTarget, i)
      end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>-- sheuron special event--</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>-- Avoid sudden death on Ultraxion
    local fadingtime = select(7,UnitDebuffID(&amp;quot;player&amp;quot;,110070))
    if fadingtime and fadingtime - GetTime() &amp;lt; 1.3 then RunMacroText(&amp;quot;/click ExtraActionButton1&amp;quot;) end 
    
    -- Avoid Hour of Twilight on Ultraxion, Delete next 3 lines if you are working as tank
    local channelSpell, _, _, _, _, endTime = UnitCastingInfo(&amp;quot;boss1&amp;quot;)
    if channelSpell == GetSpellInfo(109417) and endTime/1000 - GetTime() &amp;lt; 1.3 
    then RunMacroText(&amp;quot;/click ExtraActionButton1&amp;quot;) end 
    
    -- Try to aim on Darkmoon Faerie Cannon
    local canontime = select(7,UnitBuffID(&amp;quot;player&amp;quot;,102116))
    if canontime and canontime - GetTime() &amp;lt; 1.15 then CancelUnitBuff(&amp;quot;player&amp;quot;,&amp;quot;Magic Wings&amp;quot;) end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Spirit Walk</Name><Default>false</Default><SpellID>79206</SpellID><Actions></Actions><Lua>if PQR_IsMoving == true and mytarget &amp;lt;50   then
    	return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Player</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Totems</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>local DB = UnitBuffID(&amp;quot;player&amp;quot;,61316)
    local AB = UnitBuffID(&amp;quot;player&amp;quot;,1459)
    local _, WaterTotem = GetTotemInfo(3)
    local _, FireTotem = GetTotemInfo(1)
    local _, AirTotem = GetTotemInfo(4)
    local _, EarthTotem = GetTotemInfo(2)
    local MQ = UnitBuffID(&amp;quot;player&amp;quot;, 49868)
    local MA = UnitBuffID(&amp;quot;player&amp;quot;, 24907)
    local HP = UnitBuffID(&amp;quot;player&amp;quot;, 53290)
    local IIT = UnitBuffID(&amp;quot;player&amp;quot;, 55610)
    local DA = UnitBuffID(&amp;quot;player&amp;quot;, 465)
    local ST = UnitBuffID(&amp;quot;player&amp;quot;, 8071)
    local BoM = UnitBuffID(&amp;quot;player&amp;quot;, 19740)
    local FI = UnitBuffID(&amp;quot;player&amp;quot;, 54424)
    
    if FireTotem == &amp;quot;&amp;quot; and  AirTotem == &amp;quot;&amp;quot; and EarthTotem == &amp;quot;&amp;quot; and WaterTotem == &amp;quot;&amp;quot; and incombat == 1  then
      SilentCast(66842)
      return true
    end
    
    if DB == nil and AB == nil  then
      SetMultiCastSpell (133,8227)
      if FireTotem == &amp;quot;&amp;quot; and incombat == 1  then
        SilentCast(8227)
        return true
      end
    else
      SetMultiCastSpell (133,3599)
      if FireTotem == &amp;quot;&amp;quot; and incombat == 1  then
        SilentCast(3599)
        return true
      end
    end
    
    if MQ == nil and MA == nil  then
      SetMultiCastSpell (136,3738)
      if AirTotem == &amp;quot;&amp;quot; and incombat == 1  then
        SilentCast(3738)
        return true
      end
    else
      if HP == nil and IIT == nil  then
        SetMultiCastSpell (136,8512)
        if AirTotem == &amp;quot;&amp;quot; and incombat == 1  then
          SilentCast(8512)
           return true        
        end
      end
    end
    
    
    if DA == nil then
      SetMultiCastSpell (134,8071)
      if EarthTotem == &amp;quot;&amp;quot; and incombat == 1  then
         SilentCast(8071)
        return true
      end
    else
       SetMultiCastSpell (134,8075)
       if EarthTotem == &amp;quot;&amp;quot; and incombat == 1  then
           SilentCast(8075)
          return true
       end
    end
    
    if  BoM == nil and FI == nil  then
      SetMultiCastSpell (135,5675)
      if WaterTotem == &amp;quot;&amp;quot; and incombat == 1  then
         SilentCast(5675)
         return true
      end
    else 
      SetMultiCastSpell (135,5394)
      if WaterTotem == &amp;quot;&amp;quot; and incombat == 1  then
          SilentCast(5394)
          return true
        end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability><Ability><Name>Lightning Bolt (Shift)</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions><Lua>local tt = UnitIsEnemy(&amp;quot;player&amp;quot;,targettoheal..&amp;quot;target&amp;quot;)
    local SwG = UnitBuffID(&amp;quot;player&amp;quot;, 79206)
    local lbtarget = nil
    
    if moving == 0 and incombat ~= nil  then 
      if UnitIsEnemy(&amp;quot;player&amp;quot;,&amp;quot;target&amp;quot;) then
         lbtarget = &amp;quot;target&amp;quot;     
      else
        for i = 1, members,1 do
          local member = group..tostring(i)
          if UnitInRange(member) and UnitGroupRolesAssigned(member) == &amp;quot;TANK&amp;quot; then
            if UnitIsEnemy(&amp;quot;player&amp;quot;,member..&amp;quot;target&amp;quot;)  then
               lbtarget = member..&amp;quot;target&amp;quot;
            end
          end
        end
       end
    end
    
    if lbtarget ~= nil then
       if UnitHasCC(lbtarget) == 0  then
         SilentCast(403,lbtarget)
        return true
      end
    end</Lua><RecastDelay>0</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability></SHAMAN>
    Adikt_Restro_SHAMAN_Rotations:

    Code:
    <?xml version="1.0" encoding="utf-8" ?><SHAMAN><Rotation><RotationName>Healing</RotationName><RotationDefault>false</RotationDefault><RotationList>-- sheuron special event--|AT Smart Low HP NMO|Auto Stop Casting|Autotarget Low Hp (No Mo)|Cleanse Priority|Cleanse Spirit|Chain Heal|EarthLiving: Wep|EarthShield|EarthShield(Left Alt)|Greater Healing Wave|Healing Surge|Healing Wave|Lightning Bolt (Shift)|Mana Tide Totem|Nature&amp;apos;s Swiftness|Riptide|Spirit Link|Spirit Walk|Totems|WaterSheild</RotationList><RequireCombat>false</RequireCombat><RotationNotes></RotationNotes></Rotation></SHAMAN>
    i'll admitte that i skipped over on the totems part of the code and just copied in from another profile but it should be ok.. went throug the rest with a tooth comb .... lets hope it doesnt need to be a nit comb.
    Last edited by Tyron1989; 03-08-2012 at 10:59 AM.

  3. #7143
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by misterneko View Post
    using xrnPQRProfiles.zip (the last version)... in my PVE Mage Arcane Profile...

    Don't attack automatically:

    DS Twilight Assault Drakes of Warmaster Blackhorn
    DS Limb Tentacles of Deathwing

    i'm using spanish wow
    When you activate rotation on spanish cliente you get this warning "enUS language pack is required to use this profile properly". But go ahead and ask in forums.

  4. #7144
    Tyron1989's Avatar Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Leonw View Post
    can anyone link me the download for PQRotation?
    if your asking this question... then here is my answer: click Start > My Computer > right click Local Disk (C) > Formatt (on the menu that appears) > new box will appear > tick quick formatt then "OK".

  5. #7145
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tyron1989

    So far it seems to be doing nothing. Got it loaded up and enabled, got message that its enabled but it isnt casting anything.

    No Water Shield, and not healing anything. Trying hitting and holding various keys to see if it would cast Lightning bolt or totems but nothing so far.

  6. #7146
    Tyron1989's Avatar Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    Tyron1989

    So far it seems to be doing nothing. Got it loaded up and enabled, got message that its enabled but it isnt casting anything.

    No Water Shield, and not healing anything. Trying hitting and holding various keys to see if it would cast Lightning bolt or totems but nothing so far.
    Aghh :@ how annoying and i was trying to be so carefull =[ try enabling requires combat thing. see if that does anything.

  7. #7147
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will do, running a dungeon on my dk, then will go back to shaman and try that

  8. #7148
    Tyron1989's Avatar Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    Will do, running a dungeon on my dk, then will go back to shaman and try that
    OK just had a quick look in the profile & Rotation editor ... remove AT smart low HP NMO - Cleanse priority - Cleanse Spirit and tick Requires combat.

    let me know asap

    remove Lightning bolt (shift) also see how that does.
    Last edited by Tyron1989; 03-08-2012 at 11:54 AM.

  9. #7149
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    I give this a test run today, I currently use Kez Resto profile and it works for me healing from 5 mans, through lfr and 10 man normal for guild I have had no issue.

    But never a bad thing to have more options, so will see how this one runs in a 5 man today.
    Coukld you possibly post kez resto shaman profile?

  10. #7150
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OK just had a quick look in the profile & Rotation editor ... remove AT smart low HP NMO - Cleanse priority - Cleanse Spirit and tick Requires combat.

    let me know asap

    remove Lightning bolt (shift) also see how that does.
    Still nothing, had to switch back to Kez as it wasnt healing anybody in group or casting shields

    Originally Posted by saga3180 View Post
    Coukld you possibly post kez resto shaman profile?
    Kez resto is posted here

    http://www.ownedcore.com/forums/worl...ml#post2125439 ([BETA] PQRotation - an automated ability priority queue.)

    To make it work rename those 2 files just throw Kez_ in front

    I made a small modificaton to it to make Earth Shield work the way I like, I will PM him and see if he minds me posting that

    Just makes it so it keeps Earth shield on your focus which for me is tank
    Last edited by abndrew82; 03-08-2012 at 12:55 PM.

  11. #7151
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by frII View Post
    Interesing moment,that this part of code doesnt exixst in sheurons mage profie.

    I alredy said.That i add name's of mobs in this "list".Didnt helped.
    Under "list" i mean
    I apologize, I added the first four lines to indicate which ability it corresponds to, but they're not actually in the code.

    Instead of adding more names to the list, have you tried deleting "Twilight Assault Drake", "Goriona", "Wing Tentacle" and "Arm Tentacle"? I don't really understand what's going on with that SpecialAggro function, but it looks like it's returning true for mobs with certain names, and as a result it's doing nothing because the Spell ID for this function is 0. It looks like it was meant to be some kind of function for controlling burn phases, but I see no mention of it. Try deleting the mob names and see what happens.

  12. #7152
    bobo's Avatar Member
    Reputation
    3
    Join Date
    Oct 2006
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tyron1989 did you try using Onya's resto profile? I've been using it for quite awhile and it is excellent.

  13. #7153
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bobo View Post
    Tyron1989 did you try using Onya's resto profile? I've been using it for quite awhile and it is excellent.
    Where is that one posted, I have been looking for it. Unless the one I am calling Kez isnt really his lol

    in my profile list I see 2 Onya ones but they are elemental
    Last edited by abndrew82; 03-08-2012 at 01:23 PM.

  14. #7154
    Kolaih's Avatar Member
    Reputation
    7
    Join Date
    Feb 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im getting an error trying to start the PQR.
    Been using it for a week or so, 1 month ago and now im trying to boot it up again.
    Vers 1.1.1 and i get Edit Mode ( No bot ) only ...

    Tried to search, saw nothing on this.
    Any advice?
    Ko

  15. #7155
    Tyron1989's Avatar Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i did try using it but it wasnt going well im only level 80 so that might be why i need to remove spirit walk and stuff maybe.

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 06:27 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search