[PLUA/MACRO] Unofficial PLUA/MACRO Thread menu

User Tag List

Page 7 of 8 FirstFirst ... 345678 LastLast
Results 91 to 105 of 106
  1. #91
    Jacobox's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    45
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sikas View Post
    [SUB] [SDM RET MACRO]

    Rotation:
    A) Cast Templar's Verdict only if you have 3 Holy Power or Divine Purpose proc'd.
    B) Cast Crusader Strike if your current SEAL is Seal of Truth. If your current SEAL if Seal of Righteousness, it will cast Divine Storm instead.
    C) Cast Hammer of Wrath when possible. This includes being able to cast Hammer of Wrath when using Avenging Wrath.
    D) Cast Exorcism if Art of War has proc'd.
    E) Cast Judgement.
    F) Cast Holy Wrath.
    G) Divine Plea if below 75% Mana.

    Code:
    /run c=CastSpellByName cd=GetSpellCooldown r=IsSpellInRange t="target" p="player" b=UnitBuff dp="Divine Plea" po=UnitPower inq="Inquisition" tv="Templar's Verdict" u=IsUsableSpell cs="Crusader Strike" ds="Divine Storm" how="Hammer of Wrath" e="Exorcism" j="Judgement" hw="Holy Wrath" if not b(p,inq) and (po(p,9)>=1 or b(p,"Divine Purpose")) then c(inq) elseif b(p,"Seal of Truth") and cd(cs)==0 and r(cs,t)==1 and u(cs) and po(p,9)<3 then c(cs) elseif b(p,"Seal of Righteousness") and cd(ds)==0 and r(cs,t)==1 and u(ds) then c(ds) elseif (po(p,9)>2 or b(p,"Divine Purpose")) and r(tv,t)==1 and cd(tv)==0 and u(tv) then c(tv) elseif cd(how)==0 and r(how,t)==1 and u(how) then c(how) elseif b(p,"The Art of War") and cd(e)==0 and r(e,t)==1 then c(e) elseif cd(j)==0 and r(j,t)==1 then c(j) elseif cd(hw)==0 and r(cs,t)==1 then c(hw) elseif cd(dp)==0 and po(p)/UnitPowerMax(p)<0.75 then c(dp) end;
    It's a very simple Ret Pally rotation. Not releasing more of my updated Ret macro just yet..hopefully will post more. [COLOR=Silver]

    .
    Hello Sikas, wanted to know how I can make my Paladin when 30-40% health, instead of throwing TV lanze himself "Word of Glory"

    Thanks, and sorry for my bad English. u.u

    [PLUA/MACRO] Unofficial PLUA/MACRO Thread
  2. #92
    meet25's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cast Crusader Strike if your current SEAL is Seal of Truth. If your current SEAL if Seal of morality, it'll forged Divine Storm instead.
    ---------------------

    2013 MERCEDES BENZ SL-CLASS

  3. #93
    Sikas's Avatar Active Member
    Reputation
    69
    Join Date
    Feb 2007
    Posts
    386
    Thanks G/R
    6/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jacobox View Post
    Hello Sikas, wanted to know how I can make my Paladin when 30-40% health, instead of throwing TV lanze himself "Word of Glory"

    Thanks, and sorry for my bad English. u.u
    Code:
    /run c=CastSpellByName cd=GetSpellCooldown r=IsSpellInRange t="target" p="player" b=UnitBuff dp="Divine Plea" po=UnitPower inq="Inquisition" tv="Templar's Verdict" u=IsUsableSpell cs="Crusader Strike" ds="Divine Storm" how="Hammer of Wrath" e="Exorcism" j="Judgement" hw="Holy Wrath" wog="Word of Glory" if not b(p,inq) and (po(p,9)>=1 or b(p,"Divine Purpose")) then c(inq) elseif b(p,"Seal of Truth") and cd(cs)==0 and r(cs,t)==1 and u(cs) and po(p,9)<3 then c(cs) elseif b(p,"Seal of Righteousness") and cd(ds)==0 and r(cs,t)==1 and u(ds) then c(ds) elseif (po(p,9)>2 or b(p,"Divine Purpose")) and UnitHealth(p)/UnitHealthMax(p)<0.4 and cd(wog)==0 and u(wog) then c(wog) elseif cd(how)==0 and r(how,t)==1 and u(how) then c(how) elseif b(p,"The Art of War") and cd(e)==0 and r(e,t)==1 then c(e) elseif cd(j)==0 and r(j,t)==1 then c(j) elseif cd(hw)==0 and r(cs,t)==1 then c(hw) elseif cd(dp)==0 and po(p)/UnitPowerMax(p)<0.75 then c(dp) end;
    Absolutely NO idea if this will work. I've actually uninstalled WoW. :P


    Rotation Addon: REMOVED BY REQUEST
    I give no support for this, I'm just pointing you there. You have to figure out how to use it yourself.

    You STILL need a lua unlocker for this, which a great person has done. He's really helpful and will help when he can.
    Lua Unlocker: http://www.ownedcore.com/forums/worl...-unlocker.html
    Last edited by Sikas; 07-31-2013 at 07:43 PM.

  4. #94
    Alfalfa's Avatar Legendary
    Reputation
    746
    Join Date
    Feb 2013
    Posts
    669
    Thanks G/R
    70/79
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a request, and would be very grateful if you could. It's pretty simple: if Molten Core Molten Core - Spell - World of Warcraft is up, cast Soul Fire Soul Fire - Spell - World of Warcraft , otherwise cast Shadow Bolt Shadow Bolt - Spell - World of Warcraft

    I'm gonna try figuring one out, I'll update this post if I do. I could write out the logic in java but I am not familiar with lua.

    Thanks!

    Edit:

    Was easy.
    /run if UnitBuff("player","Molten Core") then CastSpellByName("Soul Fire") else CastSpellByName("Shadow Bolt") end
    Last edited by Alfalfa; 08-17-2013 at 10:52 PM.

  5. #95
    griste's Avatar Member
    Reputation
    1
    Join Date
    Oct 2013
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In need of a script template that casts a certain spell when somebody else casts a specific spell towards you. For example, vanish when your target casts blind at you. This is what I have so far but I know there's a long way to go until it works properly.

    CastSpellByName(GetSpellInfo(spellid),tar)
    CastSpellByName("vanish")
    function _castSpell(spellid,tar)
    function _castSpell(spellid,tar)

    if UnitCastingInfo("player") == 2094
    and UnitChannelInfo("player") == nil
    and IsPlayerSpell(spellid) == true
    and cdRemains(spellid) == 1856

    then
    if tar ~= false
    and rangeCheck(spellid,tar) == false
    then
    return false

    elseif
    tar ~= true
    and rangeCheck(spellid,tar) == true

    then
    CastSpellByName(GetSpellInfo(1856),tar)
    UIErrorsFrame:Clear()
    PQR_DelayRotation(.123)
    return true

    elseif
    tar == false

    then
    CastSpellByName(GetSpellInfo(nil))
    UIErrorsFrame:Clear()
    PQR_DelayRotation(.123)
    return true

    else
    return false
    end

  6. #96
    Ghostswrath's Avatar Active Member
    Reputation
    24
    Join Date
    Apr 2007
    Posts
    129
    Thanks G/R
    13/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a request for rogues:

    Use vanish when opponent uses blind.
    Use cloak of shadows when enemy uses Hammer of Justice.
    Kick Flash of Light
    And the macro should autoactivate, so that I have to click it only once when logging ingame.

    Thanks in advance.
    2k7

  7. #97
    Shipley's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    whether there is a macro / script that can quickly take into focus "succubus"??

  8. #98
    Fat4l's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hello fellaz, iwas using lua unlocker but it doesnt seem to be working with addons on.

    Do u have any 3.3.5 lua unlocker that works with addons turned on ?

    thx

  9. #99
    Profesar's Avatar Member
    Reputation
    3
    Join Date
    May 2014
    Posts
    14
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Req for Rogues(SDM)

    -Use vanish when blinded
    -(macro should autoactivate, so I click it once when i log in)

    Thanks
    Last edited by Profesar; 08-11-2014 at 01:02 PM.

  10. #100
    zyfraed's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i need help with a power word: shield macro

    SDM

    Logic:

    check for "Power Word: Shield" buff and "Weakened Soul" debuff, if finds any, do nothing, if both are absent, casts Power Word: Shield
    checks if unit is in range, exists, is alive, without checking this, it tends to "get stuck", trying to shield a far away or a offline member in raid/party

    thanks in advance
    Last edited by zyfraed; 08-30-2014 at 09:16 PM.

  11. #101
    Kalitzburg's Avatar Member
    Reputation
    2
    Join Date
    Sep 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,

    Does this macro/scripts still works for Official WoW servers? Its possible to detect it?

    thanks!

  12. #102
    idan2313's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone give me a ele shaman wind shear interup when target casting
    and grounding totem when needed


    and last when i have 30% hp its automatic uses Shamanistic Rage?

  13. #103
    idan2313's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    btw can someone tell me how to use it? i have lua unlocker and the macro addons

    now i put the scripts in script section and i dont know what to do from now

    i did the /sdm run interup

    but it does nothing

  14. #104
    Alex(rpgmasters)'s Avatar Banned CoreCoins Purchaser
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, i have a request for anybody who can help me.
    I can't find a macro :
    - New arena role check (this menu pops when party leader is trying to queue 2v2/3v3/5v5 rated arena)

    I would really appreciate if someone could help me, because i can't find anyone who knows this macro

  15. #105
    defac44's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Alex(rpgmasters) View Post
    Hello, i have a request for anybody who can help me.
    I can't find a macro :
    - New arena role check (this menu pops when party leader is trying to queue 2v2/3v3/5v5 rated arena)

    I would really appreciate if someone could help me, because i can't find anyone who knows this macro
    As far as i know the only person i seen use this kind of function was vitalic he always had auto accept feature in his rogue pqr profiles, he's a busy man but maybe if you ask him nicely he will share it with you.

Page 7 of 8 FirstFirst ... 345678 LastLast

Similar Threads

  1. Funny/Best Macro THREAD
    By VersaGER in forum WoW UI, Macros and Talent Specs
    Replies: 0
    Last Post: 10-01-2012, 03:21 AM
  2. Rift Macro Thread
    By Jbob in forum Rift
    Replies: 9
    Last Post: 03-22-2011, 01:41 AM
  3. LuaNinja Dks Macro Thread
    By angusm in forum WoW UI, Macros and Talent Specs
    Replies: 11
    Last Post: 12-29-2009, 10:01 AM
  4. OFFICIAL G15 Macro Thread
    By Anarchy in forum World of Warcraft General
    Replies: 0
    Last Post: 03-18-2008, 12:36 AM
  5. why not make a Macros thread
    By bait in forum World of Warcraft General
    Replies: 0
    Last Post: 01-22-2007, 07:05 PM
All times are GMT -5. The time now is 01:31 AM. 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