Former PQR Developer
Update to the Nova_Frame
*edit*
Note to Profile Devs....... Nothing has changed for you guys and how you send the frame your code, or get code back from the same.... so this is purely Cosmetic in the changes...... also the lua file size is smaller![]()
I'm a complete beginner to this as well but this is what I came up with:
It works but it can probably be refined some more by the experienced coders here if they feel like it.PHP Code:
-------------------------------------------------------------------------------
-- Sunsong Ranch
-------------------------------------------------------------------------------
local VehicleCastName = UnitCastingInfo('vehicle')
local VineSlam = GetSpellInfo(116084)
if IsPossessBarVisible() or UnitHasVehicleUI('player') then
if VehicleCastName == VineSlam then
RunMacroText("/click PetActionButton2")
else
RunMacroText("/click PetActionButton1")
end
end
Last edited by TheBolivianGuy; 01-30-2013 at 02:14 PM.
i got it working
Last edited by sc00p1; 01-27-2013 at 05:21 PM.
Is there anyway to make a custom table and put enemy names in it? So i can put dots on everyone that gets close to me and not have to put my mouse over them? And then have away to reset it.
If someone could code something like that. It would be awesome!!!!!!!! TY!!!
Ok i got the code but it just says We just added ... to the Custom Healing Table. Where do I put the Nova_CustomT = { } in my profile? I just have it at the top.
PHP Code:
local Nova_CustomT = { }
--------------------------------------
-- Adding Players to Custom Table
--------------------------------------
if IsRightControlKeyDown()
and UnitIsEnemy("mouseover", "player")
and UnitExists("mouseover")
then
for i=1, #Nova_CustomT do
if Nova_CustomT[i].GUID and Nova_CustomT[i].GUID == UnitGUID("mouseover") then
return false
end
end
table.insert(Nova_CustomT, { GUID = UnitGUID("mouseover") } )
if not GetCVarBool("Nova_Recording") then
PQR_WriteToChat("We just added "..UnitName("mouseover").." to the Custom Healing Table.", "Alert")
end
return true
end
--------------------------------------
-- Removing Players from Custom Table
--------------------------------------
if IsRightAltKeyDown()
and UnitExists("mouseover")
and UnitIsEnemy("mouseover", "player")
then
for i=1, #Nova_CustomT do
if Nova_CustomT[i].GUID and Nova_CustomT[i].GUID == UnitGUID("mouseover") then
if not GetCVarBool("Nova_Recording") then
PQR_WriteToChat("We just removed "..UnitName(Nova_CustomT[i].Unit).." from the Custom Healing Table.", "Alert")
end
table.remove(Nova_CustomT, i)
return true
end
end
end
Very small update
KMD_All_Hunter_Rotations_v19.zip
This will slightly improve the BM profile.
i) Fixed using Cobra Shot during Bestial Wrath
ii) If Kill Command & Bestial Wrath are available, it should in all cases use Bestial Wrath first before Kill Command. In some instances it would use Kill Command before hand thus delaying Bestial Wrath activation.
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
Can someone help me please?
I want to create a function that does something like this:
If someone whispers me "shattering throw", I want PQR to cast shattering throw.
Is this possible?
TYVM!