[BETA] PQRotation - an automated ability priority queue. menu

User Tag List

Page 715 of 731 FirstFirst ... 215615665711712713714715716717718719 ... LastLast
Results 10,711 to 10,725 of 10955
  1. #10711
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another movement experiment

    Code:
    function Walk(node)
      local x1,y1 = nodes[node][1],nodes[node][2] 
      local x2,y2,z2,r2 = PQR_UnitInfo("player") 
      local angle = math.atan2(y1-y2,x2-x1) + r2 - math.pi 
      if ( angle < -0.5 and angle > -math.pi ) or angle >= math.pi then 
        TurnRightStop() TurnLeftStart() 
      elseif ( angle > 0.5 and angle < math.pi ) or angle < -math.pi then
        TurnLeftStop() TurnRightStart()
      else
        TurnDelay = GetTime() TurnRightStop() TurnLeftStop()
      end
      if sqrt( (x1-x2)^2 + (y1-y2)^2 ) > 5 then MoveForwardStart() else MoveForwardStop() nearnode = node end 
    end
    
    if not delay or GetTime() - delay > 0.3 then
      if not nodes or IsMouseButtonDown(2) then 
        nodes,delay = { }, GetTime() 
        TurnRightStop() TurnLeftStop() MoveForwardStop() 
        print("Nodes init") 
      end 
      if IsMouseButtonDown(1) then table.insert(nodes,{PQR_UnitInfo("player")}) delay = GetTime() print("Node "..#nodes.." added") end
    end
    if not nearnode or nearnode >= #nodes then nearnode = 0 end 
    
    if #nodes > 1 then Walk(nearnode+1) end
    Left click anywhere on screen to save your position on memory, move some yards and left click again, now your charracter will patrol those 2 positions forever.

    Use Right click to clear positions.

    Some more code and this could be used by example to run throught stonecore and get the drake mount. Im just testting on my druid tank.
    Last edited by sheuron; 05-03-2012 at 12:21 AM.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

    [BETA] PQRotation - an automated ability priority queue.
  2. #10712
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    lol im a little curious what u're waiting for?

    the beta offset release that supports Unit Facing?

    Honestly... it's the beta.... he could postpone a month and it wouldn't phase me one bit

    And to Xelper.... Props again for another great addition !
    dont worry bubba, it's just a spammer/bot :S

  3. #10713
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am proud to be announce that Crystal_Tech has decided to help Team Nova with his own expertise and experience

    He will slowly assimilate in as he gets accustomed to our projects

    if u Donate to Nova and its for his Profiles, the Donation still goes to him, just let me know !!!!!

    This addition does excite me Hope to see your support with this addition as well....

    Originally Posted by dklcfr View Post
    dont worry bubba, it's just a spammer/bot :S
    lol maybe, or a new member finally speaking out
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  4. #10714
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    W00t w00t Team Nova!! I want to join..

    Maybe one day when I learn this stuff ;(

  5. #10715
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Any coder that can help me
    i have try sheuron disci pvp profile its realy imba but i wanna that PQR do only 3 thing:
    sheep broker
    dispel my party
    dispell offencive.

    can u help me with the rotation and say to me what i must cancel from the rotation for only do this thing?
    I have try to cancel all and leave only this 3 code but only sheep broker work and no dispell. pls help

  6. #10716
    brandonedm0nds's Avatar Private
    Reputation
    3
    Join Date
    Jan 2011
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still Looking for a good Balance druid Profile if anyone could point me in the right direction?

  7. #10717
    nertharul's Avatar Member
    Reputation
    3
    Join Date
    Apr 2010
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ TEAM NOVA

    GRATZ on ur new member

  8. #10718
    mrleo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey there

    i found this code on a profile and i need help

    if IsMouseButtonDown() then
    if UnitAffectingCombat("player") then
    RunMacroText("/click "..GetMouseFocus():GetName())
    end
    end


    i really like to be able to cast stuff that are not in the rotation when i want... but i would like to do it with the keyboard buttons not with the mouse buttons.... so i tried something like this (so that it would cast the ability i have put on the "2" button on my keyboard):


    if Is2KeyButtonDown() then
    if UnitAffectingCombat("player") then
    RunMacroText("/click "..GetKeyFocus():GetName())
    end
    end

    but it doesnt work... gives an error... says that "2Key" is a nil value...
    so i would like to know what the code is to get it work with any keyboard button

    for example i tried with:

    if IsKeyboardButtonDown() then
    if UnitAffectingCombat("player") then
    RunMacroText("/click "..GetKeyboardFocus():GetName())
    end
    end

    but that doesnt work as well...

    thanks for the help in advance

    awaiting ur reply

  9. #10719
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    W00t w00t Team Nova!! I want to join..

    Maybe one day when I learn this stuff ;(
    lol i'm still willing to help you learn

    Originally Posted by nertharul View Post
    @ TEAM NOVA

    GRATZ on ur new member
    ty ty i think we're both excited

    Originally Posted by brandonedm0nds View Post
    Still Looking for a good Balance druid Profile if anyone could point me in the right direction?
    I have a really bare-bones Single Target rotation one. Firepong created an edited version based off mine (so it has more in it). And Gabbz created his own. You can try any of them

    Originally Posted by mrleo View Post
    hey there

    i found this code on a profile and i need help

    if IsMouseButtonDown() then
    if UnitAffectingCombat("player") then
    RunMacroText("/click "..GetMouseFocus():GetName())
    end
    end


    i really like to be able to cast stuff that are not in the rotation when i want... but i would like to do it with the keyboard buttons not with the mouse buttons.... so i tried something like this (so that it would cast the ability i have put on the "2" button on my keyboard):


    if Is2KeyButtonDown() then
    if UnitAffectingCombat("player") then
    RunMacroText("/click "..GetKeyFocus():GetName())
    end
    end

    but it doesnt work... gives an error... says that "2Key" is a nil value...
    so i would like to know what the code is to get it work with any keyboard button

    for example i tried with:

    if IsKeyboardButtonDown() then
    if UnitAffectingCombat("player") then
    RunMacroText("/click "..GetKeyboardFocus():GetName())
    end
    end

    but that doesnt work as well...

    thanks for the help in advance

    awaiting ur reply
    the is key down is for Modifiers only really....

    like IsLeftAltKeyDown, or IsMouseButtonDown or IsRightControlKeyDown.... In order to get it to go based off what keyboard key you actually clicked, you would need to make a macro that sends the information to PQR to cast it.

    Sheuron was working on an easier way of doing it, but the different bar addons were bugging out because they are named differently. I'm sure with just a lil work we could get it working for every bar addon, but it would just take time.
    Last edited by bu_ba_911; 05-03-2012 at 11:03 AM.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  10. #10720
    svs's Avatar Active Member
    Reputation
    15
    Join Date
    Feb 2012
    Posts
    89
    Thanks G/R
    9/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by brandonedm0nds View Post
    Still Looking for a good Balance druid Profile if anyone could point me in the right direction?
    Here you go: Free Files Hosting - Woofiles.com - No Registration Required

    Credits goes to Firekitteh (or Firepong lol) and Sheuron, I've just made some tweaks.

    Hold Left Alt to pause rotation
    Hold Left Shift to mushrooms on mouseover
    Dots on mouseover

  11. #10721
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @bu_ba_911

    I know and I'm greatful for it. Just trying to find some time lol. I have 13 85s and I almost raid on all of them. lol I have two HM runs I go, which thanks to you btw and your holy paladin profile I am able to contend in HMs.

    Plus work and a GF...gets hard to find time and sit down and try to learn this stuff.

    I was thinking while at work I could maybe open up the XML files in an editor and try to see what I can figure out. Do you recommend anything I can use to just open it up and study the current work. That's not notepad lol
    Last edited by Ralphiuss; 05-03-2012 at 11:15 AM.

  12. #10722
    mrleo's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    lol i'm still willing to help you learn



    ty ty i think we're both excited



    I have a really bare-bones Single Target rotation one. Firepong created an edited version based off mine (so it has more in it). And Gabbz created his own. You can try any of them



    the is key down is for Modifiers only really....

    like IsLeftAltKeyDown, or IsMouseButtonDown or IsRightControlKeyDown.... In order to get it to go based off what keyboard key you actually clicked, you would need to make a macro that sends the information to PQR to cast it.

    Sheuron was working on an easier way of doing it, but the different bar addons were bugging out because they are named differently. I'm sure with just a lil work we could get it working for every bar addon, but it would just take time.
    ok what if im not currently using any bar addon? is it possible? would change my life... (thanks for fast reply btw )

  13. #10723
    cometangel's Avatar Banned
    Reputation
    42
    Join Date
    Mar 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hello, im using PQRotation for a long while now, and i have a tad bit experience in lua coding, but i just cant seem to get around to solve my mind in how to write how to keep up 5cp recuperate, im using Blinded's rogue combat 1.2 for now, but its a pain in the arse to use when im soloing raids... can someone here help me since blinded hasnt been seen of for a while?

  14. #10724
    machajr's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    38
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there any updated profile for balance druid(moonkin) ??

  15. #10725
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by machajr View Post
    is there any updated profile for balance druid(moonkin) ??
    WOOOOOW!! This was just asked one page ago....

    Learn to search please ([BETA] PQRotation - an automated ability priority queue.)

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 03:14 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