[Release] LuaFoo - Use Lua Protected Commands menu

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 47
  1. #31
    zuuu's Avatar Member
    Reputation
    14
    Join Date
    Jul 2009
    Posts
    60
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So this is the infamous Luafoo that started the gatherbuddy user banwave in WoW.

    [Release] LuaFoo - Use Lua Protected Commands
  2. #32
    ~OddBall~'s Avatar Contributor
    Reputation
    207
    Join Date
    Jan 2008
    Posts
    1,156
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zuuu View Post
    So this is the infamous Luafoo that started the gatherbuddy user banwave in WoW.
    It was the devs being in over their heads that started the banwave..
    https://www.mmowned.com/forums/world-of-warcraft/guides/278302-selecting-bot-you.html - SELECTING THE BOT FOR YOU

    PHWOOOOAAAAAR - Parog was here. <3 <----Wtf's a Parog?

  3. #33
    drognir's Avatar Active Member
    Reputation
    28
    Join Date
    Sep 2007
    Posts
    50
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tbh, I think it was probably the Warden dev(s) that started it by deciding to start scanning the offset which was being used.

  4. #34
    Vilarix's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2 accounts ban because of you -.-

  5. #35
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Getting banned is a risk of botting, my account got banned too not from using this or gb and no gb wasn't 'targeted' some of the gb users got banned because of how it used to choose what process to attach to but that was fixed very rapidly when the warden update was announced. Stop whining just deal with it.

  6. #36
    Vilarix's Avatar Member
    Reputation
    3
    Join Date
    Oct 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I didn't whine, just an information ^^
    I won't stop because of a ban lol

  7. #37
    Malmis's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Uhm, so, is this detected or not?

    EDIT:
    I haven't been banned on EU for using this since it was released, so I guess it's safe.
    Anyways, here are some functions that might come in handy when using this, to make macros smaller.
    Just make your own addon and add the functions and you can call them from macros, or do like I do and add everything to the addon so you don't even need to press buttons.
    Code:
    function OnCD(spell) --Returns true if the spell is on cooldown
    local cd = GetSpellCooldown(spell);
    if(cd==0) then
    return false;
    else
    return true;
    end;
    end;
    function RemovableDebuff(unit,kind) --Checks if the unitid has a debuff of the specified kind. Ex: if(RemovableDebuff("player","Magic") then Cast("Dispel Magic")
    	for index = 1,40 do
    		name,_,_,_,debuffType,_,_,_,_=UnitDebuff(unit,index,true);
    		if(name and debuffType==kind) then
    			return true;
    		end;
    	end
    	return false;
    end;
    function HasBuff(name) --Returns true if you have the specified buff
    	_,_,_,_,_,_,_,c,_=UnitBuff("player",name);
    	if(c) then
    		return true;
    	else
    		return false;
    	end;
    end;
    function TargetDebuff(name) --Returns true if the target has the specified debuff
    	_,_,_,_,_,_,_,c,_=UnitDebuff("target",name);
    	if(c) then
    		return true;
    	else
    		return false;
    	end;
    end;
    Last edited by Malmis; 09-07-2009 at 09:49 AM.

  8. #38
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone knows how the string of the lua path must be written in DoFile?

    The string look like "C:\\This\\Is\\Sparta.lua"?

  9. #39
    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)
    Originally Posted by Sel3n View Post
    Can anyone knows how the string of the lua path must be written in DoFile?

    The string look like "C:\\This\\Is\\Sparta.lua"?
    Yes, exactly like that.

    I believe you can do "C:/This/Is/Sparta.lua" as well.

    Full code for a macro:

    DoFile("C:/This/Is/Sparta.lua")

    Or...

    DoFile("C:\\This\\Is\\Sparta.lua")

  10. #40
    Sel3n's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, and no I'd trying with DoFile("C:\\This\\Is\\Sparta.lua") in first but my post was just for confirmation.

    And you talk about making bot with this, you means making bot using the wow api directly from lua file?

  11. #41
    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)
    Originally Posted by Sel3n View Post
    Thanks, and no I'd trying with DoFile("C:\\This\\Is\\Sparta.lua") in first but my post was just for confirmation.

    And you talk about making bot with this, you means making bot using the wow api directly from lua file?
    WoW exposes quite a bit of information via their Lua engine. You can make a bot from Lua alone if you put the time into it. (Though, it would require some extra stuff, since WoW's Lua engine doesn't provide a way to get real game coords (not the map X/Y, but the actual XYZ of the player))

  12. #42
    Nonominator's Avatar Banned
    Reputation
    30
    Join Date
    Apr 2007
    Posts
    489
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone mind making a premade firemage setup?!

    I know CRAP about lua. I dont think I should have to get a degree in whatever I use. However... learning is fun. I just don't have the time lately.

  13. #43
    Malmis's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this safe for 3.2.2?

  14. #44
    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)
    Originally Posted by Malmis View Post
    Is this safe for 3.2.2?
    Doesn't work with 3.2.2 yet. Been busy lately, and haven't had a chance to update.

  15. #45
    Malmis's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any idea when it will be updated? I would appreciate it immensely

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Finding Lua protection function using OllyDBG. (3.3.5a)
    By Ramono in forum WoW Memory Editing
    Replies: 5
    Last Post: 06-18-2011, 05:40 PM
  2. Use of Lua Protected Commands on a 3.2.0 and 3.3.3a Server
    By grimmjow200 in forum WoW EMU Questions & Requests
    Replies: 5
    Last Post: 06-14-2010, 11:35 PM
  3. [Release/Info] Custom LUA Bosses!
    By Gastricpenguin in forum World of Warcraft Emulator Servers
    Replies: 38
    Last Post: 02-08-2008, 12:14 PM
  4. [RELEASE] My First Lua Boss xD
    By Snailz in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 01-25-2008, 01:38 PM
  5. [RELEASE] Insanely Useful Quest NPC For PvP/Fun Servers
    By Xeneth in forum World of Warcraft Emulator Servers
    Replies: 14
    Last Post: 01-11-2008, 01:48 PM
All times are GMT -5. The time now is 07:10 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