[PQR] Nova Team Profiles menu

User Tag List

Page 141 of 157 FirstFirst ... 4191137138139140141142143144145 ... LastLast
Results 2,101 to 2,115 of 2342
  1. #2101
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for your fast response.

    Yes - the errors happening only in combat (PvP Arena). PQR does not stop. But sometimes pushed keys (alt e.g.) arent detected or some parts of the rotations wont be executed. So the errors affect my rotation in a way i cant predict. It seems random.

    I use slash commands only on one place:

    RunMacroText("/target Psyfiend&quot
    RunMacroText("/cast Power Word: Shield&quot
    RunMacroText("/petaggressive&quot
    RunMacroText("/petattack&quot

    normaly i use this to cancel auras: CancelUnitBuff("player", GetSpellInfo(81209))

    I hope thats enough

    [PQR] Nova Team Profiles
  2. #2102
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mk runmacro is slower than calling target() api as your padsing the string through the games macro event. Hard to explain atm as I'm on a phone but this may help you if not ill explain when I get home or bubba might help ya

    Also lua reads line by line so if your mod keys are lower in the rotation that's prob why they are skipping everytime you return true it tells pqr to goto the top and run down the list aagain
    Last edited by crystal_tech; 09-20-2013 at 09:46 AM.

    Please if someone helped you donate rep to them.

  3. #2103
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All right, thank you so far. I think im a experienced programmer. I`ve studied computer science and im pretty good in java, C and Visual Basic. I fully understand what you are saying. Only the language (english) is the thing that makes me look unexperienced :-P

    Sure i could Use target() but things like /petagressive has no spell id - runmacro in that case is the only way i know to trigger that ability. Also i know the LUA mechanic. I already have a full working profile with the sheuron engine, situational abilites, a textbased aura check for debuffs and buffs e.g. In that mountain of code i am looking for things that makes my code unsafe. I want to know what kind of code can cause a taint. If you know what i mean. I have no clue where to look and for what. I just see random errors in random situations (they happen only in combat though). The Errors dont make my profile stop - it just makes it unpredictable. Sometimes a ability dont work, sometimes (after errors) some keys dont work.

    In normal state the profile works flawless. If you want i can send it to you, so you can get a better impression (its full commented by me). The code ist by me and other writers arround (your code as well). But its fully private - non comercial i promise.

    Thank you for your time =)

  4. #2104
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrHeroe View Post
    All right, thank you so far. I think im a experienced programmer. I`ve studied computer science and im pretty good in java, C and Visual Basic. I fully understand what you are saying. Only the language (english) is the thing that makes me look unexperienced :-P

    Sure i could Use target() but things like /petagressive has no spell id - runmacro in that case is the only way i know to trigger that ability. Also i know the LUA mechanic. I already have a full working profile with the sheuron engine, situational abilites, a textbased aura check for debuffs and buffs e.g. In that mountain of code i am looking for things that makes my code unsafe. I want to know what kind of code can cause a taint. If you know what i mean. I have no clue where to look and for what. I just see random errors in random situations (they happen only in combat though). The Errors dont make my profile stop - it just makes it unpredictable. Sometimes a ability dont work, sometimes (after errors) some keys dont work.

    In normal state the profile works flawless. If you want i can send it to you, so you can get a better impression (its full commented by me). The code ist by me and other writers arround (your code as well). But its fully private - non comercial i promise.

    Thank you for your time =)
    When you say taint... do you fly understand what you mean? If you taint PQR, you wouldn't be able to use it at all anymore to cast spells and such.

    What kind of error are you getting? And does it seem completely random? Or does it seem to happen in certain situations the most? (Like someone just ran out of range mid cast, or the put on a glyphed buff, etc).... or do you suddenly start getting spammed that a random add-on is trying to use protected code?

    Sent from my SCH-I535 using Tapatalk 4
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  5. #2105
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    taint means... when a secure code becomes insecure... in order for PQR to work properly, it needs to remain in a secure state.... if you take data from an insecure place (ie a variable that is insecure) and then use it in a secure environment, the secure environment becomes insecure, and the codes that require a secure environment to work (like spell casts) will now cause an error saying x addon is trying to call protected stuff.....

    the reason i made my spell queueing system is.... A.) i wanted a frame (and that NEVER becomes tainted) B.) I wanted there to be checks in place for faulty spellid's and to be allowed to use spell names as well C.) i had a lot of this coded already, and dont like half done code laying around... so i changed the original purpose of the code to this

    the taint can come randomly from the SlashCMDList from wow itself... i can't figure out why it becomes tainted... but as some point (it seems random) it does
    That is my definition of taint =)

    And yes the symptom is that a random addon tries to use a protected code. Sorry that i did not mention it earlier. At the moment i cant see the script breaks on specific situations.

  6. #2106
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrHeroe View Post
    That is my definition of taint =)

    And yes the symptom is that a random addon tries to use a protected code. Sorry that i did not mention it earlier. At the moment i cant see the script breaks on specific situations.
    you can ship me you profile, i'll see if there's anything that stands out as questionable
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  7. #2107
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pets should have an api to handle that I think it's petfollow() and such

    Please if someone helped you donate rep to them.

  8. #2108
    brutus2105's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    15
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Need a Shadow Profile

  9. #2109
    Sebrina's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are there any plans to update the Survival hunter profile? Not rushing or anything just curios and thanks so much guys for what you do!

  10. #2110
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hunters will see some love this weekend. remember i'm trying for sunday releases now and i'm still working on pushing out a release of NCC for you guys.

    Please if someone helped you donate rep to them.

  11. #2111
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Me
    Updated Nova Druid. Added in some functionality to heal NPC and targets outside of raid group either by targeting, focus or mouseover.

    You just need to add NPC to a Special Heal Unit List by doing the following

    After the PQR_LoadLua code lines, add in

    table.insert(SpecialHealUnitList, NPC_UNITID_FROM_WOW_HEAD)

    just add as many of those in as you need

    if you want, send me you list and I shall add them by default...

    ** NOTE **
    I WAS UNABLE TO TEST THIS FEATURE PERSONALLY, IT MAY COMPLETELY BREAK THE PROFILE!!! YOU HAVE BEEN WARNED!!!
    alright as i said in my commit message through SVN... that new feature is UNTESTED... plz don't come back here and whine about it screwing up your attempts use are your own risks xD

    if it works and you have a list of UnitID's you would like me to add by default so you can give you of your table.insert lines you add each update, just pm me the list and i will gladly add them in ^_^
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  12. #2112
    supermann's Avatar Member
    Reputation
    12
    Join Date
    Oct 2008
    Posts
    87
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    short question - in your prot warrior profile, how i could enable AOE ? Right shift is for DPS Mode, but i couldnt find AOE hotkey.
    After all awesome work from your team, + rep

  13. #2113
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Left alt + left shift AOE switch

    Left alt + left CTRL heroic leap

    Please if someone helped you donate rep to them.

  14. #2114
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a note ncc is done and I'll be releasing it later today just got to write up all it does

    Please if someone helped you donate rep to them.

  15. #2115
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    Just a note ncc is done and I'll be releasing it later today just got to write up all it does
    Can't wait to see this released

    Sent from my SCH-I535 using Tapatalk 4
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

Similar Threads

  1. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  2. Replies: 11
    Last Post: 01-13-2013, 10:56 PM
  3. {PQR} Windwalker Raid Profile - Wanted
    By fish221171 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 10-18-2012, 02:01 AM
  4. PQR - DK Blood profiles - none of them work :(
    By zambeaux in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 10-09-2012, 07:44 AM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 10:08 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search