Results 1 to 9 of 9
  1. #1
    snipwnage2's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    191
    Reputation
    10
    Thanks
    135
    My Mood
    Tired

    FAMI'S DESU-ESP LEAKED

    HEY GUYS I JUST REVERSED DESUGMOD AND STOLE FAMI'S ESP AND CONVERTED TO LUA!!!



    Hopes u enjoys

    Code:
    local function _IsValid(v)
    	return (v != LocalPlayer() && IsValid(v) && v:Alive() && v:Health() > 0 && !v:IsDormant());
    end
    
    local function Get2DBounds(v)
    	local min,max = v:OBBMins(),v:OBBMaxs()
    
    	local corners = {
    		Vector(min.x,min.y,min.z),
    		Vector(min.x,min.y,max.z),
    		Vector(min.x,max.y,min.z),
    		Vector(min.x,max.y,max.z),
    		Vector(max.x,min.y,min.z),
    		Vector(max.x,min.y,max.z),
    		Vector(max.x,max.y,min.z),
    		Vector(max.x,max.y,max.z)
    	}
    
    	local minx,miny,maxx,maxy = math.huge, math.huge, -math.huge, -math.huge;
    
    	for _, corner in next, corners do
    		local screen = v:LocalToWorld(corner):ToScreen();
    		minx,miny = math.min(minx,screen.x),math.min(miny,screen.y);
    		maxx,maxy = math.max(maxx,screen.x),math.max(maxy,screen.y);
    	end
    	return minx,miny,maxx,maxy;
    end
    
    local function FamiHealthbar()
    	for k,v in next, player.GetAll() do
    		if (_IsValid(v)) then
    			local x1,y1,x2,y2 = Get2DBounds(v);
    			local color = team.GetColor(v:Team());
    			local diff = math.abs(x2 - x1);
    			local diff2 = math.abs(y2 - y1);
    			/*
    			FILLED BOX
    			*/
    			surface.SetDrawColor(Color(color.r,color.g,color.b,50))
    				surface.DrawRect(x1,y1,diff,diff2)
    			/*
    			BOX
    			*/
    			surface.SetDrawColor(5,5,5)
    				surface.DrawOutlinedRect(x1-1,y1-1,diff+2,diff2+2)
    				surface.DrawOutlinedRect(x1+1,y1+1,diff-2,diff2-2)
    			surface.SetDrawColor(color)
    				surface.DrawOutlinedRect(x1,y1,diff,diff2)
    			/*
    			HEALTHBAR
    			*/
    			surface.SetDrawColor(color)
    				surface.DrawRect(x1-5, y1,3,diff2-2)
    			surface.SetDrawColor(5,5,5)
    				surface.DrawLine(x1-4, y1+1,x1-4,y2-1)
    			surface.SetDrawColor(255 - 2.55 * v:Health(), 2.55 * v:Health(),0)
    				surface.DrawRect(x1-5, y2-(diff2/100 * v:Health()),3,diff2/100*(v:Health()))
    			surface.SetDrawColor(5,5,5)
    				surface.DrawOutlinedRect(x1-6, y1-1,5,diff2+2)
    		end
    	end
    end
    
    GAMEMODE["HUDPaint"] = function()
    	FamiHealthbar()
    end
    Last edited by snipwnage2; 08-17-2015 at 08:03 AM.

  2. #2
    c0deine's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    190
    Reputation
    10
    Thanks
    167
    My Mood
    Aggressive
    shon posted this method of doing 2d box esp a long time ago and this just looks like a fucked up version of it because whoever made it cant copypaste right

  3. #3
    snipwnage2's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    191
    Reputation
    10
    Thanks
    135
    My Mood
    Tired
    Quote Originally Posted by c0deine View Post
    shon posted this method of doing 2d box esp a long time ago and this just looks like a fucked up version of it because whoever made it cant copypaste right
    This is the uhh GetCoordinate function back from 2013 its been pasted a million times dude.

  4. #4
    kingboy111's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    129
    Reputation
    10
    Thanks
    103
    My Mood
    Sneaky
    do

    Code:
    local health = math.Clamp(v:Health(), 0, 100)
    return HSVToColor(health * 1.2, 1, 1)
    for a nice health color that doesn't have the brownish color in the middle

  5. #5
    Scetch08's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    your hallucinations
    Posts
    101
    Reputation
    10
    Thanks
    107
    My Mood
    Lurking
    Need proof it works. @snipwnage2
    什么他妈的你他妈的刚才说我,你这小婊子?我会让你知道我毕业了我班的顶部的海豹突击队,我已经参与了许多 秘密袭击的基地组织,和我有超过300证实杀死。我在训练的大猩猩战,我在整个美国军队的最高狙击手。你是 我什么都不是,但只是一个目标。我会消灭你他妈的精度喜欢哪一个从未见过在这个地球上,记住我的话他妈的。 你以为你可以逃脱说狗屎我在互联网上?再想想,笨蛋。在我们发言,我联系我的秘密横跨美国间谍网络和IP被 追踪作为现在让您风暴,蛆更好的准备。这抹了你打电话

  6. #6
    aajake13's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    12
    My Mood
    Amazed
    Quote Originally Posted by c0deine View Post
    shon posted this method of doing 2d box esp a long time ago and this just looks like a fucked up version of it because whoever made it cant copypaste right
    lol ur right

  7. #7
    poop34's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    12
    My Mood
    Angelic
    gonna steal this esp thx playboy

  8. The Following User Says Thank You to poop34 For This Useful Post:

    p100 body shot (09-10-2015)

  9. #8
    bee_tee_gee's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    157
    Reputation
    10
    Thanks
    64
    mfw filled box

  10. #9
    Friendly101's Avatar
    Join Date
    Aug 2015
    Gender
    female
    Posts
    28
    Reputation
    10
    Thanks
    20
    Quote Originally Posted by aajake13 View Post
    lol ur right
    hahaha you can't code nor do you not know that hera is a garbage cheat you chubby cholo

  11. The Following User Says Thank You to Friendly101 For This Useful Post:

    bee_tee_gee (08-25-2015)

Similar Threads

  1. [Outdated] |Blacklight Retribution ESP WallHack nospread and no recoil|Leak|Divergent|
    By Divergent in forum BlackLight Retribution Hacks
    Replies: 63
    Last Post: 02-13-2016, 07:31 PM
  2. [Release] desuGMod leak [get rekt fami]
    By n0t_cdriza in forum Garry's Mod Hacks & Cheats
    Replies: 14
    Last Post: 07-22-2015, 08:11 AM
  3. [Detected] [LEAK] LiquidSmoke | ESP | Legit | Rage
    By Tezuni in forum Counter-Strike 2 Hacks
    Replies: 142
    Last Post: 03-25-2015, 09:11 AM
  4. HL2 Hack With Aimbot|ESP| And much, Much more.
    By quin123 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 10
    Last Post: 04-03-2009, 12:57 PM
  5. ESP/Chams For BHD 1.5.0.5 Arugs 1.2m: Undetected
    By sf0d in forum General Game Hacking
    Replies: 1
    Last Post: 11-05-2008, 02:31 PM