Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused

    DayZ Mod -ESP/GOD- Source Code

    Okay, so i have no idea if these are patched or not. these did work for Epoch 1.0.5.1 not sure for the latest 1.8.4 DayZ Vanillia patch
    but here ya go do what ever ya want. edit them or what ever.

    ESP

    Code:
    DisableSerialization;
    if (isNil "yothefuckingplayerishere") then {yothefuckingplayerishere = true;} else {yothefuckingplayerishere = !yothefuckingplayerishere};
    if(yothefuckingplayerishere) then {titleText ["Player ESP Activated!","PLAIN DOWN"]; titleFadeOut 4;};
    setGroupIconsVisible [false,true];
    while {yothefuckingplayerishere} do {
    	_i = 0;
    	_j = count playableUnits;
    
    	for "_i" from 0 to _j do
    	{
    		_unit = playableUnits select _i;
    		if (alive _unit && player != _unit) then{
    			_group = group _unit;
    			_group addGroupIcon ["b_inf", [0,0]];
    			_group setGroupIconParams [[0,0,1,1],format ["%1 - %2m", name _unit, ceil (_unit distance player)],0.8,true];
    		};
    	};
    	sleep 1;
    	_i = 0;
    	_j = count playableUnits;
    	for "_i" from 0 to _j do
    	{
    		_unit = playableUnits select _i;	
    		_group = group _unit;
    		clearGroupIcons _group;
    	};
    };
    
    titleText ["Player ESP Deactivated!","PLAIN DOWN"]; titleFadeOut 4;};
    God

    Code:
    private ["_btnAbort","_damage","_display","_selection"];
    
    if (isNil "God") then {God = 0;};
    
    if (God == 0) then {
    	God = 1;
    	cutText ["GodMode Activated", "PLAIN DOWN"];
    	R3F_TIRED_FNCT_Voile_Noir = {};
    	R3F_TIRED_FNCT_DoBlackVanish = {};
    	fnc_usec_damageHandler = {};
    	player_zombieCheck = {};
    	
    	r_player_dead = false;
    	disableSerialization;
    	"dynamicBlur" ppEffectAdjust [0]; 
    	"dynamicBlur" ppEffectCommit 5;
    	dayz_hunger = 0;
    	dayz_sourceBleeding = objNull;
    	dayz_temperatur = 40;
    	dayz_thirst = 0;
    	disableUserInput false;
    	r_action = false;
    	r_action_unload = false;
    	r_doLoop = false;
    	r_drag_sqf = false;
    	r_fracture_legs = false;
    	r_fracture_arms = false;
    	r_handlercount = 0;
    	r_interrupt = false;
    	r_player_cardiac = false;
    	r_player_blood = 12000;
    	r_player_handler = false;
    	r_player_handler1 = false;
    	r_player_infected = false;
    	r_player_injured = false;
    	r_player_inpain = false;
    	r_player_loaded = false;
    	r_player_lowblood = false;
    	r_player_timeout = 0;
    	r_player_unconscious = false;
    	r_self = false;
    	_selection = "legs";
    	_damage = 0;
    	player setHit [_selection,_damage];
    	player setVariable ["hit_legs",0,true];
    	player setVariable ["hit_hands",0,true];
    	player setVariable ["messing",[dayz_hunger,dayz_thirst],true];
    	player setVariable ["NORRN_unconscious",false,true];
    	player setVariable ["startcombattimer",0,true];
    	player setVariable ["combattimeout",0,true];
    	player setVariable ["unconsciousTime",0,true];
    	player setVariable ["USEC_BloodQty",12000,true];
    	player setVariable ["USEC_infected",false,true];
    	player setVariable ["USEC_injured",false,true];
    	player setVariable ["USEC_inPain",false,true];
    	player setVariable ["USEC_isCardiac",false,true];
    	player setVariable ["USEC_lowBlood",false,true];
    	player setVariable ["medForceUpdate",true,true];
    	0 fadeSound 1;
    	resetCamShake;
    } else {
    	God = 0;
    	cutText ["GodMode Deactivated", "PLAIN DOWN"];
    	fnc_usec_damageHandler = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_damageHandler.sqf";
    	player_zombieCheck = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_zombieCheck.sqf";
    	player allowDamage true;
    };
    
    while {God == 1} do {
    	player allowDamage false;
    	_display = findDisplay 49;
    	_btnAbort = _display displayCtrl 104;
    	_btnAbort ctrlEnable true;
    	vehicle player setDamage 0;
    	vehicle player setFuel 1;
    	sleep .05;
    };
    Last edited by tykath1234; 03-19-2015 at 11:30 AM.

  2. #2
    SelectHF's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    USA
    Posts
    4
    Reputation
    10
    Thanks
    0
    Looks cool im going to test it out now

  3. #3
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused
    Quote Originally Posted by SelectHF View Post
    Looks cool im going to test it out now
    Please do , if these still work please let me know, ill maybe create something of, of it
    Last edited by tykath1234; 03-19-2015 at 11:32 AM.

  4. #4
    warezjoe23's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    1
    Confirmed working, but you cannot open doors/pack or unpack vehicles when enabled.

  5. #5
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused
    Quote Originally Posted by warezjoe23 View Post
    Confirmed working, but you cannot open doors/pack or unpack vehicles when enabled.
    Thank you, i have made a menu with this ESP Code.

  6. #6
    hayden5406's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by tykath1234 View Post
    Thank you, i have made a menu with this ESP Code.
    How do I use this bit of code?


    If I need an injector can you link me one?

  7. #7
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused
    Quote Originally Posted by hayden5406 View Post
    How do I use this bit of code?


    If I need an injector can you link me one?
    Whats your skype name?

  8. #8
    stefs30's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    How do i use this?

  9. #9
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused
    Quote Originally Posted by stefs30 View Post
    How do i use this?
    Seriously, you need an Executor/Injector to use it. if you don't have one it useless to you.

  10. #10
    vasilis1998's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    My Mood
    Bitchy
    going to rekt some kids Thanks

  11. #11
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused
    Quote Originally Posted by vasilis1998 View Post
    going to rekt some kids Thanks
    Haha, and no problem man. have fun!

  12. #12
    Blaze12321's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    2
    How would I make this code work. I am used to dll's not a source code...

  13. #13
    tykath1234's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Your closet
    Posts
    135
    Reputation
    10
    Thanks
    997
    My Mood
    Amused
    Quote Originally Posted by Blaze12321 View Post
    How would I make this code work. I am used to dll's not a source code...
    Didn't you read what i said?. "Seriously, you need an Executor/Injector to use it. if you don't have one it useless to you."
    Also here is a thread, read it
    https://www.mpgh.net/forum/showthread.php?t=797037 & https://www.mpgh.net/forum/showthread.php?t=885227

    Thanks, and have a nice day

  14. #14
    Drav0x151's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    going to rekt some kids Thanks

  15. #15
    Tootles5882's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    2
    I'm trying to find a place to buy hacks I'm noob to all this stuff lol that's why I buy, is Aim Junkies a reliable place to buy em undetected?
    Last edited by Tootles5882; 03-24-2015 at 11:41 PM.

Page 1 of 2 12 LastLast

Similar Threads

  1. ESP Box [Source Code]
    By TheLittleRaven in forum Counter-Strike 2 Discussions
    Replies: 0
    Last Post: 09-17-2014, 01:50 AM
  2. [Source Code] DayZ 0.46 PBO source codes
    By Dattle in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 7
    Last Post: 07-09-2014, 06:33 PM
  3. [WTS] **DayZ CD Key Stealer Source Code**
    By marlboro joe in forum Selling Accounts/Keys/Items
    Replies: 2
    Last Post: 03-07-2013, 06:38 PM
  4. [Source Code] ESP hitbox source code
    By Maui_Hawaii_USA in forum Crysis 2 Hacks / Cheats
    Replies: 3
    Last Post: 06-07-2012, 10:05 PM
  5. Anti-Kick & God-Mode - MORE! [ Source Code ]
    By Aeir in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 15
    Last Post: 04-14-2012, 09:29 AM