PQR - Rotation Bot menu

User Tag List

Page 421 of 779 FirstFirst ... 321371417418419420421422423424425471521 ... LastLast
Results 6,301 to 6,315 of 11681
  1. #6301
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by darksahde View Post
    you have a extra "end" at second line and a missing " , and the rest looks ok to me.
    So like this?
    Code:
    if not UnitBuffID("player",100951) 
    then RunMacroText("/use Celebration Package")
    return true
    end
    No cigar

    PQR - Rotation Bot
  2. #6302
    darksahde's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jan 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bendecks View Post
    So like this?
    Code:
    if not UnitBuffID("player",100951) 
    then RunMacroText("/use Celebration Package")
    return true
    end
    No cigar
    Code:
    if not UnitBuffID("player",100951) 
           then RunMacroText("/use Celebration Package")
    end
    Last edited by darksahde; 11-25-2012 at 04:54 AM.

  3. #6303
    Dozza's Avatar Sergeant
    Reputation
    9
    Join Date
    May 2010
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any good holy paladin profiles out yet? bubbas wastin lot of mana imo

  4. #6304
    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 darksahde View Post
    Great idea... y i didnt think of that earlier. >>';'

    Add:

    I made something like this and added to all the lower spell. but it seems broken. anyone can check?

    Code:
    function SSBuff()
    	if (UnitBuffID("player",53224) and select(7,UnitBuffID("player",53224)) - GetTime() < 3
    	or not UnitBuffID("player",53224)) then
    		return false
    	end
    end
    PS: some of my spell used "CastSpellByName" instead of "return true" maybe that's the problem?
    its always returning false

    PHP Code:
    function SSBuff()
         if 
    not UnitBuffID("player",53224)
              or 
    select(7,UnitBuffID("player",53224)) - GetTime() < 3
         then
              
    return true
         
    else
              return 
    false
         end
    end 
    now that will tell it to be true if ssbuff is missing or less than 3 so all you need to do is in your code for the lower stuff add if SSBuff() == false then cast spell end and on spells you want it to cast it will be if SSBuff() == true then cast spell end

    Please if someone helped you donate rep to them.

  5. #6305
    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 darksahde View Post
    Great idea... y i didnt think of that earlier. >>';'

    Add:

    I made something like this and added to all the lower spell. but it seems broken. anyone can check?

    Code:
    function SSBuff()
    	if (UnitBuffID("player",53224) and select(7,UnitBuffID("player",53224)) - GetTime() < 3
    	or not UnitBuffID("player",53224)) then
    		return false
    	end
    end
    PS: some of my spell used "CastSpellByName" instead of "return true" maybe that's the problem?
    You should have a "not" in there otherwise it is checking for the buff so if you don't have the buff it the function returns nil. Personally I wouldn't bother doing a function for this. Just set up a high priority ability for it to check called Steady focus. This way it only checks once rather than on every single ability above steady shot.
    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

  6. #6306
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by darksahde View Post
    Code:
    if not UnitBuffID("player",100951) 
           then RunMacroText("/use Celebration Package")
    end
    This isn't working for me either, does it have something to do with the spell id in PQR? Tried setting it to 0, and the Skip Unknown to false, still no luck.

  7. #6307
    Discipline's Avatar Contributor ALADEEN MOTHERFUCKER! CoreCoins Purchaser
    Reputation
    128
    Join Date
    Dec 2007
    Posts
    253
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bendecks View Post
    This isn't working for me either, does it have something to do with the spell id in PQR? Tried setting it to 0, and the Skip Unknown to false, still no luck.
    Try the macro ingame yourself, that may be the problem

    Sent from my BlackBerry 9360 using Tapatalk

  8. #6308
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by D1sc1pl1n3 View Post
    Try the macro ingame yourself, that may be the problem

    Sent from my BlackBerry 9360 using Tapatalk
    Allready tried that, also tried

    Code:
    RunMacroText("/use Celebration Package")
    end
    Figured that would spam the buff, but nope...

  9. #6309
    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 Bendecks View Post
    Allready tried that, also tried

    Code:
    RunMacroText("/use Celebration Package")
    end
    Figured that would spam the buff, but nope...
    Try UseItemByName(71134) instead? UseItemByName() also works with the itemID of a item. Don't know why people still try to use RunMacroText() to use items lol

  10. #6310
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Looks like I am a bit stupid :/.

    In which part of code of this profile : http://pastebin.com/BE91cgFc should I actually put it?

  11. #6311
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Try UseItemByName(71134) instead? UseItemByName() also works with the itemID of a item. Don't know why people still try to use RunMacroText() to use items lol
    That didn't do the trick either. Neither by id or name

    Tried
    Code:
    if not UnitBuffID("player",100951) 
           then UseItemByName(Celebration Package)
    end
    and

    Code:
    if not UnitBuffID("player",100951) 
           then UseItemByName(71134)
    end

  12. #6312
    doice's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone have a good enhancement shaman profile.....that i can use thanx i can't seem to find any in this post

  13. #6313
    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 Bendecks View Post
    That didn't do the trick either. Neither by id or name

    Tried
    Code:
    if not UnitBuffID("player",100951) 
           then UseItemByName(Celebration Package)
    end
    and

    Code:
    if not UnitBuffID("player",100951) 
           then UseItemByName(71134)
    end
    PHP Code:
    local buff =  UnitBuffID("Player",100951)

    if 
    not buff then
        UseItemByName
    (71134)
    end 
    The above worked fine for me, just a edited version of yours. Make sure the profile your using or whatever has "Require combat to execute rotation" unchecked in Rotation Editor or it won't do anything though. C.c

  14. #6314
    madturk's Avatar Sergeant
    Reputation
    17
    Join Date
    Feb 2011
    Posts
    55
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello all, I've searched and did not find a good fire Mage rotation. Anyone has one?
    Thanks in advanced.

  15. #6315
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    PHP Code:
    local buff =  UnitBuffID("Player",100951)

    if 
    not buff then
        UseItemByName
    (71134)
    end 
    The above worked fine for me, just a edited version of yours. Make sure the profile your using or whatever has "Require combat to execute rotation" unchecked in Rotation Editor or it won't do anything though. C.c
    It is unchecked, doesn't cast in combat either

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 02:52 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