LuaNinja Macro Collection menu

User Tag List

Page 28 of 42 FirstFirst ... 242526272829303132 ... LastLast
Results 406 to 420 of 629
  1. #406
    Elitetech's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2008
    Posts
    279
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mynewt View Post
    Wow Awesome job on the prot warrior script absolutely loving it, when you have a moment and i'm sure it'll take a while, could you add a little more functionailit to the arms warrior script.

    I was wondring if the following features could be added:
    Victory Rush
    Change to Berserker Stance and pummel on target casting, then back to battle stance
    Use of Enraged Regeneration, (perhaps use of health stone to).
    Heya, past those lines wherever you want in the script
    Code:
    /run if UnitHealth('player')<10000 and GetSpellCooldown("Enraged Regeneration")==0 and IsUsableSpell("Enraged Regeneration")==1 then CastSpellByName("Enraged Regeneration") end
    /run if GetSpellCooldown("Victory Rush")==0 and IsUsableSpell("Victory Rush")==1 then CastSpellByName("Victory Rush") end
    /run if UnitCastingInfo("target") and GetSpellCooldown("Pummel")==0 then RunMacroText("/castsequence Berserker Stance, Pummel, Battle Stance") end
    /run if UnitHealth('player')<10000 then RunMacroText("/use INSERT-NAME-OF-HEALTHSTONE") end
    And this one in the beginning of the script if they above ain't going back to Battle Stance
    Code:
    /run if GetShapeshiftForm()==3 then CastSpellByName("Battle Stance") end
    
    and if that doesn't work then
    
    /run if GetShapeshiftForm("Battle Stance")==0 then CastSpellByName("Battle Stance") end
    Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.

    LuaNinja Macro Collection
  2. #407
    asdjaa's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gnobiwan View Post
    @asdjaa



    Shouldn't that line be changed to elseif (cp == 4) if you want it to Envenom on 4 points?
    No, there's some other lines for that further down. Those lines are for when your Slice and Dice is running low, so it casts an envenom to keep it from dropping.

    Anyway, fixed my problem. I just copy-pasted the macro again, and edited the values as required. I must've done something to screw it up, but it doesn't matter now

  3. #408
    Mynewt's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elitetech View Post
    Heya, past those lines wherever you want in the script
    Code:
    /run if UnitHealth('player')<10000 and GetSpellCooldown("Enraged Regeneration")==0 and IsUsableSpell("Enraged Regeneration")==1 then CastSpellByName("Enraged Regeneration") end
    /run if GetSpellCooldown("Victory Rush")==0 and IsUsableSpell("Victory Rush")==1 then CastSpellByName("Victory Rush") end
    /run if UnitCastingInfo("target") and GetSpellCooldown("Pummel")==0 then RunMacroText("/castsequence Berserker Stance, Pummel, Battle Stance") end
    /run if UnitHealth('player')<10000 then RunMacroText("/use INSERT-NAME-OF-HEALTHSTONE") end
    And this one in the beginning of the script if they above ain't going back to Battle Stance
    Code:
    /run if GetShapeshiftForm()==3 then CastSpellByName("Battle Stance") end
    
    and if that doesn't work then
    
    /run if GetShapeshiftForm("Battle Stance")==0 then CastSpellByName("Battle Stance") end
    Wow that was damn fast thank you so much!

  4. #409
    Mynewt's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm guessing (i'm trying to learn how to write these myself but its slow going-- but i will get there at some point) that if i also added the line:

    /run if UnitHealth('player')<4000 then RunMacroText("/use Runic Helath Potion") end

    That i'd use the health potion if at 4K hp or lower is that right?
    Last edited by Mynewt; 12-27-2009 at 08:36 AM.

  5. #410
    frallan123's Avatar Active Member
    Reputation
    24
    Join Date
    Apr 2007
    Posts
    140
    Thanks G/R
    0/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could anyone explain to me what I should do with the DK macros. should I make one macro with everything inside or macro one by one. I tried one by one and it says blizzard blocked ui, im using windows 7 btw.

  6. #411
    Elitetech's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2008
    Posts
    279
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mynewt View Post
    I'm guessing (i'm trying to learn how to write these myself but its slow going-- but i will get there at some point) that if i also added the line:

    /run if UnitHealth('player')<4000 then RunMacroText("/use Runic Helath Potion") end

    That i'd use the health potion if at 4K hp or lower is that right?
    That one will work mate. Just fix the health potion typo. What you're saying there is that if your health is below 4000 then use a Runic Health Potion. Works just fine
    Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.

  7. #412
    CrazyCactuaR's Avatar Contributor
    Reputation
    84
    Join Date
    Sep 2008
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any of you lads know how to postpone a command from executing until loot is fully received. Idea is to cast pickpocket and wait until its done before doing the opening attack. So hate missing out on those greys ;p

  8. #413
    Elitetech's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2008
    Posts
    279
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CrazyCactuaR View Post
    Any of you lads know how to postpone a command from executing until loot is fully received. Idea is to cast pickpocket and wait until its done before doing the opening attack. So hate missing out on those greys ;p
    Code:
    /run if GetNumLootItems() > 0 then RunMacroText("/run print'Looting'") else CastSpellByName("Opener here") end
    Will print "Looting" in your chat if you're looting. Otherwise it'll cast the spell "Opener here". Enjoy
    Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.

  9. #414
    CrazyCactuaR's Avatar Contributor
    Reputation
    84
    Join Date
    Sep 2008
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elitetech View Post
    Code:
    /run if GetNumLootItems() > 0 then RunMacroText("/run print'Looting'") else CastSpellByName("Opener here") end
    Will print "Looting" in your chat if you're looting. Otherwise it'll cast the spell "Opener here". Enjoy
    Thank's dude, now modified it as;

    Code:
    /run if Stealth and InMeleeRange and (Creature == "Humanoid" or Creature == "Undead" or Creature == "Demon") then CastSpellByName("Pick Pocket") end
    /run if GetNumLootItems() == 0 and Stealth then CastSpellByName("Cheap Shot") end
    Wont be long till i need something else doing

    Edit: After trying it out it still seems to do cheap shot while looting so still resulting in not collecting the full table.
    Last edited by CrazyCactuaR; 12-27-2009 at 01:39 PM.

  10. #415
    Elitetech's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2008
    Posts
    279
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CrazyCactuaR View Post
    Thank's dude, now modified it as;

    Code:
    /run if Stealth and InMeleeRange and (Creature == "Humanoid" or Creature == "Undead" or Creature == "Demon") then CastSpellByName("Pick Pocket") end
    /run if GetNumLootItems() == 0 and Stealth then CastSpellByName("Cheap Shot") end
    Wont be long till i need something else doing

    Edit: After trying it out it still seems to do cheap shot while looting so still resulting in not collecting the full table.
    Code:
    /run if Stealth and InMeleeRange and (Creature == "Humanoid" or Creature == "Undead" or Creature == "Demon") then CastSpellByName("Pick Pocket") end
    /run if GetNumLootItems() == 0 and Stealth then RunMacroText("/in 1 /cast Cheap Shot") end
    Try that one. Your problem might be caused because of the loot window showing up AFTER your instant cast of Cheap shot. This should give you a 1 second chance to loot
    Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.

  11. #416
    CrazyCactuaR's Avatar Contributor
    Reputation
    84
    Join Date
    Sep 2008
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elitetech View Post
    Code:
    /run if Stealth and InMeleeRange and (Creature == "Humanoid" or Creature == "Undead" or Creature == "Demon") then CastSpellByName("Pick Pocket") end
    /run if GetNumLootItems() == 0 and Stealth then RunMacroText("/in 1 /cast Cheap Shot") end
    Try that one. Your problem might be caused because of the loot window showing up AFTER your instant cast of Cheap shot. This should give you a 1 second chance to loot
    It's throwing up spam flooding text in general tab of

    "Error, /in cannot call secure command: /cast"

    and refuses to do it.

  12. #417
    Elitetech's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2008
    Posts
    279
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol wtf, thought that was why we had luaninja.

    Try changing it to /run if GetNumLootItems() == 0 and Stealth then RunMacroText("/in 1 /run CastSpellByName("Cheap Shot")") end
    Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.

  13. #418
    Mynewt's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Earlier in this thread I posted a request/question about stopping the propecting script, well after a little work i've figured it out myself. I'm sure someone can improve on it but at least it works and I personally don't think its a bad effort for my first real attempt. Anyway here goes:

    Code:
    /cast Disenchant
    /StopMacro [mod]
    /use [ITEM NAME]
    /in 3 /run RunMacro("DE")

  14. #419
    CrazyCactuaR's Avatar Contributor
    Reputation
    84
    Join Date
    Sep 2008
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elitetech View Post
    lol wtf, thought that was why we had luaninja.

    Try changing it to /run if GetNumLootItems() == 0 and Stealth then RunMacroText("/in 1 /run CastSpellByName("Cheap Shot")") end
    Alright so far i've done the following for my stealth;

    Code:
    /run StaticPopup_Hide("MACRO_ACTION_FORBIDDEN");
    /stopmacro [nostealth, combat]
    /targetenemy [noharm]
    
    /run Stealth=UnitBuff("player", "Stealth")
    /run Creature=UnitCreatureType("target")
    /run InMeleeRange=CheckInteractDistance("target",2)
    /run if Stealth and InMeleeRange and (Creature == "Humanoid" or Creature == "Undead" or Creature == "Demon") then CastSpellByName("Pick Pocket") else CastSpellByName("Cheap Shot") end
    /run if GetNumLootItems() == 0 and Stealth then RunMacroText("/in 1 /run CastSpellByName("Cheap Shot")") else RunMacro("Stealth") end
    /run StaticPopup_Hide("MACRO_ACTION_FORBIDDEN");
    I'm finding it more and more common coming into simple problems, such as it'll loop pick pocket and never do cheap shot. On target's it cannot pick pocket but is 'presumed' it can by my creature check it'll just sit idle.

    I think one thing that needs doing is having it cast pickpocket once and make sure only once. Then wait for the loot to be taken and cast cheap shot. No idea how to do those checks myself though.

  15. #420
    Mynewt's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What would be the script for pala healing to use Divine Plea on every cooldown, and arcane torrent on every cooldown?

Page 28 of 42 FirstFirst ... 242526272829303132 ... LastLast

Similar Threads

  1. [Macro-Collection] All-In-One-Button Macro for all Classes from Level 15-90!
    By Classicclean in forum WoW UI, Macros and Talent Specs
    Replies: 21
    Last Post: 01-21-2014, 08:16 AM
  2. Addon For LuaNinja Macros
    By Tracerv0 in forum WoW UI, Macros and Talent Specs
    Replies: 7
    Last Post: 01-06-2010, 02:21 PM
  3. /Dump Macro Collection (WIP at mo!)
    By Anotherfox in forum WoW UI, Macros and Talent Specs
    Replies: 97
    Last Post: 01-04-2010, 03:21 PM
  4. [HOW TO] Ascii Macro + my collection
    By wickermanz in forum World of Warcraft Guides
    Replies: 12
    Last Post: 01-05-2009, 12:58 PM
  5. Macro Love - My Collection of useful and/or Space saving Macro's!
    By Anotherfox in forum World of Warcraft Guides
    Replies: 15
    Last Post: 12-28-2008, 12:29 AM
All times are GMT -5. The time now is 02:51 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