Dang, how old was your computer and why did it just die (too much dust stacked perhaps?)
Dang, how old was your computer and why did it just die (too much dust stacked perhaps?)
Could someone please post a link to Elemental Shaman profile? The only one, i've found here, is Cpoworks profile, but it doesn't work with Russian client.
__________
Found! Soapbox Profiles
List of profiles: show
Last edited by repa33; 05-10-2013 at 06:32 PM.
Does anyone remember how to create an ability counter?
I'm trying to get this ability to cast twice in a row only. Once it has the ability counter should reset.
I'm having issues where the ability casts three times in a row which is really annoying and a dps loss because the buff from casting twice doesn't go up in time and the third shot lines up.PHP Code:
if not UnitBuffID("player",53224)
or (select(7,UnitBuffID("player",53224)) - GetTime() < 2)
then CastSpellByName(GetSpellInfo(56641),nil)
return true end
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
Who can help me?
Offsets 15595 from Arena Tournament 4.3.4 is necessary to me.
The usual doesn't work
I and itself created, but I am not able.
Who can explain as me it to make?
As I wanted to do itself offsets for PTR
should do what you want, cast Steady Shot till we have 2 successful hits then reset the count and delay using for 10 seconds. you could use whatever to delay the profile but i have no idea how to play a hunter so i just used a time delay.PHP Code:
if not PQ_CombatLog then
Steady_Shot_Count = 0
Alpha_CombatLog = CreateFrame('Frame')
Alpha_CombatLog:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
function CombatLog_OnEvent(self, event, ...)
local type, _, sourceGUID, sourceNAME, _, _, destGUID, destNAME = select(2, ...)
if (event=="COMBAT_LOG_EVENT_UNFILTERED") then
if type == "SPELL_DAMAGE" and select(12, ...) == 56641
and sourceNAME == UnitName("player") then
Steady_Shot_Count = Steady_Shot_Count + 1
end end end
Alpha_CombatLog:SetScript("OnEvent", CombatLog_OnEvent)
PQ_CombatLog = true
end
if Delay_Steady_Shot < GetTime() then return false end
if Steady_Shot_Count == 2 then
Steady_Shot_Count = 0
Delay_Steady_Shot = (GetTime()) + 10 -- Delays Ability for 10 seconds
end
if not UnitBuffID("player",53224) or (select(7,UnitBuffID("player",53224)) - GetTime() < 2) then
CastSpellByName(GetSpellInfo(56641),nil)
return true
end
i did not test this but i use something similar for my double jeopardy code so it should work, let me know if it does =D.
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
Can someone point me in the direction of a really good Protection Warrior profile? Have been searching around and have a hard time finding one.
You didn't look very hard.. WoW Bot Maps And Profiles
KickMyDog - quick question for you.
Been using your profiles since Dragonsoul Heroic progress, and back in the day you used to have something in them to automatically pop Synapse Springs whenever it was off cooldown, this doesnt appear to be in your current profiles. Any chance this might make a return? Or you can point a complete coding newb like me in the right direction to add this manually?
Cheers
Thanks for the help. The problem is that with hunters the buff will go up when the shot hits, and PQR will read it when the buff goes up and stop repeat casting steady shot. However there is arrow flight time to target which is causing the third steady shot to happen. So I really need something that identifies when the ability is used rather than when the ability hits. If that makes sense.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017
Working on a version of Sheepmoon's Fire PVP profile...works very well; however need another set of eyes on it to clean up one or two spots. Very fun to play...reached a spot where Scorch moving has stopped working and cant figure out why. Message me if you wouldnt mind helping Thanks.
I'm in the process of working on one. This is not complete but is the most current with additions I've put into it. Seems to hold aggro better for me then the other profiles out
Just paste that in the "Download Profile from URL..." under Rotation Editor in PQRCode:http://nerder-pqr-profiles.googlecode.com/svn/PQRotation/prot.txt
Hello, is this code correct?
For me it does not work. Is for Healthstone.Code:if UnitHealth("player") < 80 then return true end
Last edited by Evgenij; 05-11-2013 at 10:10 AM.