PQR - Rotation Bot menu

User Tag List

Page 579 of 779 FirstFirst ... 79479529575576577578579580581582583629679 ... LastLast
Results 8,671 to 8,685 of 11681
  1. #8671
    Sheriffs's Avatar Member
    Reputation
    2
    Join Date
    Jan 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question: how can i delay for about 0,2s - 0,3s the ability (e.g. kick) to interrupt a spell? The profile i use simple do an instant interrupt (in less than 0,1s), its not a human like behavior and some people already talked about that with me. Can someone give me a script solution about it? Thanks in advance.

    PQR - Rotation Bot
  2. #8672
    Dimonoff's Avatar Master Sergeant
    Reputation
    12
    Join Date
    May 2012
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PHP Code:
    local dino GetUnitName("focus""Direhorn Spirit")

    if 
    dino then 
    Why does not want to work properly?

  3. #8673
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeveredShadow View Post
    Specifically I am building and Enhancement profile. I was trying to make something that could decide when to swap Searing Totem for Magma Totem and swap Lightning Bolt for Chain Lightning. I don't think either of those spells are potentially as dangerous as spreading Serpent Sting or something.
    I'll take a look at your Chain Heal code and see if I can utilize a bit of it for my needs.

    Thanks
    I already have a working code that does that but at large numbers of mobs it lags to the point it's unplayable for some reason. Currently it has taken a back seat to some of my other projects but I'd be happy to show you what I have.
    Former PQR Developer

  4. #8674
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dimonoff View Post
    PHP Code:
    local dino GetUnitName("focus""Direhorn Spirit")

    if 
    dino then 
    Why does not want to work properly?
    Because GetUnitName would be used for checking a units server, I.e. if your focus is on Stormrage. Use UnitName.

    PHP Code:
    if UnitName("focus") == "Direhorn Spirit" then
       
    return true
    end 

  5. #8675
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sheriffs View Post
    Question: how can i delay for about 0,2s - 0,3s the ability (e.g. kick) to interrupt a spell? The profile i use simple do an instant interrupt (in less than 0,1s), its not a human like behavior and some people already talked about that with me. Can someone give me a script solution about it? Thanks in advance.
    I modified Xelper's interrupt profile to have a random delay of .1 second to .79 seconds every time it tries to interrupt a spell. if you want to change the range then go into ability editor > interrupt > Xelper > Variables: Interrupt and change the numbers, I left comments so it should be easier to follow =D

    Download:
    -- Interrupt with random delay --
    http://70.86.12.197/~alphauti/PQR/Xelper_INTERRUPT_Abilities.xml
    Past the link above^ into the Profile Downloader in Rotation Editor

    Last edited by paintpauller; 03-15-2013 at 10:35 PM.

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  6. #8676
    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)
    @kinkeh

    Recently I've encountered a problem with your Unholy Infusion profile. Randomly, the single rotation(I THINK the AoE rotation too, but I'm not sure) will stuck try to use "Blood Tap (10c/32RP)" with full rune and it return "there is no fully depleted rune" error message.

    Also, it happens also to the "Death Coil(sudden doom)" try to work with no doom buff. (occur much less often than the above situation)

    Is there any way to solve this?

    Thanks.
    Last edited by darksahde; 03-15-2013 at 11:03 PM.

  7. #8677
    werewolfspb's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR_UnitDistance("target", "player") eat 15-20(about 30%) of my fps do you know another functions for distance checking?

  8. #8678
    Guinness's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by werewolfspb View Post
    PQR_UnitDistance("target", "player") eat 15-20(about 30%) of my fps do you know another functions for distance checking?
    That's a known issue right now with PQR. You could try using a spell to check distance. I'm not sure on a work around.

  9. #8679
    Guinness's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sheriffs View Post
    Question: how can i delay for about 0,2s - 0,3s the ability (e.g. kick) to interrupt a spell? The profile i use simple do an instant interrupt (in less than 0,1s), its not a human like behavior and some people already talked about that with me. Can someone give me a script solution about it? Thanks in advance.
    Check out Team Nova's Interrupt file. It has a random timer on it already.

  10. #8680
    DarkMassacre's Avatar Contributor
    Reputation
    87
    Join Date
    Apr 2009
    Posts
    141
    Thanks G/R
    9/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Never mind on the warrior profiles. Just so you know the only currently working warrior profile is failroad PVE that was modified by someone i forgot the name i think it started with a Z, but for some reason nerders, Gourgas, simcraft, xern, nova, denne, avery and SM do not work anymore since the last hotfix patch. Not sure if you guys were aware.

  11. #8681
    azergod's Avatar Corporal
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone has a working shadow priest for 5.2? cant seem to get nova shadow to work (might be broken?)

  12. #8682
    Drinksbeer's Avatar Knight-Lieutenant
    Reputation
    33
    Join Date
    Jan 2013
    Posts
    252
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's the changes to the mechanics, those profiles will still cast the shadow spells, you just won't get the MF after you apply DP on the target. I'm pretty sure they will have something awesome up soon, they always do.

    Also, I would love to know what is going on with the warrior profile, mine was working fine a few minutes ago and I am using both Gourgas and Failroad.

  13. #8683
    azergod's Avatar Corporal
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well its not the mechanics, i downloaded the entire svn, and put everything in my pqr folders, but shadow just wont seem to work at all, it wont cast anything for me. is it really cuz im lvl 80? i dont really think shadow gets much usefull spells after 80 except for the lvl 90 talent maybe but even if i remove that from the priority list it still wont work

  14. #8684
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by azergod View Post
    anyone has a working shadow priest for 5.2? cant seem to get nova shadow to work (might be broken?)
    Try this: https://github.com/mentallys-hysteri...ive/master.zip

    Mentally's no longer updating in the nova SVN. Make sure you have the PQI addon in your addons folder (PQInterface.zip) and the two Data files in your PQR data folder.

  15. #8685
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post
    Try this: https://github.com/mentallys-hysteri...ive/master.zip

    Mentally's no longer updating in the nova SVN. Make sure you have the PQI addon in your addons folder (PQInterface.zip) and the two Data files in your PQR data folder.
    Who is updating this one?

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 06:56 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