[BETA] PQRotation - an automated ability priority queue. menu

User Tag List

Page 170 of 731 FirstFirst ... 70120166167168169170171172173174220270670 ... LastLast
Results 2,536 to 2,550 of 10955
  1. #2536
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Power and internet are back up finally... I will try to get the PTR update out tonight.

    [BETA] PQRotation - an automated ability priority queue.
  2. #2537
    BulletsFly's Avatar Sergeant
    Reputation
    46
    Join Date
    Aug 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Power and internet are back up finally... I will try to get the PTR update out tonight.
    Nice work was the snow that bad? D: i saw it on the news here in england and like 3 million homes were without power

    And am i allowed to know the offset patterns so i can update my own when i want to?

  3. #2538
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The main problem I think was that the leaves had not fallen off of the trees yet, so with the heavy snow the trees just got weighed down and they fell on tons of power lines... overall it seemed like the snow wasn't bad otherwise.

    I don't use patterns... but you can use my 'cheat sheet' that I use to help me find them for each PTR version.

    Code:
    CheatEngine:
    To find player name: (String)
    Enter player's name into the Search, login to a new character and search for that chracter's name.
    
    
    To find player class: (Array of Bytes)
    Enter player's class into the Search (number), switch to new character/class, search for that, rinse repeat until no others left.
                switch (myClass)
                {
                       
                    case "1":
                        return "WARRIOR";
    
    
                    case "2":
                        return "PALADIN";
    
    
                    case "3":
                        return "HUNTER";
    
    
                    case "4":
                        return "ROGUE";
    
    
                    case "5":
                        return "PRIEST";
    
    
                    case "6":
                        return "DEATHKNIGHT";
    
    
                    case "7":
                        return "SHAMAN";
    
    
                    case "8":
                        return "MAGE";
    
    
                    case "9":
                        return "WARLOCK";
    
    
                    case "11":
                        return "DRUID";
    
    
                    default:
                        return "";
                }
    
    
    
    
    MAGE -> HUNTER -> PALADIN -> PRIEST
    
    
    To find WoW Version: (String)
    Search for the WoW Version # 
    
    IDA6:
    
    GetCurrentKeyBoardFocus:
    Search for string: GetCurrentKeyboardFocus, go to associated function... first mov esi, dword_VALUE. VALUE is the offset (+400000)
    
    Lua_DoString: Search for byte sequence (6A 00 6A 00 51 2B C2 50  56) which is part of FrameScript_Execute in 14545/14809.
    - Should be only one.
    - arg_0 = ptr 8
    - arg_4 = ptr 0ch
    - arg_8 = ptr 10h
    -Has reference to FrameScript.cpp
    
    
    Lua_GetLocalized: Search for (55 8B EC 53 56 8B F1 8B 46 0C 8B 58 04  57 8B 38) which is part of FrameScript__GetLocalizedText in 14545/14809.
    arg_0= dword ptr  8
    arg_4= dword ptr  0Ch
    
    
    GameState search for 55 8B EC 83 7D 08 00 56 8B F1
    arg_0= dword ptr  8
    arg_4= dword ptr  0Ch
    It should be one of the first function it finds, you will see a reference like:
    
    
    cmp     byte_VALUE, 0
    VALUE is the offset +400000
    Last edited by Xelper; 11-02-2011 at 07:36 PM.

  4. #2539
    Noelpqr's Avatar Member
    Reputation
    3
    Join Date
    Oct 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by diesall View Post
    i was going to suggest a method parsing the GUID which is a 64bit integer so it cannot be converted to a number within itself , but you can disect it using bit.band and string.sub to find the pet identifier.

    if your "pet ability check "is running accross errors let me know, im sure i could code something up for you
    if i am not mistaken, that will only work on his lock since different lock has different guid for the same pet and u can check that by getting guild for the same pet from different locks
    Last edited by Noelpqr; 11-02-2011 at 07:37 PM.

  5. #2540
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And with that said, Offsets for PTR 14911:

    http://dl.dropbox.com/u/39925787/Offsets_14911.xml

  6. #2541
    diesall's Avatar Contributor
    Reputation
    197
    Join Date
    Jul 2011
    Posts
    208
    Thanks G/R
    1/46
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Noelpqr View Post
    if i am not mistaken, that will only work on his lock since different lock has different guid for the same pet and u can check that by getting guild for the same pet from different locks
    come to think of it your right there unique for pets, its npcs i was thinking of

    you could probably do it with a tooltip scan, failing the abaility check not working for you

  7. #2542
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fenetic View Post
    how do you switch from single target to aoe for a profile?
    Generally, the profile writer has to have created a separate AoE profile, which you then chose as Rotation 2 and assign a keybind to

    There are other ways to do so, namely by using IsLeftAltKeyDown() or something similar to trigger the casting of an AoE spell.

  8. #2543
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    idk if this has been brought up but in kickmydog's hunter profile has anyone else experienced the "targeting dead and not switching" thing?

  9. #2544
    united1's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still having the same issue with the updated one :\

    Win7 Ultimate x64

    Attachment 5135
    Last edited by united1; 11-03-2011 at 01:36 AM.

  10. #2545
    garai's Avatar Member
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, im using kickmydog's profile for MM hunter and would like to perform trap launchers while encouters or Tranq shot its har to do that while spell rotation is in progress, so my question is where can i put some code to pause rotation that I could use some other spells etc..?

  11. #2546
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trulygangster View Post
    idk if this has been brought up but in kickmydog's hunter profile has anyone else experienced the "targeting dead and not switching" thing?
    A bit more info would be helpful. What exactly are you doing? It should only switch target if your pet is engaging another target.

    Originally Posted by garai View Post
    Hi, im using kickmydog's profile for MM hunter and would like to perform trap launchers while encouters or Tranq shot its har to do that while spell rotation is in progress, so my question is where can i put some code to pause rotation that I could use some other spells etc..?
    You should switch to using Sheuron's profile which offers that support.

  12. #2547
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok for instance the group approaches a group of mobs it does the rotation but after killing just one mob continues to then target that mob you just killed instead of switching to another mob. like have to press escape to make it switch type stuff.

  13. #2548
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trulygangster View Post
    ok for instance the group approaches a group of mobs it does the rotation but after killing just one mob continues to then target that mob you just killed instead of switching to another mob. like have to press escape to make it switch type stuff.
    So is your pet engaging any other targets? Did you multi-shot them?

  14. #2549
    pepe2c's Avatar Member
    Reputation
    7
    Join Date
    Dec 2007
    Posts
    154
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any unholy DK profile?

  15. #2550
    lostwalker's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    *** Fixed User Error *** =(


    Is anyone having issues with the PQR loading today? I keep getting "Edit Mode (No Bot Functionality)" I have my lock logged in and it worked fine just last night. I'm using Version 1.1
    Last edited by lostwalker; 11-03-2011 at 04:47 PM.

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 08:31 PM. 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