Anyone got the PTR Offsets for 17124 ?
Anyone got the PTR Offsets for 17124 ?
You can force it to launch 32 bit if you delete wow_64.exe after you open the launcher.
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
Also looking for PTR offsets, anyone got them, or can someone tell me how to get them myself? =/
Hey guys, Thought I would share some code i thought of today. This bit turns off your CD toggle if your out of combat and your CDs are on.
Code:TurnOffCDsOutOfCombat = true --PQI setting or w/e if UnitAffectingCombat("player") then InCombat = true end if not UnitAffectingCombat("player") and TurnOffCDsOutOfCombat and UseCD --Cooldowns Toggle and InCombat then UseCD = false InCombat = false print("Hey man, I turned off your CDs because you left combat.") PQR_WriteToChat("Cooldowns: |cFFFF0000Disabled") end
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
Hmm well i've got IDA now and pointed it at the wow.exe and it's doing it's thing, unsure where to go from there though
17124 PTR offsets, untested.
https://www.dropbox.com/s/nz8m19z4vq...sets_17124.xml
Code:<?xml version="1.0" encoding="UTF-8"?> <Offsets> <CurrentWoWVersion>17124</CurrentWoWVersion> <WoWVersionOffset>0xD8A635</WoWVersionOffset> <PlayerName>0xFCF698</PlayerName> <PlayerClass>0xFCF815</PlayerClass> <GetCurrentKeyBoardFocus>0xCB2010</GetCurrentKeyBoardFocus> <GameState>0xE70C6E</GameState> <Lua_DoStringAddress>0x5C299</Lua_DoStringAddress> <Lua_GetLocalizedTextAddress>0x47DAFF</Lua_GetLocalizedTextAddress> <CVarBaseMgr>0xCA5540</CVarBaseMgr> <CVarArraySize>0x400</CVarArraySize> <ObjMgr>0xFCF658</ObjMgr> <CurMgr>0x462C</CurMgr> <LocalGUID>0xF0</LocalGUID> <FirstObject>0xCC</FirstObject> <NextObject>0x34</NextObject> <Descriptors>0x4</Descriptors> <Obj_TypeOffset>0xC</Obj_TypeOffset> <Obj_X>0x828</Obj_X> <Obj_TargetGUID>0x28</Obj_TargetGUID> <ClickTerrain>0</ClickTerrain> </Offsets>
Last edited by goldrush2k12; 07-01-2013 at 03:13 PM.
Thanks Sacred, working fine.
Can someone help me with a quick function to do the following:
Check my focus is casting 'Launch Sawblade' if so send a raid warning command with who the target of the sawblade is? Make sense? Would have to check by cast name as unsure of which of the 4 spell ids it is.
Then I can mod it and take it from there just for some PTR testingThanks in advance
What SpellID is it? Wowhead has many: launch sawblade - Wowhead Search
Edit: Nevermind you said you didn't know. I should have read the whole message.
Last edited by ozmodiar; 07-01-2013 at 03:53 PM.
Thanxx for PTR Offset
this should work tho i have not tested it:
the 5 ids included in the Spell_list are Launch Sawblade but you can add more spells to that list if you so desire and it will work. there is no way to tell the target of a casting spell so we must assume that the target is their target.PHP Code:
local Spell_list = { 144028, 143329, 143291, 143266, 143265 }
for i=1, #Spell_list do
if not UnitExists("focus") then return false end
local castName = UnitCastingInfo("focus")
local channelName = UnitChannelInfo("focus")
if channelName ~= nil then
--target is channeling a spell
--load the channel variables into the cast variables to make logic a little easier.
castName = channelName
end
if PQ_LastSentRW == nil then PQ_LastSentRW = 0 end
if castName then
if GetSpellInfo(Spell_list[i]) == castName and PQ_LastSentRW < GetTime() then
PQ_LastSentRW = GetTime() + 10 --only send out the msg every 10 seconds
local unitname = GetUnitName("focus")
local spellTarget = GetUnitName("focustarget")
--there is no way that i know of to get the target
--of a spell so we must assume that its their target!
RunMacroText("/rw "..unitname.." is casting "..castName.." on "..spellTarget)
end
end
end
let me know how this works and if you want anything added to it.
- Paint
EDIT: @osbornx22, not that i know of, tho you could try ignoring it after so many failed attempts until you get out of combat. i'm still somewhat new to PQR profiles but that is what i would do.
Last edited by paintpauller; 07-02-2013 at 05:09 AM.
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
Any way to distinguish between normal dk diseases and glyphed (undispellable) dk diseases?
Glyph of Enduring Infection - Spell - World of Warcraft
/run print(UnitDebuff("target", "Frostfieber"))
without glyph:
Frostfieber Interface\Icons\Spell_DeathKnight_FrostFever 0 Disease 30 32462.673 player nil nil 55095 false nil true 166
with glyph:
Frostfieber Interface\Icons\Spell_DeathKnight_FrostFever 0 Disease 30 32462.673 player nil nil 55095 false nil true 166
Its important for my ret paladin rotation, which spams
Cleanse - Spell - World of Warcraft
The Problem is a fail from blizzard. The glyph doesnt change the dispel type of the debuff from "Disease" to "None"![]()
Last edited by osbornx22; 07-02-2013 at 07:15 AM.