Anyone have the new offsets, they must have just ninja'd an update?
Edit: Derp omit the above.
Last edited by Captncrunch; 04-07-2013 at 08:18 AM.
Anybody has an idea how to put glyphed exorcism in retribution rotation? When i use glyphed ID 122032 rotation goes on and totally skips exorcism. When i use non-glyphed ID 879 it uses it once and rotation stops.
Is there anyway in the Interrupt profiles to set it so some spells are immediately interrupted and some use the a math say 10-60%? I would like Mind Flay (Insanity) it be interrupted ASAP and a few other. TIA!
@mormord. Ive modified avery's ret profile to have a check if you have the glyph or not. Heres the profile.
https://dl.dropbox.com/u/34600079/retfix.zip
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
can anyone help me track down where this error is coming from ? I'm new to this still and I dunno where to start looking for the error
Code:ID: 1 Error occured in: Global Count: 1 Message: [string "local Brimstone = UnitBuffID("player", 1086..."] line 81: attempt to compare number with nil Debug: [string "local Brimstone = UnitBuffID("player", 1086..."]:81: ?() [string "if PQR_Addon_Loaded == nil then..."]:765: PQR_NextAbility() [string "if PQR_Addon_Loaded == nil then..."]:534: PQR_ExecuteRotation() [string "if PQR_Addon_Loaded == nil then..."]:287: [string "if PQR_Addon_Loaded == nil then..."]:214 Locals: Brimstone = "Fire and Brimstone" DarkSoul = nil Backdraft = "Backdraft" _ = "" _ = "Interface\Icons\Ability_Warlock_Backdraft" Stacks = 1 ImmolateAoE = "Immolate" _ = "" _ = "Interface\Icons\Ability_Mage_WorldInFlames" _ = 1 _ = "Magic" _ = 15.432 ImmolateAoEtimer = 19740.026 havoc = "Havoc" _ = "" _ = "INTERFACE\ICONS\ability_warlock_baneofhavoc" havocstacks = 3 SpellStart = 19616.454 SpellDuration = 120 darksoul = 0.70600000000195 CurrentCast = nil (*temporary) = nil (*temporary) = 137587 (*temporary) = true (*temporary) = 19749.868 (*temporary) = "attempt to compare number with nil"
it is a simple code for Jin'rokh berserker Hard Mode
how could i check "no raid members within 4 yards from me"?Code:-- Ionization if UnitDebuffID("player", 138733) ~= nil and UnitDebuffID("player", 138002) == nil and not isMoving then if PQR_SpellAvailable(122783) and IsSpellKnown(122783) then CastSpellByName(GetSpellInfo(122783), "player") end end
PQR_IsMoving() is working for me, I just tested with
Also, for your code try just doing like I did for the test,Code:if PQR_IsMoving() then print("MOVING") else print("Stationary") end
Dont really need the "target" as FoF doesnt require a target to castCode:if PQR_IsMoving() then return false else CastSpellByName(GetSpellInfo(113656)) end
Last edited by Nerder; 04-07-2013 at 02:06 PM.
@Nerder "target" it is copy/paste for all abilities, forget.
About PQR_IsMoving() - i said two pages earlier - is work, yes, but ("TIME") doesn't work, even with PQR_IsMoving(100000) it cause cast a spell after 0.1 sec not move - it is my problem.
ok, well all I did was change the () to (5) and it still works....
So are you trying to cast a certain time after moving? Because all IsMoving is for is to prevent spells like FoF from being cast while moving and the time will prolong as to when registering the "movement" PQR_IsMoving(0.1) would be a good one for spells like FoFCode:if PQR_IsMoving(5) then print("Moving") else print("Stationary") end
Last edited by Nerder; 04-07-2013 at 02:33 PM.
IDK how to help you there yet. I tried messing with other PQR functions and nothing. Only thing I can recommend to you is doing something like putting FoF on a keytoggle. I mean PQR is already taking away a lot of the struggles you would have to dps and move that I'm sure hitting a CTRL key or something wouldnt kill you =P
xD okay, i will try
what about link (PQR - Rotation Bot) ?