Nice to see a new and clean post, hope this makes easier to find profiles
![]()
Nice to see a new and clean post, hope this makes easier to find profiles
![]()
new PTR Version ; ) anyone got the new Offset for it ?
hi
anyone know a great unholy profile ?
I have one single table with variable size, but it's not being changed too often. All other tables are of fixed size.
About delaying updates, I tought about updating tables using event handlers, like hooking COMBAT_LOG_EVENT_UNFILTERED and watching for buffs being applied or removed instead of checking for them every time.
What and how Jukeboxes work? can someone show me a sample code plz?
I found it thnx deadpanstiffy http://www.ownedcore.com/forums/worl...file-free.html ([PQR] PVP Spell Cast Fake/Juke Code (Any Profile) (FREE))
Last edited by Vinshom; 07-04-2013 at 07:19 AM.
I experienced issues when using PQR_UnitFacing in heavy adds fights. This function seems broken right now and alter badly framerate. Open your ability.lua and ctrl+f PQR_UnitFacing to make sure you do not have any of those. If none of those, might be related to table but... Your code seems clean.
Soapbox Rotations Developer
I want to make my warrior use taunt, like if my target isn't targeting me then cast taunt.. how am I gonna do that?
ye i'm useless ....
Help would be appreciated![]()
Last edited by CaptnHaddock; 07-04-2013 at 11:19 AM.
You could use API UnitThreatSituation - WoWWiki - Your guide to the World of Warcraft or simply check if your target is targeting you and then cast whatever your taunt is if it is targeting something else.
Former PQR Developer
I don't make use of PQR_UnitFacing(). It may be useful for some abilities of some classes but that does not applies to this profile I'm making.
Anyway, people are missing the point of my question. I ask for opinions on performance impact of Lua tables on PQR profiles and I get a link for LUA FOR BEGUINNERS. :P
I know I have to avoid table rehashing, I know that adding items to tables (making them grow) causes rehashing, what I need is to have feedback from people that may have had performance issues in their profiles due to using tables.
I want to avoid premature optimization. Lua is one of the fastest scripting languages so I wanted to push it and now I know that the code needs optimization, I just need to find out where and I don't want to do it by trial and error. Like, refactoring the whole code just to find out that tables were fine and the problem was elsewhere. I remember that Valma had a profile that made heavy use of tables and that it performed gracefully.
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
Kickmydog, Thanks so much, you are the best
That reminds me, any ideas on a fix for this.
It is for an auto misdirect to the tank when threat is low.PHP Code:
local InParty = GetNumGroupMembers()
if InParty > 0 and UnitInRaid("player") then
for i = 1, InParty, 1 do
local member = "party"..tostring(i)
if UnitGroupRolesAssigned(member) == "TANK"
and UnitThreatSituation(member,"target") ~= 3
then CastSpellByName(GetSpellInfo(34477),member)
end
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
I've made a few of my own profiles with random level characters. I decided to start a leveling profile for the Warrior from level 1. I'm already having issues. I can't seem to get anything going where I can Auto Attack to build rage for Heroic Strike.
I've tried making an Ability for Auto Attack (spell id 6603) and even for the Warrior's Attack (spell id 88163) but neither of them seem to do anything. It just sits there because enough rage isn't built up for Heroic Strike.
Any help getting an Auto Attack script would be greatly appreciated.
I am trying to make it available to where you just click an enemy and it attacks (unchecked requires combat)
Last edited by markbro; 07-05-2013 at 01:53 AM.