PQR - Rotation Bot menu

User Tag List

Page 40 of 116 FirstFirst ... 36373839404142434490 ... LastLast
Results 586 to 600 of 1739
  1. #586
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i think i got wrong offset or that function isnt fully completed and work not as intended. anyway better than nothing - i use it and happy
    <3 Xelper

    PQR - Rotation Bot
  2. #587
    Quesadilla's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2013
    Posts
    56
    Thanks G/R
    2/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Think the offset is right, its the same as:
    Spell_C__HandleTerrainClick - 0x38476E

  3. #588
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR_TargetArea was a beta function that was never properly implemented wasn't it ?

    AoE on unit was mentioned ages ago as part of PQR v3 which hasn't appeared yet

  4. #589
    Quesadilla's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2013
    Posts
    56
    Thanks G/R
    2/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yea my guess is not complete.
    It works, minus the resets settings part.

  5. #590
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    but it works, read my post some upper, as i saw no1 cared

  6. #591
    ZidaneT's Avatar Corporal
    Reputation
    6
    Join Date
    Jan 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Wildbreath View Post
    but it works, read my post some upper, as i saw no1 cared
    "shooting the patient" is the cure for any disease... but not the best cure

    It works, but it wipes out so much with it, I think I'll wait for xelper to fix it.

  7. #592
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    put all your settings in one addon like as i did:
    local f=CreateFrame('frame')
    f:RegisterEvent('PLAYER_ENTERING_WORLD')
    f:SetScript('OnEvent', function(self, event, ...)

    SetCvar('nameplateShowEnemies', 1)
    SetCvar('nameplateShowEnemies', 1)
    SetCvar('nameplateShowEnemyGuardians', 1)
    SetCvar('nameplateShowEnemyPets', 1)
    SetCvar('nameplateShowEnemyTotems', 1)
    SetCvar('nameplateShowFriendlyGuardians', 1)
    SetCvar('nameplateShowFriendlyPets', 1)
    SetCvar('nameplateShowFriendlyTotems', 1)

    end)
    all settings safe in PLAYER_ENTERING_WORLD session (portals and reloadui)

  8. #593
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Hey guys, who is responsible for maintaining PQInterface?

    Would be good if we could get a version flag added to the data file (PQR_PQI.lua), something of an oversight it would seem as people end up with different copies of the data file depending on which profile they last updated, and being a separate dependency that changes over time it would make sense to have checks on that as well as the addon version.

  9. #594
    wowmerq's Avatar Member
    Reputation
    4
    Join Date
    Oct 2013
    Posts
    46
    Thanks G/R
    6/3
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edited. /10
    Last edited by wowmerq; 02-10-2014 at 02:39 AM.

  10. #595
    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 Wildbreath View Post
    put all your settings in one addon like as i did:all settings safe in PLAYER_ENTERING_WORLD session (portals and reloadui)
    wipes more than an addon can restore, hince why is hidden lol. could backup your config.wtf file and bat script a launcher to copy from the known good to wow at launch each time.

    Please if someone helped you donate rep to them.

  11. #596
    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)
    I have a problem with /cancelaura, i need to cancel Elusive Brew buff only,
    but RunMacroText("/cancelaura "..GetSpellInfo(115308)) or CancelUnitBuff("player", GetSpellInfo(115308)) also cancels EB stacks. :(
    Last edited by WWF; 11-12-2013 at 10:13 PM.

  12. #597
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    try to use CancelUnitBuff function (before get index using spellId)
    Code:
    CancelAuraById = function(spellId)
    	local index = 1
    	while UnitAura('player', index, 'HELPFUL') do
    		if select(11, UnitAura('player', index, 'HELPFUL')) == spellId then
    			CancelUnitBuff('player', index, 'HELPFUL')
    			return
    		end
    		index = index + 1
    	end
    end
    Last edited by Wildbreath; 11-13-2013 at 01:37 AM.

  13. #598
    baaadie's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is anyone able to help me with some code, I would like to add Divine Storm to Xelper's ret paladin rotation for both single target and aoe when my T16 4 piece bonus procs as I use PQR without PQI.

    The proc is called Divine Crusader, and the spell ID is 144593 i think, from Item - Paladin T16 Retribution 4P Bonus - Spell - World of Warcraft

    Ive tried a couple of different things, like add a new ability in ability editor with code but it just freezes up my rotation when it gets to it and never casts divine storm

    Code:
    local spell = UnitCastingInfo("player")
    
    if UnitBuffID("player",144593)
    then
    	return true
    end

  14. #599
    fddbzz's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jan 2013
    Posts
    96
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i fix this
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.ComponentModel.Win32Exception (0x80004005): Only part of a ReadProcessMemory or WriteProcessMemory request was completed
    at System.Diagnostics.NtProcessManager.GetModuleInfos(Int32 processId, Boolean firstModuleOnly)
    at System.Diagnostics.ProcessManager.GetModuleInfos(Int32 processId)
    at System.Diagnostics.Process.get_Modules()
    at Magic.BlackMagic.Open(Int32 )
    at Magic.BlackMagic.OpenProcessAndThread(Int32 )
    at ...ctor(Int32 )
    at ..()
    at ..()
    at ..(Object , EventArgs )
    at System.Windows.Forms.Timer.OnTick(EventArgs e)
    at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    i got the latest net framework 4.5.1
    redownload pqr several times still get this problem
    the pqr can be loaded.. but when i try to enable to profile rotation, it wont let me.
    what weird is it let me enable to interrupt profile, but not the reg rotation profile
    Last edited by fddbzz; 11-13-2013 at 02:20 PM.

  15. #600
    jaa282's Avatar Member
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    80
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quick question I downloaded everything and installed like I read. Then When I tried to run it the PQI Remote isn't picking up and profiles I downloaded so it wont allow me to use anything. Any thoughts or comments?

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. [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
  3. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  4. [Release] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 11680
    Last Post: 09-16-2013, 07:47 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 01:32 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