[Release] LuaNinja - Run protected Lua code menu

User Tag List

Page 19 of 70 FirstFirst ... 15161718192021222369 ... LastLast
Results 271 to 285 of 1048
  1. #271
    Zaphry's Avatar Contributor
    Reputation
    176
    Join Date
    Dec 2007
    Posts
    897
    Thanks G/R
    12/9
    Trade Feedback
    17 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WTF pwn.. this buffed my dps with around 500

    Playing a game for the graphics is like watching porn for the storyline.


    [Release] LuaNinja - Run protected Lua code
  2. #272
    snigelmannen's Avatar Member
    Reputation
    27
    Join Date
    Jul 2007
    Posts
    318
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works flawless, helps alot when half tired and playing pvp, spam that interrupt button and youll never get feared or w/e. Will do some more experiments! GJ and +rape
    " Spy sappin mah sentry! "

  3. #273
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, just getting back into using unprotected script to play my warrior again, foudn that this ran MUCH MUCH faster than luafoo when spamming (wont bog down my frames/sec at ALL) so I can do more conditionals. I need to know if there is a way to include a way to stop executing a move when a mob's health is lower than a certain percent. Specifically, this is what I want.

    If target HP >=20% then cast Mortal Strike.

    The way I have my spam bar set up is mortal strike has a higher priority than execute, but I'm pretty sure an execute with a min rage cost of 10 and glyphed will generally win over mortal strike in damage, so I want to have it spam execute at 20% or lower, along with overpower which I already have set up anyways (Could be wrong though). I'll also apply this to Slam since its just a filler move that stops swing timer/uses GCD. +rep to the person that figures this out.
    Last edited by Ssateneth; 11-09-2009 at 07:16 PM.

  4. #274
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    local v = UnitHealth('target');
    local vr = UnitMaxHealth('target');
    v= v * 100;
    if (v / vr) < 20 then
         v = UnitPower('player');
         if v > 10
              CastSpellByName("execute");
         end
    else
         CastSpellByName("mortal strike");
    end
    That should do what you are looking for(I think).
    Last edited by lanman92; 11-09-2009 at 07:56 PM.

  5. #275
    Democides's Avatar Contributor
    Reputation
    96
    Join Date
    Mar 2007
    Posts
    426
    Thanks G/R
    41/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow... just wow... thank you so much for this. +3 rep, I wish there was some other way to thank you though.

  6. #276
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lanman92 View Post
    Code:
    local v = UnitHealth('target');
    local vr = UnitMaxHealth('target');
    v= v * 100;
    if (v / vr) < 20 then
         v = UnitPower('player');
         if v > 10
              CastSpellByName("execute");
         end
    else
         CastSpellByName("mortal strike");
    end
    That should do what you are looking for(I think).
    any way to get that in a macro? I just use luaninja for macros. i dont know how to do it for addons. judging from the math, that would work.
    I tried
    Code:
    /run local v = UnitHealth('target') local vr = UnitMaxHealth('target') v= v * 100 if (v / vr) < 20 then CastSpellByName("Execute") end
    no dice

    never mind, got a sort of different macro for it to work.
    Last edited by Ssateneth; 11-14-2009 at 09:56 PM.

  7. #277
    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)
    Hey all.

    Been busy the last few days, however I should hopefully have some time to work on WoW stuff soon.

    I've been working on a broader multi-hack as well, which may or may not see the light of day before 3.3 (depends how lazy I get).

    Originally Posted by §liver View Post
    Wow... just wow... thank you so much for this. +3 rep, I wish there was some other way to thank you though.
    Paypal me money, its an expensive process to mainline the heroin necessary to keep me from putting a gun between my teeth.*

    * Stolen from ZP**. Because ZP is awesome.
    ** ZP = Zero Punctuation. If you didn't already know that though you're retarded.

  8. #278
    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)
    Blizzard just released a patch for their files. Not sure what was updated, but by the looks up it, just the exe files for repairing, launching, errors, etc.

  9. #279
    Ktosiek's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any one can confim that?

  10. #280
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,272
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    after patch this not work for me

  11. #281
    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)
    I'm not bothering to even run it to check if it works or not. Rather have Cypher either say it's okay or not. Rather not risk my account on a half chance. :P

  12. #282
    Tmsor's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works fine for me after the patch. Not saying it's safe though.

  13. #283
    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)
    The binaries haven't changed so nothing has changed as far as detection is concerned.

  14. #284
    snigelmannen's Avatar Member
    Reputation
    27
    Join Date
    Jul 2007
    Posts
    318
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Used this without a prob yesterday now it ****s up may be the macro failing. The best way to start this is by the Launcher batch or the PID?
    " Spy sappin mah sentry! "

  15. #285
    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)
    I'd use the Launcher. PID probably has changed. Launcher, you just point it to your .exe file in your WoW folder.

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 01:29 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