[PQR] Cpoworks's Shaman/Monk profiles menu

Shout-Out

User Tag List

Page 2 of 13 FirstFirst 123456 ... LastLast
Results 16 to 30 of 181
  1. #16
    Shayden85's Avatar Active Member
    Reputation
    64
    Join Date
    Mar 2008
    Posts
    204
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    Yeah, im aware of that error. It dosnt stop the profile from working it just happens because i didnt put a check for null integers
    Ok, are you gonna fix it or can i fix it my self ? if so, how ?

    [PQR] Cpoworks's Shaman/Monk profiles
  2. #17
    blackvoid's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any chance you'll be making Enhance or Elemental PvP?

  3. #18
    Zyraxian's Avatar Sergeant
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    updated ele profile. added profile with healing spells included, useful for dailies, ect. Also fixed Lava Beam
    Any chance you could add Healing Stream Totem to the healing profile? At the moment it only has Tide.

  4. #19
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zyraxian View Post
    Any chance you could add Healing Stream Totem to the healing profile? At the moment it only has Tide.
    yeah sure
    (10 char)
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  5. #20
    Envision's Avatar Active Member Authenticator enabled
    Reputation
    20
    Join Date
    May 2009
    Posts
    78
    Thanks G/R
    18/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome work Cpowroks!
    Elemental:
    I have noticed that if its in the middle of say going from FS to LvB and before I can cast LvB I have to move it will no cast LBs on the move. Anyway to fix this?
    Never mind what haters say, ignore them 'til they fade away.

  6. #21
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Envision View Post
    Awesome work Cpowroks!
    Elemental:
    I have noticed that if its in the middle of say going from FS to LvB and before I can cast LvB I have to move it will no cast LBs on the move. Anyway to fix this?
    Just Added a Fix. Its untested because the servers are down but im 99% sure it will work
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  7. #22
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blackvoid View Post
    Any chance you'll be making Enhance or Elemental PvP?
    If i do, what are you looking for/want in it. I dont pvp that much.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  8. #23
    blackvoid's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the sweet profiles and your hard work! I was wondering if you were planning to do any PvP profiles? Especially enhancement one?

  9. #24
    blackvoid's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow... I am such a noob. Double post about pvp. Maybe an option to heal teammate rather maelstrom proc dps. Purge like crazy, totem control and perhaps focus hex? I am not too sure haha.

  10. #25
    Zyraxian's Avatar Sergeant
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    yeah sure
    (10 char)
    Hm, I meant something more along the lines of a party-wide check. Something like this (which I adapted from Dominium's ret profile).

    Code:
    local myHp = 100 * UnitHealth("player") / UnitHealthMax("player")
    local tarHp = 100 * UnitHealth("target") / UnitHealthMax("target")
    local p1Hp = 100 * UnitHealth("party1") / UnitHealthMax("party1")
    local p2Hp = 100 * UnitHealth("party2") / UnitHealthMax("party2")
    local p3Hp = 100 * UnitHealth("party3") / UnitHealthMax("party3")
    local p4Hp = 100 * UnitHealth("party4") / UnitHealthMax("party4")
    local p5Hp = 100 * UnitHealth("party5") / UnitHealthMax("party5")
    
    
    
    if myHp < 70 then
    	CastSpellByName(GetSpellInfo(5394), "player")
    end
    
    if p1Hp < 70 and PQR_IsOutOfSight("party1") == false and IsSpellInRange("Healing Surge", "party1") == 1 and not UnitIsEnemy("party1", "player") then
    CastSpellByName(GetSpellInfo(5394), "party1")
    end
    
    if p2Hp < 70 and PQR_IsOutOfSight("party2") == false and IsSpellInRange("Healing Surge", "party2") == 1 and not UnitIsEnemy("party2", "player") then
    CastSpellByName(GetSpellInfo(5394), "party2")
    end
    
    if p3Hp < 70 and PQR_IsOutOfSight("party3") == false and IsSpellInRange("Healing Surge", "party3") == 1 and not UnitIsEnemy("party3", "player") then
    CastSpellByName(GetSpellInfo(5394), "party3")
    end
    
    if p4Hp < 70 and PQR_IsOutOfSight("party4") == false and IsSpellInRange("Healing Surge", "party4") == 1 and not UnitIsEnemy("party4", "player") then
    CastSpellByName(GetSpellInfo(5394), "party4")
    end
    
    if p5Hp < 70 and PQR_IsOutOfSight("party5") == false and IsSpellInRange("Healing Surge", "party5") == 1 and not UnitIsEnemy("party5", "player") then
    CastSpellByName(GetSpellInfo(5394), "party5")
    end
    I can't figure out how to do this for Healing Tide, though. Needs to check if say 3+ party members are low. Casting Healing Stream when only the player casting is low is a waste.

    Also, I noticed couple of problems with the profile.
    1: If you're moving, it only casts lightning bolt and doesn't use Fulminate or instant Lava Burst procs!
    2: It won't attack some targets (like the orbs in Shado-Pan Monestary), I'm not sure if they count as "hostile targets"?
    Last edited by Zyraxian; 10-19-2012 at 02:59 AM.

  11. #26
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zyraxian View Post
    Hm, I meant something more along the lines of a party-wide check. Something like this (which I adapted from Dominium's ret profile).

    Code:
    local myHp = 100 * UnitHealth("player") / UnitHealthMax("player")
    local tarHp = 100 * UnitHealth("target") / UnitHealthMax("target")
    local p1Hp = 100 * UnitHealth("party1") / UnitHealthMax("party1")
    local p2Hp = 100 * UnitHealth("party2") / UnitHealthMax("party2")
    local p3Hp = 100 * UnitHealth("party3") / UnitHealthMax("party3")
    local p4Hp = 100 * UnitHealth("party4") / UnitHealthMax("party4")
    local p5Hp = 100 * UnitHealth("party5") / UnitHealthMax("party5")
    
    
    
    if myHp < 70 then
        CastSpellByName(GetSpellInfo(5394), "player")
    end
    
    if p1Hp < 70 and PQR_IsOutOfSight("party1") == false and IsSpellInRange("Healing Surge", "party1") == 1 and not UnitIsEnemy("party1", "player") then
    CastSpellByName(GetSpellInfo(5394), "party1")
    end
    
    if p2Hp < 70 and PQR_IsOutOfSight("party2") == false and IsSpellInRange("Healing Surge", "party2") == 1 and not UnitIsEnemy("party2", "player") then
    CastSpellByName(GetSpellInfo(5394), "party2")
    end
    
    if p3Hp < 70 and PQR_IsOutOfSight("party3") == false and IsSpellInRange("Healing Surge", "party3") == 1 and not UnitIsEnemy("party3", "player") then
    CastSpellByName(GetSpellInfo(5394), "party3")
    end
    
    if p4Hp < 70 and PQR_IsOutOfSight("party4") == false and IsSpellInRange("Healing Surge", "party4") == 1 and not UnitIsEnemy("party4", "player") then
    CastSpellByName(GetSpellInfo(5394), "party4")
    end
    
    if p5Hp < 70 and PQR_IsOutOfSight("party5") == false and IsSpellInRange("Healing Surge", "party5") == 1 and not UnitIsEnemy("party5", "player") then
    CastSpellByName(GetSpellInfo(5394), "party5")
    end
    I can't figure out how to do this for Healing Tide, though. Needs to check if say 3+ party members are low. Casting Healing Stream when only the player casting is low is a waste.

    Also, I noticed couple of problems with the profile.
    1: If you're moving, it only casts lightning bolt and doesn't use Fulminate or instant Lava Burst procs!
    2: It won't attack some targets (like the orbs in Shado-Pan Monestary), I'm not sure if they count as "hostile targets"?


    I really like that code, Ill implement it and fix the while moving stuff today.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  12. #27
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New Ele build up.

    includes better moving support and party healing support


    Enhance pvp Profile coming Soon.
    Last edited by cpowroks; 10-19-2012 at 02:03 PM.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  13. #28
    Zyraxian's Avatar Sergeant
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    Enhance pvp Profile coming Soon.
    Any update on this? I'm waiting for it to start BG's on my Shamans

    PS,

    One issue I can see with Dominium's healing code is that, in BG's, it doesn't always put you in the same party if you join as a group. Might be better off using some of the healing code from one of the healer profiles that will target anyone in the party or raid so it's more flexible.
    Last edited by Zyraxian; 10-23-2012 at 07:54 AM.

  14. #29
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my wow time ran out so i haven't been able to finish it.

    However, i am probably going to rewrite my enhance and elemental profiles and combine then into 1 profile once im done with this pvp profile
    Last edited by cpowroks; 10-23-2012 at 02:55 PM.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  15. #30
    gamingjunkie's Avatar Member
    Reputation
    4
    Join Date
    Feb 2011
    Posts
    73
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    One thing I have noticed while using your elemental with heals profile. When I switch it to AOE, it drops framerate for some odd reason. It's fine in single target but when targetting and attacking targets in AOE it will make my FPS drop to 1. Can anyone else test this or confirm it?

Page 2 of 13 FirstFirst 123456 ... LastLast

Similar Threads

  1. [PQR] Cpoworks's PQR profiles
    By cpowroks in forum WoW Bot Maps And Profiles
    Replies: 246
    Last Post: 07-02-2020, 01:41 PM
  2. PQR Hi. is there any ele. shaman leveling profile?
    By gaja02 in forum WoW Bot Maps And Profiles
    Replies: 2
    Last Post: 10-01-2016, 06:53 AM
  3. [PQR] Cpoworks 3.3.5 Profiles
    By cpowroks in forum WoW Bot Maps And Profiles
    Replies: 32
    Last Post: 05-13-2016, 01:32 PM
  4. [PQR/ ProbablyEngine] Restoration Shaman healing profiles?
    By aragorn179 in forum WoW Bot Maps And Profiles
    Replies: 2
    Last Post: 01-14-2014, 11:07 PM
  5. Replies: 11
    Last Post: 01-13-2013, 10:56 PM
All times are GMT -5. The time now is 10:28 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