i think i got wrong offset or that function isnt fully completed and work not as intended. anyway better than nothing - i use it and happy
<3 Xelper
i think i got wrong offset or that function isnt fully completed and work not as intended. anyway better than nothing - i use it and happy
<3 Xelper
Think the offset is right, its the same as:
Spell_C__HandleTerrainClick - 0x38476E
PQR_TargetArea was a beta function that was never properly implemented wasn't it ?
AoE on unit was mentioned ages ago as part of PQR v3 which hasn't appeared yet
Yea my guess is not complete.
It works, minus the resets settings part.
but it works, read my post some upper, as i saw no1 cared![]()
put all your settings in one addon like as i did:all settings safe in PLAYER_ENTERING_WORLD session (portals and reloadui)local f=CreateFrame('frame')
f:RegisterEvent('PLAYER_ENTERING_WORLD')
f:SetScript('OnEvent', function(self, event, ...)
SetCvar('nameplateShowEnemies', 1)
SetCvar('nameplateShowEnemies', 1)
SetCvar('nameplateShowEnemyGuardians', 1)
SetCvar('nameplateShowEnemyPets', 1)
SetCvar('nameplateShowEnemyTotems', 1)
SetCvar('nameplateShowFriendlyGuardians', 1)
SetCvar('nameplateShowFriendlyPets', 1)
SetCvar('nameplateShowFriendlyTotems', 1)
end)
Hey guys, who is responsible for maintaining PQInterface?
Would be good if we could get a version flag added to the data file (PQR_PQI.lua), something of an oversight it would seem as people end up with different copies of the data file depending on which profile they last updated, and being a separate dependency that changes over time it would make sense to have checks on that as well as the addon version.
Edited. /10
Last edited by wowmerq; 02-10-2014 at 02:39 AM.
I have a problem with /cancelaura, i need to cancel Elusive Brew buff only,
but RunMacroText("/cancelaura "..GetSpellInfo(115308)) or CancelUnitBuff("player", GetSpellInfo(115308)) also cancels EB stacks. :(
Last edited by WWF; 11-12-2013 at 10:13 PM.
try to use CancelUnitBuff function (before get index using spellId)Code:CancelAuraById = function(spellId) local index = 1 while UnitAura('player', index, 'HELPFUL') do if select(11, UnitAura('player', index, 'HELPFUL')) == spellId then CancelUnitBuff('player', index, 'HELPFUL') return end index = index + 1 end end
Last edited by Wildbreath; 11-13-2013 at 01:37 AM.
Is anyone able to help me with some code, I would like to add Divine Storm to Xelper's ret paladin rotation for both single target and aoe when my T16 4 piece bonus procs as I use PQR without PQI.
The proc is called Divine Crusader, and the spell ID is 144593 i think, from Item - Paladin T16 Retribution 4P Bonus - Spell - World of Warcraft
Ive tried a couple of different things, like add a new ability in ability editor with code but it just freezes up my rotation when it gets to it and never casts divine storm
Code:local spell = UnitCastingInfo("player") if UnitBuffID("player",144593) then return true end
how do i fix this
i got the latest net framework 4.5.1See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.
************** Exception Text **************
System.ComponentModel.Win32Exception (0x80004005): Only part of a ReadProcessMemory or WriteProcessMemory request was completed
at System.Diagnostics.NtProcessManager.GetModuleInfos(Int32 processId, Boolean firstModuleOnly)
at System.Diagnostics.ProcessManager.GetModuleInfos(Int32 processId)
at System.Diagnostics.Process.get_Modules()
at Magic.BlackMagic.Open(Int32 )
at Magic.BlackMagic.OpenProcessAndThread(Int32 )
at ...ctor(Int32 )
at ..()
at ..()
at ..(Object , EventArgs )
at System.Windows.Forms.Timer.OnTick(EventArgs e)
at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
redownload pqr several times still get this problem
the pqr can be loaded.. but when i try to enable to profile rotation, it wont let me.
what weird is it let me enable to interrupt profile, but not the reg rotation profile
Last edited by fddbzz; 11-13-2013 at 02:20 PM.
Quick question I downloaded everything and installed like I read. Then When I tried to run it the PQI Remote isn't picking up and profiles I downloaded so it wont allow me to use anything. Any thoughts or comments?