[Release] LuaNinja - Run protected Lua code menu

User Tag List

Page 2 of 70 FirstFirst 12345652 ... LastLast
Results 16 to 30 of 1048
  1. #16
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sikas View Post
    Awesome Cypher, thank you!

    EDIT: I presume that lua /dump macros still cause problems with certain addons, yes?
    You can omit the dump and execute them as if they are unprotected...
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

    [Release] LuaNinja - Run protected Lua code
  2. #17
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2983
    Join Date
    Apr 2006
    Posts
    9,805
    Thanks G/R
    351/297
    Trade Feedback
    9 (100%)
    Mentioned
    3 Post(s)
    Tagged
    1 Thread(s)
    as always when u release something, it's awesome...
    keep up the good work, nominated and +15'ed

  3. #18
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sikas View Post
    Awesome Cypher, thank you!

    EDIT: I presume that lua /dump macros still cause problems with certain addons, yes?
    This eliminates the need for the "/dump" or any other wrappers entirely.

    Originally Posted by Robske View Post
    You can omit the dump and execute them as if they are unprotected...
    Dammit, beaten!

    Originally Posted by KuRIoS View Post
    as always when u release something, it's awesome...
    keep up the good work, nominated and +15'ed
    <3

  4. #19
    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)
    So in this case... sorry, I'm a complete code noob. :P

    Code:
    Macro 1: "1"
    /dump loadstring("c=CastSpellByName; if not UnitDebuff(\"target\", \"Living Bomb\") then c(\"Living Bomb\") elseif UnitBuff(\"player\", \"Hot Streak\") then c(\"Pyroblast\") else RunMacro(\"2\") end") ()
    
    Macro 2: "2"
    /dump loadstring("c=CastSpellByName; if not UnitDebuff(\"target\", \"Improved Scorch\") if (p < 1) then c(\"Scorch\") else c(\"Fireball\") end") ()
    
    1:
    ("c=CastSpellByName; if not UnitDebuff(\"target\", \"Living Bomb\") then c(\"Living Bomb\") elseif UnitBuff(\"player\", \"Hot Streak\") then c(\"Pyroblast\") else RunMacro(\"2\") end")
    
    2:
    ("c=CastSpellByName; if not UnitDebuff(\"target\", \"Improved Scorch\") if (p < 1) then c(\"Scorch\") else c(\"Fireball\") end")
    Also, I've been trying to write a Ret Pally PvE, hasn't work as of yet.

    Code:
    Macro 1: "1"
    ("local _,a,_ = GetSpellCooldown(\"Crusader Strike\") if (a == 0) then CastSpellByName(\"Crusader Strike\") else RunMacro(2) end") ()
    
    Macro 2: "2"
    ("local _,a,_ = GetSpellCooldown(\"Judgement of Wisdom\") if (a == 0) then CastSpellByName(\"Judgement of Justice\") else RunMacro(3) end") ()
    
    Macro 3: "3"
    ("local _,a,_ = GetSpellCooldown(\"Divine Storm\") if (a == 0) then CastSpellByName(\"Divine Storm\") else RunMacro(4) end") ()
    
    Macro 4: "4"
    ("local _,a,_ = GetSpellCooldown(\"Consecration\") if (a == 0) then CastSpellByName(\"Divine Storm\") else RunMacro(1) end") ()

  5. #20
    Krillere's Avatar Contributor
    Reputation
    112
    Join Date
    Nov 2007
    Posts
    668
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This could be used for Bot development i guess. GJ, + Rep :-)

  6. #21
    Apoc's Avatar Angry Penguin
    Reputation
    1387
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will not fall into your trap!

    GJ though.

  7. #22
    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)
    Well, I'm not familiar with coding, so can someone give me an example what I should remove from my code above? Or use an above example without the dump or wrap commands?

  8. #23
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sikas View Post
    Well, I'm not familiar with coding, so can someone give me an example what I should remove from my code above? Or use an above example without the dump or wrap commands?
    Remove the quotation marks and parenthesis' that surround the actual code, and place '/run' in front of it.
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  9. #24
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very cool
    Is there any description what you did or just some hints? Sounds pretty interesting to me.

  10. #25
    Barnzy's Avatar Member
    Reputation
    67
    Join Date
    Jun 2008
    Posts
    302
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah this is a good release, I won't find use to it as I don't play WoW but +Rep for contrib.
    Made a little website: https://unbanservice.webs.com/ -

    mmowned.com

  11. #26
    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)
    Okay, so what I have for my Mage macros are..

    1:
    /run c=CastSpellByName; if not UnitDebuff\target\, \Living Bomb\ then c\Living Bomb\ elseif UnitBuff\player\, \Hot Streak\ then c\Pyroblast\ else RunMacro\2\ end

    2:
    /run c=CastSpellByName; if not UnitDebuff\target\, \Improved Scorch\ if (p < 1) then c\Scorch\ else c\Frostfire Bolt\ end

    Nothing is working. And yes, I did run Launch.bat with C:\Program Files\World of Warcraft\WoW.exe.

  12. #27
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sikas View Post
    Okay, so what I have for my Mage macros are..

    1:
    /run c=CastSpellByName; if not UnitDebuff\target\, \Living Bomb\ then c\Living Bomb\ elseif UnitBuff\player\, \Hot Streak\ then c\Pyroblast\ else RunMacro\2\ end

    2:
    /run c=CastSpellByName; if not UnitDebuff\target\, \Improved Scorch\ if (p < 1) then c\Scorch\ else c\Frostfire Bolt\ end

    Nothing is working. And yes, I did run Launch.bat with C:\Program Files\World of Warcraft\WoW.exe.
    Use ****ing google.
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  13. #28
    JoeRodge's Avatar Banned
    Reputation
    4
    Join Date
    Nov 2006
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice one bruce

  14. #29
    Dwaxine's Avatar Member
    Reputation
    12
    Join Date
    May 2008
    Posts
    118
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks like a great program i just couldnt find any awesome protected commands on
    World of Warcraft API - WoWWiki - Your guide to the World of Warcraft
    Although being able to type /in 2 /cast XXXX in macros
    Could be awesome

  15. #30
    Akira123's Avatar Member
    Reputation
    4
    Join Date
    Jul 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know where to begin with LUA command ^^' no idea what to do but all i can say is thank you and good work

Page 2 of 70 FirstFirst 12345652 ... LastLast

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 06:52 PM. 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