[Release] LuaNinja - Run protected Lua code menu

User Tag List

Page 14 of 70 FirstFirst ... 10111213141516171864 ... LastLast
Results 196 to 210 of 1048
  1. #196
    Eff's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Started to work on a decursive macro to just spam in raids, gotten this so far:

    /run ut="raid";s="25"; for p="1",s do for d="1", "3" do local _,_,_,_,t,_,_,_,_ = UnitDebuff(ut..p, d); if t == "Curse" then TargetUnit(ut..p); CastSpellByName("Remove Curse"); TargetLastTarget(); p="25"; end end end;
    And it seems to be working well, but I noticed a problem, when you use it, you still end up getting a popup saying you're calling a protected function...it works, but that popup is really quite annoying

    [Release] LuaNinja - Run protected Lua code
  2. #197
    spudstar99's Avatar Member
    Reputation
    12
    Join Date
    Aug 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ askali

    add

    /click StaticPopup1Button1
    to your macro ... it helps alot ;P

  3. #198
    kildare's Avatar Active Member
    Reputation
    24
    Join Date
    Sep 2008
    Posts
    43
    Thanks G/R
    10/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Elitetech View Post
    hey man, +rep for the great post. can you tell me how to do it with addons like ShotandAwe or Faceshooter? ( FaceShooter : WoWInterface Downloads : Hunter )
    you need to replace the following code inside the funcion function FS:SpellFind(), so at the end of function will be:

    else
    FS.data.nextSpellName = nameList[1]
    end
    end
    hunterspell = ""
    hunterspell = FS.data.nextSpellName
    end

    -- Calculates the current GCD


    just add hunterspell variable and make it local, and you can use my macro, if you want i can post the modified lua here

  4. #199
    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)
    Jus so you kno...

    /click StaticPopup1Button1

    Will also release you if you happen to die in a raid. It happened to me, but fortunately, my raid wiped. lol

  5. #200
    Garry__'s Avatar Active Member
    Reputation
    55
    Join Date
    Sep 2007
    Posts
    137
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kildare View Post
    you need to replace the following code inside the funcion function FS:SpellFind(), so at the end of function will be:

    else
    FS.data.nextSpellName = nameList[1]
    end
    end
    hunterspell = ""
    hunterspell = FS.data.nextSpellName
    end

    -- Calculates the current GCD


    just add hunterspell variable and make it local, and you can use my macro, if you want i can post the modified lua here
    Could you please? I'd really appreciate that.

  6. #201
    kildare's Avatar Active Member
    Reputation
    24
    Join Date
    Sep 2008
    Posts
    43
    Thanks G/R
    10/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    RapidShare: 1-CLICK Web hosting - Easy Filehosting

    macro
    /Run temp=hunterspell
    /Run CastSpellByName(""..temp.."")
    enjoy

  7. #202
    Garry__'s Avatar Active Member
    Reputation
    55
    Join Date
    Sep 2007
    Posts
    137
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a lot, testing it now.

    Edit: Works, thanks again.
    Last edited by Garry__; 10-29-2009 at 07:47 PM.

  8. #203
    Demonshade's Avatar get in da van, i got epix

    Reputation
    494
    Join Date
    Mar 2007
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sweet stuff cypher. Anyone got a good compilation of awesome macros? I'll try to make some myself but i dont think ill get very far.
    /AFK shower

  9. #204
    gifted's Avatar Member
    Reputation
    12
    Join Date
    Jan 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I need someone with a good knowledge of the WoW API to answer the following question: is it possible to create the good old totem stomping macros again with the help of LuaNinja?
    Blizzard got rid of totemstomping in 3.2 by making it impossible to target totem via macros, but i was thinking maybe the (protected) API command TargetUnit("unit") may still be able to target totems, in which case totemstomping would actually be possible again by using LuaNinja. This would be fckin awesome

    *edit* i also created a thread in the UI&Macro Forums regarding this issue
    Last edited by gifted; 10-30-2009 at 07:09 AM.

  10. #205
    U_dont_kno_me?'s Avatar Active Member
    Reputation
    74
    Join Date
    Jun 2008
    Posts
    164
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have a question is there a way i can make a macro that can do these two functions at once

    /run loadstring("local _, _, _, _, _, _, _, _, interruptAble = UnitCastingInfo(\"target\"); if UnitCastingInfo(\"target\") and not interruptAble then SpellStopCasting() CastSpellByName(\"Wind Shear\") end")()

    /run loadstring("local _, _, _, _, _, _, _, _, interruptAble = UnitCastingInfo(\"focus\"); if UnitCastingInfo(\"target\") and not interruptAble then SpellStopCasting() CastSpellByName(\"Wind Shear\") end")()

    so i can interrupt my target or my focus as soon as they start to cast

  11. #206
    sico's Avatar Member
    Reputation
    3
    Join Date
    Mar 2008
    Posts
    32
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by U_dont_kno_me? View Post
    i have a question is there a way i can make a macro that can do these two functions at once

    /run loadstring("local _, _, _, _, _, _, _, _, interruptAble = UnitCastingInfo(\"target\"); if UnitCastingInfo(\"target\") and not interruptAble then SpellStopCasting() CastSpellByName(\"Wind Shear\") end")()

    /run loadstring("local _, _, _, _, _, _, _, _, interruptAble = UnitCastingInfo(\"focus\"); if UnitCastingInfo(\"target\") and not interruptAble then SpellStopCasting() CastSpellByName(\"Wind Shear\") end")()

    so i can interrupt my target or my focus as soon as they start to cast
    You could chain them together as macros. For example, put in your target shear and name it TargetCheck, then make a new one for your focus and name it FocusCheck. Then create a new macro for your prefered nuke, which would look something like...

    #show Lightning Bolt
    /run x = RunMacro"TargetCheck"
    /run z = RunMacro"FocusCheck"
    /cast Lightning Bolt

  12. #207
    Arleer157's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm sure I'll likely be treated as one of those "single post little kids that want to hack," but I'll post anyway.

    Is there any way to make a Lua code to that can obtain an item from a vendor?
    I wouldn't exactly mind grabbing T9 on my mage...
    Last edited by Arleer157; 10-31-2009 at 03:11 PM.

  13. #208
    antis0c's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to make a Lua code to that can obtain an item from a vendor?
    I wouldn't exactly mind grabbing T9 on my mage...
    If you're thinking unprotected Lua code will allow you to buy free items from vendors, you're in for a disappointment =) Sure, you can write Lua code to PURCHASE the item from the vendor, but you'll need the appropriate currency for it to work.

    Sorry, no free gears for you.

  14. #209
    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)
    This 'hack' is client side Arleer. Nothing is modified on the server.

  15. #210
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arleer157 View Post
    I'm sure I'll likely be treated as one of those "single post little kids that want to hack," but I'll post anyway.

    Is there any way to make a Lua code to that can obtain an item from a vendor?
    I wouldn't exactly mind grabbing T9 on my mage...
    I lol'd. You acknowledge the existence of a stereotype, and then you fall right into it.

Similar Threads

  1. Replies: 8
    Last Post: 07-13-2010, 01:36 AM
  2. [3.3.2] AUTOIT - Run Protected LUA
    By satia in forum WoW Memory Editing
    Replies: 46
    Last Post: 06-19-2010, 08:58 AM
  3. Run Protected Lua in 3.3.3a
    By thefarmer in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 04-30-2010, 08:03 PM
  4. Protected LUA Code and Chat Addons
    By Ultraviolence in forum WoW UI, Macros and Talent Specs
    Replies: 0
    Last Post: 04-20-2010, 12:01 AM
  5. [Release] LuaHobo - Run protected LUA
    By Seifer in forum World of Warcraft Bots and Programs
    Replies: 50
    Last Post: 01-18-2010, 06:06 PM
All times are GMT -5. The time now is 10:53 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