+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++/````````:++++++++++++++++++++++++++++++++++++++-```````.+++++++++++++
+++++++++-        `++++::::::::://+++/:::::/+++::::::++++`        :++++++++++++
+++++-.:+.   `     :+++`          .++-   `.`++-     `+++:    `    .++++++++++++
+++/- `:/    :.    .+++-    -/.    :+/  .++::+`     -+++.   .:     /:`./+++++++
++/`  `:-   `+:     /++-    -/.   `/++:/+++.`.      :++/    :+`  ```  `:-:+++++
++:    `.    .`     -++-         `/+++:+++++-  `    :++-    `.   `    .` .+++++
++/      .          `++-    .-`   `+++++++/-/.`:    :++`         `    ..:++++++
++/`    .`. -++.     -+-    :+.    /+/:++++``::/    -+:    `/+: ``   -+++++++++
+++-    .`.` /-       :`    `/.    .+- .+++: `+.    `+`     -+` `    -+++++++++
++/`   `/::::.++++++++++++++++++++++++++++++++++++++++++++.:::-----`  :++++++++
+:``-- .+++++++++++++++++ArMaTeC DEBUG Scripts+++++++++++++++++++++: `  /++++++
/`-++: :++++++++++++++++++++++++++++++++++++++++++++++++++++++++++: .+: -++++++
+++++++++++++++++++++++++++++++++ArMaTeC+++++++++++++++++++++++ -/++:`-:/++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Updated to 1.1
Corrected ">>Debug" option so that it shows in all vehicles

Adding armatec debug to your scripts (See exsample script folder)
1. Place the ArMaTeC DEBUG game logic on your map in the editor
2. Create a file named init.sqf and add in the following
[code]
//Enable debug
ArMaT_DEBUG_ENABLED = 1;
[/code]

3. Edit your scripts so that its outputting what debug info following are some exsamples or how to add the code
[code]
	if (YOURDEBUGNAME)then
	{
		res = ["Script Name","DEBUG INFOMATION"] call ArMaT_DEBUG;
	};
[/code]

[code]
	while{true}do
	{
		if (YOURDEBUGNAME)then
		{
		res = ["Script Name.sqf",format["DEBUG INFOMATION %1",getpos player]] call ArMaT_DEBUG;
		};
	sleep 1;
	};
[/code]
4. if you have used a custom debug var e.g. YOURDEBUGNAME you need to add 
[code]
	YOURDEBUGNAME = true; 
[/code]
5. Run the mission and click the ">>Debug" button.

To load some default debug info created just to test otu the debugger
_x = 4;//Ammount of debug 3
[_x]call ARMATECDEFAULTDATA;
