Results 1 to 6 of 6
  1. #1
    pinkieseb74's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    40

    How does one make an item ESP?

    Im not going to be asking for Item ESP's, but if you have a free one, linky :P

    Anyways, I know things like teleportation and other hacks/glitches get detected/patched quite quickly and bans are handed out. But an item ESP would be almost impossible to detect right? Because nothing wrong would be happening to my DayZ character, I'd be moving at normal speeds, looting at normal speeds ect. So are Item ESP's undetectable? If so, how would I go about making them, I know some basic coding here and there several different languages ect.
    In other words, could someone link me to a thread of where to start when making an esp hack or tell me here? Thanks
    Also, the steam SA version, not the pirated one.
    Blurry siggy because MPGH says "No fuck you an your HD pics"

  2. #2
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted

    Cool

    Heres a quick tutorial on item ESP in SQF and how to customize it.

    Code:
    n13 =
    	{
    		n132 = 
    		{
    			if (isNil 'n131') then {n131 = 0;};
    			if (n131 == 0) then
    			{
    				hint "All Items ESP ON";
    				n131 = 1;
    				arr2 = [];
    				while {n131 == 1} do
    				{
    					_entities = (allMissionObjects "inventorybase");
    					{
    						if !(_x in arr2) then {
    							arr2 = arr2 + [_x];
    							[_x] spawn n133;
    							sleep 0.25;
    						};
    					} forEach _entities;
    					sleep 5;
    				};
    			} else {
    				hint "All Items ESP OFF";
    				n131 = 0;
    			};
    		};
    		n133 = 
    		{
    			disableSerialization;
    			if (isNil 'ESP_Count') then {ESP_Count = 2733;};
    			ESP_Count cutRsc ['rscDynamicText', 'PLAIN'];
    			ESP_Count = ESP_Count + 1;
    			_ctrl = ((uiNamespace getvariable 'BIS_dynamicText') displayctrl 9999);
    			_ctrl ctrlShow true; _ctrl ctrlEnable true; _ctrl ctrlSetFade 0;
    			_unit = _this select 0;
    			while {(!isNull _unit) && ((player distance _unit) < 1000)} do
    			{
    				if (n131 == 0) exitWith {arr2 = arr2 - [_unit];_ctrl ctrlShow false;_ctrl ctrlEnable false;};
    				_pos = [(getPosATL _unit) select 0, (getPosATL _unit) select 1, ((getPosATL _unit) select 2)];
    				_pos2D = WorldToScreen _pos;
    				if (count _pos2D > 0) then
    				{
    					_ctrl ctrlSetPosition [(_pos2D select 0) - (safezoneW / 2), (_pos2D select 1), safezoneW, safezoneH];
    					_text = parseText format ["<t size='0.22' color='#00FC97'>%1 (%2m)</t>", typeOf _unit, round (player distance _unit)];
    					_ctrl ctrlSetStructuredText _text;
    					_ctrl ctrlCommit 0;
    				};
    				sleep 0.01;
    			};
    			arr2 = arr2 - [_unit];
    			_ctrl ctrlShow false;
    			_ctrl ctrlEnable false;
    		};
    		[] spawn n132;
    	};
    Find this line

    Code:
     _entities = (allMissionObjects "inventorybase");
    The part in quote wraps ("") can be changed to any item classname. for example "riflecore" would be all rifles in the game or "repeater" which would just be that one rifle.

    They can also be combined to add multiple objects such as
    Code:
    (allMissionObjects "riflecore") + (allMissionObjects "ShotgunBase") + (allMissionObjects "pistolcore");
    If you want vehicles instead do
    Code:
    (allMissionObjects "V3S_Cargo") or (allMissionObjects "LandVehicle");

    Changing Color and Size

    Find this line
    Code:
    _text = parseText format ["<t size='0.22' color='#00FC97'>%1 (%2m)</t>", typeOf _unit, round (player distance _unit)];
    Change the quotes to what ever size you want
    Code:
    size='0.22'
    Color is changed here it uses Html color code
    Code:
    color='#00FC97'

  3. The Following User Says Thank You to Mizzle420420 For This Useful Post:

    pinkieseb74 (01-30-2015)

  4. #3
    pinkieseb74's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    40
    Quote Originally Posted by Mizzle420420 View Post
    [COLOR="DarkRed"][COLOR="#890000"]Heres a quick tutorial on item ESP in SQF and how to customize it. -snip-
    So with code like that would I need to get an injector and then use the code and inject it into DayZ?
    Also, I need to learn SQF it seems :3

    Edit - is allMissionObjects "inventorybase" everything? Or only things like canned food, drinks, ect. and is there a way to see all these different values and what is included in them for things like water pumps?
    Last edited by pinkieseb74; 01-30-2015 at 11:39 PM.
    Blurry siggy because MPGH says "No fuck you an your HD pics"

  5. #4
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted
    Yes you need a script injection method

    - - - Updated - - -

    Quote Originally Posted by pinkieseb74 View Post
    Edit - is allMissionObjects "inventorybase" everything? Or only things like canned food, drinks, ect. and is there a way to see all these different values and what is included in them for things like water pumps?
    It includes all items that can be stored in your inventory.

  6. #5
    pinkieseb74's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    40
    Quote Originally Posted by Mizzle420420 View Post
    Yes you need a script injection method

    - - - Updated - - -



    It includes all items that can be stored in your inventory.
    Okay. I should learn to Execute and inject this stuff first then :3 Thanks for all the help
    Blurry siggy because MPGH says "No fuck you an your HD pics"

  7. #6
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Quote Originally Posted by pinkieseb74 View Post
    Okay. I should learn to Execute and inject this stuff first then :3 Thanks for all the help
    Believe this is solved.
    /Closed


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

Similar Threads

  1. How does one simply make a GIF.
    By Stitch in forum General
    Replies: 20
    Last Post: 03-30-2014, 10:59 PM
  2. How does MPGH make there cool V.I.P Menu
    By moffat in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 18
    Last Post: 08-24-2010, 10:03 AM
  3. how does one become a non n00b
    By owenh1 in forum CrossFire Hacks & Cheats
    Replies: 16
    Last Post: 09-08-2009, 02:28 PM
  4. How Does One Use OllyDbg?
    By Exotiq in forum WarRock - International Hacks
    Replies: 7
    Last Post: 08-23-2009, 01:42 PM
  5. How does MPGH make hacks?
    By Just a Voice in forum C++/C Programming
    Replies: 15
    Last Post: 07-20-2009, 01:58 AM