PQR - Rotation Bot menu

User Tag List

Page 427 of 779 FirstFirst ... 327377423424425426427428429430431477527 ... LastLast
Results 6,391 to 6,405 of 11681
  1. #6391
    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)
    PQRInterface probably is the culprit.

    PQR - Rotation Bot
  2. #6392
    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
    For me i just removed the function, and every skill start with F_switchtofox
    And you don't get any errors at all? How odd, I would think you would still need to remove the switching to hawk functions as well since they are redundant.
    Last edited by kickmydog; 11-27-2012 at 06:22 PM.
    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

  3. #6393
    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 dont do this often.... but this is a new thing for me....

    can anyone PM me with any assistance you can give me as to why this code is giving me a usage error?

    PHP Code:
    if CombatLog == nil then
        Nova_CombatLog 
    CreateFrame('Frame');

        function 
    CombatLog_OnEvent(selfevent, ...)
            
    local typesourceGUIDsourceNAME_destGUID select(2, ...)
            if (
    event=="COMBAT_LOG_EVENT_UNFILTERED"then
                
    if (type=="SPELL_CAST_SUCCESS" or type=="SPELL_CAST_START"then                
                    
    if (sourceGUID == tonumber((UnitGUID("player")):sub(-12, -9), 16)) then
                        PlayerSpell 
    select(9, ...)
                        
    CastTarget destGUID
                    end
                end
            end
        end


        Nova_CombatLog
    :SetScript('OnEvent'CombatLog_OnEvent(selfevent, ...));
        
        
    Nova_CombatLog:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED");
        
        
    CombatLog true
    end 

    Error:
    Message: [string "if CombatLog == nil then ..."]:39: Usage: <unnamed>:SetScript("type", function)
    Time: 11/27/12 15:19:06
    Count: 71
    Stack: [C]: in function `SetScript'
    [string "if CombatLog == nil then ..."]:39: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:760: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: (*temporary) = <unnamed> {
    0 = <userdata>
    }
    (*temporary) = "OnEvent"
    *EDIT*
    fixed it..... after about 5 mins of looking for more examples i caught one that seemed different than mine.... and I saw my error..... you don't send the function any information, you just call it

    here's what a working code looks like for those that want to learn from my mistakes
    PHP Code:
    if CombatLog == nil then
        Nova_CombatLog 
    CreateFrame('Frame');

        
    Nova_CombatLog:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED");
        function 
    CombatLog_OnEvent(selfevent, ...)
            
    local type_sourceGUIDsourceNAME__destGUIDdestNAME select(2, ...)
            if (
    event=="COMBAT_LOG_EVENT_UNFILTERED"then
                
    if (type=="SPELL_CAST_SUCCESS" or type=="SPELL_CAST_START"then
                    
    print(sourceNAME)
                    print(
    destNAME)
                    if 
    sourceNAME == UnitName("player"then
                        
    print("You are casting a spell")
                    --    
    PlayerSpell select(9, ...)
                    --    
    CastTarget destGUID
                    end
                end
            end
        end


        
        Nova_CombatLog
    :SetScript("OnEvent"CombatLog_OnEvent)
        
        
    CombatLog true
    end 
    Last edited by bu_ba_911; 11-27-2012 at 06:39 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  4. #6394
    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 kickmydog View Post
    And you don't get any errors at all? How odd, I would think you would still need to remove the switching to hawk functions as well since they are redundant.



    I've also been getting this error which makes no sense since MoC hasn't changed and it was working before the patch.

    PHP Code:
    -- Stop Arcane Shot if Murder of Crows is coming off cooldown.
    if 
    IsPlayerSpell(131894)
    and 
    not UnitDebuffID("target"131894"PLAYER"
    and 
    select(2,GetSpellCooldown(131894)) == 0
    and not UnitBuffID("player""109306"
    and 
    not UnitHealth("target") > (UnitHealthMax("player")*3)
    then return false end 
    KMD..... the PQR_ADDON this is something Xelper created in PQR... when that goes off, you broke the whole thing

    the Usage error however, means you are calling a buffid or debuffid that doesn't exist in the game (IE Aspect of the Fox)
    ^0^Team Nova's PQR NCC ^0^

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

  5. #6395
    aghost917's Avatar Corporal
    Reputation
    2
    Join Date
    Nov 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is it the error that shows in wow?
    if so this is what i got:
    PHP Code:
    Error occured in: Global
    Count1
    Message
    : [string "if PQR_Addon_Loaded == nil then..."line 1029:
       
    UsageUnitDebuff("unit", [index] or ["name""rank"][, "filter"])
    Debug:
       [
    C]: ?
       [
    C]: UnitDebuff()
       [
    string "if PQR_Addon_Loaded == nil then..."]:1029UnitDebuffID()
       [
    string "--local LB = UnitDebuffID("target",44457,"P..."]:5: ?()
       [string "
    if PQR_Addon_Loaded == nil then..."]:760: PQR_NextAbility()
       [string "
    if PQR_Addon_Loaded == nil then..."]:533: PQR_ExecuteRotation()
       [string "
    if PQR_Addon_Loaded == nil then..."]:289:
          [string "
    if PQR_Addon_Loaded == nil then..."]:214
    Locals:
    (*temporary) = "
    target"
    (*temporary) = nil
    (*temporary) = nil
    (*temporary) = "
    player

  6. #6396
    Friendship's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Kickmydog,

    I like your hunter profiles a lot but i was wondering if there is a way I could add fervor to the SV rotation. I am a newbie to PQR and don't know how to add abilites.

  7. #6397
    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)
    for those hunters going a little nuts at the moment.

    Here is my alpha version, I'm still testing but I'm pretty sure the SV works 100%. I can't say anything about the other two specs just yet.

    KMD_All_Hunter_Rotations_v17alpha.zip
    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

  8. #6398
    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 Friendship View Post
    Kickmydog,

    I like your hunter profiles a lot but i was wondering if there is a way I could add fervor to the SV rotation. I am a newbie to PQR and don't know how to add abilites.
    Well considering that SV doesn't get Fervor I'm not sure there is going to be anyway to do that
    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

  9. #6399
    ozmodiar's Avatar Member
    Reputation
    13
    Join Date
    Oct 2012
    Posts
    41
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    for those hunters going a little nuts at the moment.

    Here is my alpha version, I'm still testing but I'm pretty sure the SV works 100%. I can't say anything about the other two specs just yet.

    KMD_All_Hunter_Rotations_v17alpha.zip
    I love you.

  10. #6400
    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 kickmydog View Post
    And you don't get any errors at all? How odd, I would think you would still need to remove the switching to hawk functions as well since they are redundant.
    i removed the function and all the f_switchtofox/hawk/traplauncher in the lines, and also my rotation and abilities is altered version of yours so i get no problem.

    still very good profile. keep it up.

  11. #6401
    aghost917's Avatar Corporal
    Reputation
    2
    Join Date
    Nov 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i can't get alter time to work right.

    PHP Code:
    if HaveBuff("player",48108)
    and 
    not HaveBuff("player",110909)
    then
    CastSpellByID
    (48108
    end 
    It also stops the rotation.

  12. #6402
    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)
    I've updated BM for 5.1 on the svn still tweakin but got 76k burst in ilvl 463 gear on the raid dummy and 47k normal damage

    Please if someone helped you donate rep to them.

  13. #6403
    shadowhacks's Avatar Private
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LF someone to update a Frost mage profile for 5.1. Message me to discuss further. Any help would be appreciated.

  14. #6404
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has anyone found a fix for this yet? Spread across multiple profiles (Sheeps, Failmoon's etc.) Saw the discussion suddenly die on this, but I wasn't sure if it's because people are researching or if I missed something. Very confused.

    Message: [string "if PQR_Addon_Loaded == nil then..."]:1008: Usage: UnitDebuff("unit", [index] or ["name", "rank"][, "filter"])
    Time: 11/27/12 22:18:20
    Count: 47
    Stack: [C]: ?
    [C]: in function `UnitDebuff'
    [string "if PQR_Addon_Loaded == nil then..."]:1008: in function `UnitDebuffID'
    [string "local Root = { ..."]:247: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:737: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>
    Last edited by Taran32; 11-27-2012 at 10:37 PM.

  15. #6405
    jarrito66's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2012
    Posts
    81
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    Has anyone found a fix for this yet? Spread across multiple profiles (Sheeps, Failmoon's etc.) Saw the discussion suddenly die on this, but I wasn't sure if it's because people are researching or if I missed something. Very confused.

    Message: [string "if PQR_Addon_Loaded == nil then..."]:1008: Usage: UnitDebuff("unit", [index] or ["name", "rank"][, "filter"])
    Time: 11/27/12 22:18:20
    Count: 47
    Stack: [C]: ?
    [C]: in function `UnitDebuff'
    [string "if PQR_Addon_Loaded == nil then..."]:1008: in function `UnitDebuffID'
    [string "local Root = { ..."]:247: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:737: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>
    while i was trying to run my hunter profiles today and kickmydogs new file located just above for the BM PVP i got those errors and the bot wouldnt attack so i went into the Ability editor and found one called "-- Functions" and copied it and named it "backup" and then deleted the functions one and then it seemed to work

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