Results 1 to 2 of 2
  1. #1
    0xymoron98's Avatar
    Join Date
    Nov 2020
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1

    Cool GMod DayZ Item ESP

    slapped this together but i have no intention of using it
    works on CSi gmod dayz server
    as of now it's undetected but i'm sure that wont last long
    enjoy

    Code:
    local items = {}
    
    local item_table = GAMEMODE.DayZ_Items
    
    for i = 1, #item_table do
    
    	local ent = item_table[i]
    	
    	items[ent.idnum] = ent.name
    
    end
    
    hook.Add( "DrawOverlay", "DrawOverlay", function()
    
    	local tab = ents.FindByClass( "base_item" )
    	
    	for i = 1, #tab do
    	
    		local ent = tab[i]
    		
    		local id = ent:GetItem()
    		
    		local name = items[id]
    		
    		if !IsValid( ent ) or name == nil then continue end
    
    		local pos = ent:GetPos():ToScreen()
    		
    		draw.SimpleText( name, "default", pos.x, pos.y, color_white, TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER )
    	
    	end
    
    end )
    Last edited by 0xymoron98; 01-04-2021 at 02:48 AM.

  2. The Following User Says Thank You to 0xymoron98 For This Useful Post:

    1jeuu (01-04-2021)

  3. #2
    Future's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Location
    Skies of blue
    Posts
    1,299
    Reputation
    428
    Thanks
    14,336
    //approved
    MPGH's Rules | Marketplace | How IM works | Report Scam Attempt
    In case you need me : IM | PM

    Middleman from 29/01/2021 - present
    Minion+ from 12/04/2020 - present.
    Minion from 09/01/2020 - 12/04/2020.
    MPGH News Force from 02/11/2019 - not sure anymore.
    Resource Team from 02/11/2019 - 12/04/2020.
    Premium Member since 16/09/2019.
    Member since 13/10/2015.


Similar Threads

  1. [Outdated] DayZ Item Adder
    By zZzeta/S in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 44
    Last Post: 12-24-2020, 02:10 PM
  2. [Release] Dayz Standalone İtem Esp Script
    By AlisaAlis in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 70
    Last Post: 08-11-2015, 12:46 AM
  3. [Outdated] Dayz STANDALONE ITEM ESP v2.1
    By AlisaAlis in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 92
    Last Post: 06-07-2015, 03:40 AM
  4. [Help Request] DayZ ITEM ESP Script?
    By killallmans in forum DayZ Help & Requests
    Replies: 16
    Last Post: 02-27-2013, 06:25 PM
  5. Free DayZ Items
    By ProRaiin in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 59
    Last Post: 09-01-2012, 12:40 PM