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

User Tag List

Page 179 of 731 FirstFirst ... 79129175176177178179180181182183229279679 ... LastLast
Results 2,671 to 2,685 of 10955
  1. #2671
    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)
    No one is really coding anymore are they?

    How do I learn to code for this bot?

    [BETA] PQRotation - an automated ability priority queue.
  2. #2672
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    No one is really coding anymore are they?

    How do I learn to code for this bot?
    I think plenty of people are still interested in writing profiles. There's just not much to do unless there are suggestions. It's easy to write a profile that follows SimCraft's action priority list. It's writing other things, like PvP-specific code, that we need direction and experience with.

    If you're interested in learning how to write a profile, I'd honestly just open up someone else's and start examining it. Look up the functions at WoWProgramming if you're having trouble understanding the syntax.

  3. #2673
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    rogue profiles ????

  4. #2674
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cookie...learn to search!

  5. #2675
    Luckycharm's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @sheuron
    Who´s rotation did u post link @page 107?
    Can anyone plz re-add boomkin profil or link, it´s says deleted when i try DL it, ty

    Keep up the good work profilwriters and Xelper you are doing a great job! +rep
    Last edited by Luckycharm; 11-14-2011 at 04:57 AM.

  6. #2676
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mihir View Post
    and "end" at the end

    so

    This code interrupt a cast at or above 75% on your target.
    Code:
    castStartTime = (select(5,UnitCastingInfo("target"))/1000)
    castEndTime = (select(6,UnitCastingInfo("target"))/1000)
    castTotalTime = castEndTime - castStartTime
    castDurationTime = ( GetTime() - castStartTime )
    percentDone = ( (castDurationTime / castTotalTime) * 100 )
    if percentDone >= 75 then CastSpellByName("Wind Shear") end
    This code interrupt a cast at or above 75% on your focus.
    Code:
    castStartTime = (select(5,UnitCastingInfo("focus"))/1000)
    castEndTime = (select(6,UnitCastingInfo("focus"))/1000)
    castTotalTime = castEndTime - castStartTime
    castDurationTime = ( GetTime() - castStartTime )
    percentDone = ( (castDurationTime / castTotalTime) * 100 )
    if percentDone >= 75 then CastSpellByName("Wind Shear", "focus") end

    Message: [string " function pqrFunc0() castStartTime = (selec..."]:1: attempt to perform arithmetic on a nil value
    Time: 11/14/11 13:36:04
    Count: 227
    Stack: [string " function pqrFunc0() castStartTime = (selec..."]:1: in function `?'
    [string "..."]:239: in function `PQR_NextAbility'
    [string "..."]:154: in function `PQR_CastNext'
    [string "..."]:143: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>

    Locals: (*temporary) = nil
    (*temporary) = 5
    (*temporary) = <function> defined =[C]:-1
    (*temporary) = "target"
    (*temporary) = "attempt to perform arithmetic on a nil value"

  7. #2677
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any Assassination Rogue or any rogue at all here??

  8. #2678
    SprayPlaster's Avatar Sergeant Major
    Reputation
    13
    Join Date
    Feb 2010
    Posts
    164
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Luckycharm View Post
    @sheuron
    Who´s rotation did u post link @page 107?
    Can anyone plz re-add boomkin profil or link, it´s says deleted when i try DL it, ty

    Keep up the good work profilwriters and Xelper you are doing a great job! +rep
    Found this druid.zip posted in July. The basics are there but you gonna have to tweak them for maximum dps/personal needs.

    I modified mine so it also casts DoTs on my focus, and the program only takes care of IS, MF/SF and starsurge. So I have to spam Starfire and Wrath manually. I can't think of an elegant way of making the program predict solar/lunar eclipse due to the lag in the game before it registers if you're in an eclipse or not, i.e. PQR will still cast a 1-2 starfires when you reach solar and vice versa. One way I tried to solve this was to make it only cast wrath at >-78 energy and the direction is going towards lunar and starfire at <81 energy with the direction towards solar. Works well most of the time especially on stand still fights, but when you somehow get to -99<x<-90 or 82<x<99 energy, the rotation will stop. So in the end I just settle with the bot handling the DoT's, starfall (used manually if there's add phase), force of nature and starsurges while I manually spam wrath/starfire.

    Would appreciate it if anyone who knows even the slightest bit of programming to help with the wrath/starfire issue haha.
    Last edited by SprayPlaster; 11-14-2011 at 07:10 PM.

  9. #2679
    Luckycharm's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My programming skills = very low that´s why i Donate for others to help.

    There must be a Moonkin profile with max dps, PVE,AOE , PVP around ??! Plz share or maybe some profil writer willing to take this challenge??

  10. #2680
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rogue profiles plzzzzzzzzzzzzzz

  11. #2681
    Demliz's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone please make a shaman rotation that will go into ghost wolf direclty when not in combat?

    or post a site where i can find spellids, ty in advance!
    Last edited by Demliz; 11-15-2011 at 10:35 AM.

  12. #2682
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cookie799 View Post
    Rogue profiles plzzzzzzzzzzzzzz
    Cookie, there are several throughout the thread. Please use the search function.

    ---------- Post added at 02:44 AM ---------- Previous post was at 01:26 AM ----------

    Originally Posted by Demliz View Post
    can someone please make a shaman rotation that will go into ghost wolf direclty when not in combat?

    or post a site where i can find spellids, ty in advance!
    Demliz, it's best to simply use WoWhead. Look up the ability you're trying to use (in this case Ghost Wolf) and take note of the URL.

    http://www.wowhead.com/spell=2645

    Your spell ID is the bold value after the equal sign.

  13. #2683
    Demliz's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Cookie, there are several throughout the thread. Please use the search function.

    ---------- Post added at 02:44 AM ---------- Previous post was at 01:26 AM ----------



    Demliz, it's best to simply use WoWhead. Look up the ability you're trying to use (in this case Ghost Wolf) and take note of the URL.

    http://www.wowhead.com/spell=2645

    Your spell ID is the bold value after the equal sign.
    Thanks, but i already figured it out, now i just have to find some place to find wow api commands for incombat outcombat, to make it transform the ghost wolf everytime out of combat, feel free to help me out mate.

    Thanks! (again)

  14. #2684
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Cookie, there are several throughout the thread. Please use the search function.
    onlt the assianation one at 1st page nothing else comes up thats fully working

  15. #2685
    ShinyKnight's Avatar Member
    Reputation
    3
    Join Date
    May 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been using the feral druid profile featured on the front page; having never played a druid before, I had no idea how it would perform, but after using it for a day and a half now, I have to say that I think it's... pretty damn amazing, actually.

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 09:50 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