Fusi0n Fir3
Member
Files Required:
Mission.PBO
Programs Required:
Notepad ++ (Recommended)
Notepad
PBO Manager/ PBO Viewer (Your Choice)
Difficulty:
Relatively Easy
1. Retrieve your DayZ_Mission.PBO from your source, place it on your desktop.
2. Extract it using PBO Manager/PBO Viewer.
3. Open the extracted folder.
4.
Option One:
Download DX_Custom_Monitor.aqf
http://dayz.st/w/Debug_Monitor
- admin note, please do not post other peoples scripts under adfly or other cash generation sites.
Paste That Into you DayZ_Mission Folder
Path: C:\Users\******\Desktop\dayz_mission
Option Two:
Copy and paste the following code into a new txt file save it as (*.* All Files) DX_Custom_Monitor.sqf
5. Open you Init.sqf
6. Scroll Directly to the bottom of the page and paste this code
7. Save Init.sqf and exit your editor.
8. Repack your DayZ_Mission back into a PBO File and upload it to your server and your done
Thank You NullPo For Posting
99% NullPo
1% Me Making it Easier To Install (Explaining More)
Any Questions or Queries, Please Post Below
Mission.PBO
Programs Required:
Notepad ++ (Recommended)
Notepad
PBO Manager/ PBO Viewer (Your Choice)
Difficulty:
Relatively Easy
=======================================================
What We Are Adding
=======================================================

=

=======================================================
Lets Get Started1. Retrieve your DayZ_Mission.PBO from your source, place it on your desktop.
2. Extract it using PBO Manager/PBO Viewer.
3. Open the extracted folder.
4.
Option One:
Download DX_Custom_Monitor.aqf
http://dayz.st/w/Debug_Monitor
- admin note, please do not post other peoples scripts under adfly or other cash generation sites.
Paste That Into you DayZ_Mission Folder
Path: C:\Users\******\Desktop\dayz_mission
Option Two:
Copy and paste the following code into a new txt file save it as (*.* All Files) DX_Custom_Monitor.sqf
Code:
if (isNil "custom_monitor") then {custom_monitor = true;} else {custom_monitor = !custom_monitor;};
while {custom_monitor} do
{
_kills = player getVariable["zombieKills",0];
_killsH = player getVariable["humanKills",0];
_killsB = player getVariable["banditKills",0];
_humanity = player getVariable["humanity",0];
_headShots = player getVariable["headShots",0];
hintSilent parseText format ["
<t size='2'font='Bitstream'align='center'>%1</t><br/>
<t size='1'font='Bitstream'align='left'>Blood:</t><t size='1' font='Bitstream'align='right'>%2</t><br/>
<t size='1'font='Bitstream'align='left'>Humanity:</t><t size='1'font='Bitstream'align='right'>%3</t><br/>
<t size='1'font='Bitstream'align='left'>Players Killed:</t><t size='1'font='Bitstream'align='right'>%4</t><br/>
<t size='1'font='Bitstream'align='left'>Bandits Killed:</t><t size='1'font='Bitstream'align='right'>%5</t><br/>
<t size='1'font='Bitstream'align='left'>Zombies Killed:</t><t size='1'font='Bitstream'align='right'>%6</t><br/>
<t size='1'font='Bitstream'align='left'>Headshots:</t><t size='1'font='Bitstream'align='right'>%7</t><br/>
<t size='2'font='Bitstream'align='center'>DX-Gaming.com</t><br/>
",dayz_playerName,r_player_blood,round _humanity,_killsH,_killsB,_kills,_headShots];
sleep 1;
};
5. Open you Init.sqf
6. Scroll Directly to the bottom of the page and paste this code
Code:
[] ExecVM "DX_custom_monitor.sqf";
8. Repack your DayZ_Mission back into a PBO File and upload it to your server and your done
Thank You NullPo For Posting
99% NullPo
1% Me Making it Easier To Install (Explaining More)
Any Questions or Queries, Please Post Below