PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 672 of 779 FirstFirst ... 172572622668669670671672673674675676722772 ... LastLast
Results 10,066 to 10,080 of 11681
  1. #10066
    Subversor's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there the possibility of there being an x64 PQR release?

    PQR - Rotation Bot
  2. #10067
    chk's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dominium View Post
    Hmm does anyone happen to have the offset for patch 4.3.4?

    Thanks
    Here's every offset available Download Offsets.7z from Sendspace.com - send big files the easy way

  3. #10068
    Weird0's Avatar Contributor
    Reputation
    137
    Join Date
    Jan 2009
    Posts
    352
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Subversor View Post
    Is there the possibility of there being an x64 PQR release?
    if things havent changed (didnt follow the thread) no there is not and there never will be

  4. #10069
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Subversor View Post
    Is there the possibility of there being an x64 PQR release?
    Nope, not really any reason to put in the extra work for Xelper when WoW runs perfectly fine in x86.
    Former PQR Developer

  5. #10070
    xentec6's Avatar Private
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, i suppose you guiys are right, maybe at extreme ilvl it will shine? im just in the 460 range, ill re-download it and go again! lol let me run some longer dummy fights.

  6. #10071
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone else have problems with the rotations not actually starting, even though it says it has? Everything seems loads correctly, and PQR prints to chat that X profile is started, but it does not start attacking. This has only happened to me tonight, but it happened all night. Even after a computer, WoW, and PQR restart.

    Sent from my Galaxy S3 using Tapatalk 2

  7. #10072
    Sovietpanda's Avatar Member
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    Nope, not really any reason to put in the extra work for Xelper when WoW runs perfectly fine in x86.
    Not really true, I get around 20-30% more FPS when I have WoW running in x64

  8. #10073
    Antedeus's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I asked this question in the question forums, but it seems this thread may be the faster way for an answer. Is there a way to use a global variable between abilities? I've tried _G, set/getglobal, even tried a set/get function in a lua file on the first ability and can't seem to carry a global from ability to ability. Any help would be appreciated.

  9. #10074
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Antedeus View Post
    I asked this question in the question forums, but it seems this thread may be the faster way for an answer. Is there a way to use a global variable between abilities? I've tried _G, set/getglobal, even tried a set/get function in a lua file on the first ability and can't seem to carry a global from ability to ability. Any help would be appreciated.
    very simple, this is a local variable:
    local variable = 10

    this is a global variable:
    variable = 10

    all global variables will remain valid till the toon loges out or does a /reload.

    btw the same goes for functions, a function with local infront of it is local and without its a global function.

    hope this helps =D

    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

  10. #10075
    Antedeus's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    very simple, this is a local variable:
    local variable = 10

    this is a global variable:
    variable = 10

    all global variables will remain valid till the toon loges out or does a /reload.

    btw the same goes for functions, a function with local infront of it is local and without its a global function.

    hope this helps =D
    I'll go back and look and make sure I'm not screwing it up. I do know the difference between the two [local/global] in declaration. But just doing simple stuff like declaring the global: testvar =1 in the first ability, and then PQR_WriteToChat(testvar) in the 2nd ability generates no output of 1.

  11. #10076
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Antedeus View Post
    I'll go back and look and make sure I'm not screwing it up. I do know the difference between the two [local/global] in declaration. But just doing simple stuff like declaring the global: testvar =1 in the first ability, and then PQR_WriteToChat(testvar) in the 2nd ability generates no output of 1.
    To do that...
    1st ability:
    ToPrint = "hello world!"
    2nd ability:
    PQR_WriteToChat(ToPrint)

    edit: PQR_WriteToChat could be disabled, I would use print(ToPrint) over PQR_WriteToChat
    Last edited by paintpauller; 06-05-2013 at 11:43 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

  12. #10077
    elconiglio's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to "cancelaura" other than using RunMacroText?
    I'm trying to do the feral druid shift out when someone is casting Hibernate or Scare Beast on him.

  13. #10078
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by elconiglio View Post
    Is there a way to "cancelaura" other than using RunMacroText?
    I'm trying to do the feral druid shift out when someone is casting Hibernate or Scare Beast on him.
    this should do it:
    CancelUnitBuff("player", GetSpellInfo( Spell ID ))
    =D

    some helpfull resources:
    World of Warcraft API - WoWWiki - Your guide to the World of Warcraft
    docs/api categories - World of Warcraft Programming: A Guide and Reference for Creating WoW Addons

    wow wiki: more detail, incomplete list
    wow programing: complete list, simplified detail

    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

  14. #10079
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by elconiglio View Post
    Is there a way to "cancelaura" other than using RunMacroText?
    I'm trying to do the feral druid shift out when someone is casting Hibernate or Scare Beast on him.
    mb CancelUnitBuff - World of Warcraft Programming: A Guide and Reference for Creating WoW Addons

  15. #10080
    Axercis's Avatar Member
    Reputation
    4
    Join Date
    Sep 2012
    Posts
    72
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way for a profile to detect when a player is falling? Was going to write a function that would automatically deploy the goblin glider flight form when knocked off a cliff or dismounted.

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 03:19 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