PQR - Rotation Bot menu

User Tag List

Page 30 of 116 FirstFirst ... 26272829303132333480 ... LastLast
Results 436 to 450 of 1739
  1. #436
    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 MrHeroe View Post
    try putting 100 * UnitHealth("player") / UnitHealthMax("player") into a variable. Then use () to split the mathematic actions:



    Keep in mind, if the unit in UnitHealthMax("player") not exists, it returns 0 so you divide with 0!

    PQR_CustomTarget is a global var - thats intended, right?

    Your code seems okay, maybe a ability with a higher priority fires every time. Did you put this abiliy into your rotation? =)
    Keep in mind that this is a rather ridiculous warning. At what point when you are playing your character will your character not exist? This is a fair warning when you are using things other than "player", like "target", but your "player" is always going to be there.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

    PQR - Rotation Bot
  2. #437
    TheLuBu's Avatar Contributor
    Reputation
    83
    Join Date
    Jun 2012
    Posts
    164
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrHeroe View Post
    Hey lua gods,

    this ability works but creates an tainted code error with raidframe bla bla bla (i think you know what i mean). As you can see below i try some things to locate the source of evil ;P

    It should go through my team - if a member (not me) has an enemy target -> cast Mindbender on it. Everytime executed this code creates a little error but works as intended. Can you help me?
    Please, please, please, use code intend, it makes it that more comfortable to read

    Its hard to check, but where do you get IsLineOfSight from?
    What is benBenderTalent?

    -- EDIT --
    YOu could check, if your membertable is still valid
    Code:
    if UnitExists(benMembers[i].Unit then)
    as your first if statement
    Last edited by TheLuBu; 10-25-2013 at 08:36 AM.

  3. #438
    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)
    Okay - now i got it how to post code =)

    Sure i can Check if my Unit exists, but thats already done in the update of my member table. I think it has something to do with >> benMembers[i].Unit.."target" << but i dont know. In Germany we say "thats the end of my latin" i have no clue ;P

    Code:
    if ( isSpellReady(123040) or isSpellReady(34433) ) and not BenButtonPushed then -- BenButtonPushed just a global to check if a button was pushed
    	local maxPower = UnitPowerMax("player")
    	if maxPower == 0 then -- yeah sensless! Just a test if its really never nil
    		maxPower = 300000
    	end
    	
    	local PlayerMana3 = 100 * ( UnitPower("player") / UnitPowerMax("player") )
    
    	if PlayerMana3 == nil then
    		PlayerMana3 = 100
    	end
    
    	-- use mindbender on cooldown on any enemy that has no cc on it that breaks
    	for i=1, #benMembers do
    		if UnitExists(benMembers[i].Unit.."target") == 1 then
    			local customTarget = benMembers[i].Unit.."target"
    		
    			if customTarget ~= nil and not UnitIsUnit("player", benMembers[i].Unit) then
    				if UnitCanAttack("player",customTarget) == 1
    				and not UnitAffectedByAura(customTarget, "debuff_cc_dmg_break", 0.5, true) -- Debuff Chek (That works flawless)
    				and IsLineOfSight(customTarget, 2) 
                                    -- simple LOS Check in an eventbased function. Other abilities works without errors so i think thats fine here.
    				and PQR_UnitDistance("player",customTarget) < 40 
    				and PlayerMana3 < 83 then 
    					if benBenderTalent then --if i have the Talent Mindbender
    						if PQR_SpellAvailable(123040) then
    							--PQR_DebugP("Mind Bender -> "..UnitName(customTarget))
    							CastSpellByName(GetSpellInfo(123040),customTarget)
    							return true
    						end
    					else
    						-- shadowfiend
    						if PQR_SpellAvailable(34433) then
    							PQR_DebugP("Shadow Fiend -> "..UnitName(customTarget))
    							CastSpellByName(GetSpellInfo(34433),customTarget)
    							return true
    						end
    					end
    				end
    			end
    		end
    	end
    end
    Last edited by MrHeroe; 10-25-2013 at 09:27 AM.

  4. #439
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I was using something similar to this for shadowfiend on party CDs. Just never got finished testing it to make sure it worked.

    Code:
    PartyCDs={51713,          121471,
              1719,
              106952,
              126679,
              126690,
              126683,
              49016,
              10060,
              106731,
              3045,
              113860,
              113861,
              113858,
              114049,
              31884,
              12472,
              107574,
              51271}
    
    
    if ShadowFiendOnOffenciveCDs then 
        for i=1, #members do 
            for j=1,#PartyCDs do 
                if UnitName(members[i].Unit) ~= UnitName("player")
                and UnitBuffID(members[i].Unit,PartyCDs[j]) ~= nil then 
    		        SFtarget = members[i].Unit + "target"
    		          	
    		        if UnitExists(SFtarget) 
    				and UnitCanAttack("player",SFtarget) ~= nil
    				and not LineOfSight(SFtarget) then
    	          		--Mindbender
    					if PQR_SpellAvailable(123040) then
    						_castSpell(123040, SFtarget)
    					end
    					
    					--ShadowFeind
    					if PQR_SpellAvailable(34433) then
    						_castSpell(34433, SFtarget)
    					end	
    	        	end  	
    	      	end 
    	  	end 
    	end 
    end
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  5. #440
    cahe's Avatar Member
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    88
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can some1 tell me how turn on PQR on PTR?

  6. #441
    jshookz's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    203
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know theres a new PTR build that got put up and a new patch today. It's up to 5.4.1 (17520)

  7. #442
    overpower's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cahe View Post
    Can some1 tell me how turn on PQR on PTR?
    i'm working on the new PTR offsets , almost done but i don't know how to find the adress for <ClntObjMgrGetActivePlayerObjAddress>, so I'm stuck there.

  8. #443
    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)

    Beta Launcher

    just for the peps still having problems with pqr and the beta launcher if you click wow in the beta launcher do this it should fix your problems of wow going to 64bit with the auto login.

    click on the wow icon and go here:



    click Game Settings and

    then check the box here:



    click done and wow should be 32 bit mode via launcher without needing to mod files, use cmdline switches, etc etc.

    hope this helps peps.

    Please if someone helped you donate rep to them.

  9. #444
    jshookz's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    203
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    just for the peps still having problems with pqr and the beta launcher if you click wow in the beta launcher do this it should fix your problems of wow going to 64bit with the auto login.

    click on the wow icon and go here:



    click Game Settings and

    then check the box here:



    click done and wow should be 32 bit mode via launcher without needing to mod files, use cmdline switches, etc etc.

    hope this helps peps.
    All we need is working offsets Crystal :P

  10. #445
    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)
    I'm having a brain fart moment, i've gone completely blank and so I thought I'd ask.

    Any ideas on the code to cast on pettarget. I've looked at the PQR dropdown box but it seems to be missing pettarget as an option. I don't see selecting a target as an option for castbyspellid or name.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  11. #446
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I'm having a brain fart moment, i've gone completely blank and so I thought I'd ask.

    Any ideas on the code to cast on pettarget. I've looked at the PQR dropdown box but it seems to be missing pettarget as an option. I don't see selecting a target as an option for castbyspellid or name.
    CastSpellByName('name', target) or CastSpellByID(spellID, target) I believe

    Sent from my SGH-I337 using Tapatalk

  12. #447
    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 firepong View Post
    CastSpellByName('name', target) or CastSpellByID(spellID, target) I believe

    Sent from my SGH-I337 using Tapatalk
    Thanks I'll check on that, but I thought that the area where you have target entered was only for checking for selfcasts. I'll give it a go none the less.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  13. #448
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Thanks I'll check on that, but I thought that the area where you have target entered was only for checking for selfcasts. I'll give it a go none the less.
    Nope. It will work for any target. Just don't remember if pettarget was an actual target lol


    Sent from my SGH-I337 using Tapatalk

  14. #449
    iceymot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheLuBu View Post
    Code:
     if IsAltKeyDown() then 
    	   PlaceRaidMarker(1)  -- 1 = Blue Square
    		if SpellIsTargeting() then 
    		CameraOrSelectOrMoveStart() 
    		CameraOrSelectOrMoveStop() 
    		end  
    end
    Should work,
    maybe checks if you have the right to do are needed, but in general it should be possible

    This is untested
    I tried that but no success, would anyone else have a solution please?

  15. #450
    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 iceymot View Post
    I tried that but no success, would anyone else have a solution please?
    try IsLeftAltKeyDown() or IsRightAltKeyDown()

    if that doesn't do it reverse the code

    if SpellIsTargeting() then
    etc
    etc
    end
    placeraidmarker
    return true
    end

    no idea atm if this will work as i'm not home

    Please if someone helped you donate rep to them.

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:53 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