PQR - Rotation Bot menu

User Tag List

Page 779 of 779 FirstFirst ... 279679729775776777778779
Results 11,671 to 11,681 of 11681
  1. #11671
    b0nze's Avatar Member
    Reputation
    6
    Join Date
    Jun 2010
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there folks,

    How can I make PQR execute a Macro one once, but keep another Macro running in a loop?

    This is what I got so far, but it keeps spamming both. I tried some things now, but I really ain't got any clue about LUA

    Code:
    if PQR_InterruptStarted then
    		 RunMacro("SGIStart")
    		 RunMacro("SGI")
    		PQR_DelayRotation(3) 
    end

    PQR - Rotation Bot
  2. #11672
    korbon's Avatar Member
    Reputation
    2
    Join Date
    Dec 2008
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TrioxX View Post
    Sorry for asking, but i can't find an actual Arcane Mage (PVE) Profile. Can anyone suggest me something that works?
    you can see at Soapbox *Elite*(PAID) Profiles

  3. #11673
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by b0nze View Post
    Hey there folks,

    How can I make PQR execute a Macro one once, but keep another Macro running in a loop?

    This is what I got so far, but it keeps spamming both. I tried some things now, but I really ain't got any clue about LUA

    Code:
    if PQR_InterruptStarted then
    		 RunMacro("SGIStart")
    		 RunMacro("SGI")
    		PQR_DelayRotation(3) 
    end
    Code:
    if PQR_InterruptStarted then
         if not _ranamacro then
              _ranamacro = true
              RunMacro("SGIStart")
         end
         RunMacro("SGI")
         PQR_DelayRotation(3)
    end
    notes if you want the first macro ran again you'll need to set _ranamacro to false or nil or /reloadui and re-enable pqr

    Please if someone helped you donate rep to them.

  4. #11674
    b0nze's Avatar Member
    Reputation
    6
    Join Date
    Jun 2010
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +rep, thank you very much for your fast response

  5. #11675
    jarrito66's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2012
    Posts
    81
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question: Is it possible to create a profile (PVP) that plays off a target's class rather than just just reacting to certain spells. Like could I create a "druid" code/ability that would have a set list of reactions and counters to when I'm battling a druid? Not sure if this would have any benefit at all but I'm just testing a theory.

  6. #11676
    Terrorbytes's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, new PQR user here, I was wondering if anyone can help me with this code I am trying to do, and that if it possible to do.

    -- Target Check & Mana Check
    if UnitExists("focus") then
    if (UnitPower("player") / UnitPowerMax("player") * 100) <= 85 then
    CastSpellByName(GetSpellInfo(123040), "focus")
    end
    Is it possible to automatically cast Mindbender on my Focus Target(If it exists) when my Mana is at or below 85%?
    My code up top does not cast anything >,<
    Thanks!

  7. #11677
    anon667's Avatar Member
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Terrorbytes View Post
    Hello, new PQR user here, I was wondering if anyone can help me with this code I am trying to do, and that if it possible to do.



    Is it possible to automatically cast Mindbender on my Focus Target(If it exists) when my Mana is at or below 85%?
    My code up top does not cast anything >,<
    Thanks!
    Is that the code that's included in a single rotation ability (e.g. called Mindbender) or is it part of a bigger one (one that does more things inside)? If it's the first situation, check if you've set your Spell ID to 0 and your Target as Custom and make sure to "return true" if the ability is on the GCD (after CastSpellByName). You could also add a spell range check, so it will try to cast it only when the target is in range.

    Edit: Spell ID to 0 and Target as Custom on the left side of the editor window (where you can change the ability's name, Recast Delay etc.).
    Edit2: Also you can add a check if the spell is available for cast (PQR_SpellAvailable(123040)).
    Last edited by anon667; 09-16-2013 at 03:37 AM.

  8. #11678
    DiabloFan's Avatar Master Sergeant
    Reputation
    10
    Join Date
    Sep 2011
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You should only set the target to custom when using PQR_CustomTarget, which he's not. He can just leave it as target and it will work fine. Only thing that jumps out at me is that he's missing an end, adding a return true might be necessary too. If neither of those fix it then the spellID isn't correct, try changing it to CastSpellByName("Mindbender") and see if that works.

    Should look like this:

    PHP Code:
    local playerMana UnitPower("player") / UnitPowerMax("player") * 100

    if UnitExists("focus") and playerMana <= 85 then
        CastSpellByName
    ("Mindbender","focus")
    end 
    Don't add return true after CastSpellByName unless you add PQR_SpellAvailable as well.
    Last edited by DiabloFan; 09-16-2013 at 09:57 AM.

  9. #11679
    darkayo's Avatar Member
    Reputation
    3
    Join Date
    Jan 2008
    Posts
    192
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,
    I would like to add some NPC i have to heal in my profile ( Vaschiusa HPal ).
    I have NPC's id on wowhead.
    Any help please ?

  10. #11680
    unclesam77's Avatar Member
    Reputation
    7
    Join Date
    Mar 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    EDIT: SOLVED
    after spamming the update button..and renaming the wow -32 to wow.exe



    will someone upload the correct offsets? i tried downloading from the launcehr itself but i still get the "edit mode (no bot functionality) in the launcher...

    the offsets i downloaded is
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17359</CurrentWoWVersion>
    <WoWVersionOffset>0xC6652F</WoWVersionOffset>
    <PlayerName>0xEABE58</PlayerName>
    <PlayerClass>0xEABFD5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xB9DC5C</GetCurrentKeyBoardFocus>
    <GameState>0xD4D3FE</GameState>
    <Lua_DoStringAddress>0x4FFA0</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x40C69A</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xB91188</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xEABE18</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <ClntObjMgrGetActivePlayerObjAddress>0x4ED4</ClntObjMgrGetActivePlayerObjAddress>
    <LocalGUID>0xE0</LocalGUID>
    <FirstObject>0xCC</FirstObject>
    <NextObject>0x34</NextObject>
    <Descriptors>0x4</Descriptors>
    <Obj_TypeOffset>0xC</Obj_TypeOffset>
    <Obj_X>0x830</Obj_X>
    <Obj_TargetGUID>0x28</Obj_TargetGUID>
    <ClickTerrain>0</ClickTerrain>
    </Offsets>
    and
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17371</CurrentWoWVersion>
    <WoWVersionOffset>0xC6652F</WoWVersionOffset>
    <PlayerName>0xEABE58</PlayerName>
    <PlayerClass>0xEABFD5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xB9DC5C</GetCurrentKeyBoardFocus>
    <GameState>0xD4D3FE</GameState>
    <Lua_DoStringAddress>0x4FEDA</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x40C65B</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xB91188</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xEABE18</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <ClntObjMgrGetActivePlayerObjAddress>0x4ED4</ClntObjMgrGetActivePlayerObjAddress>
    <LocalGUID>0xE0</LocalGUID>
    <FirstObject>0xCC</FirstObject>
    <NextObject>0x34</NextObject>
    <Descriptors>0x4</Descriptors>
    <Obj_TypeOffset>0xC</Obj_TypeOffset>
    <Obj_X>0x830</Obj_X>
    <Obj_TargetGUID>0x28</Obj_TargetGUID>
    <ClickTerrain>0</ClickTerrain>
    </Offsets>
    thank you.
    Last edited by unclesam77; 09-16-2013 at 10:34 AM. Reason: solved!

  11. #11681
    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)
    If a mod reads this, please lock this thread.

    To everyone else, I have created a new thread at http://www.ownedcore.com/forums/worl...ation-bot.html (PQR - Rotation Bot)

  12. Thanks Rusisakov (1 members gave Thanks to Xelper for this useful post)

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 06:22 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search