All pastes #570524 Raw Edit

Untitled

public text v1 · immutable
#570524 ·published 2007-06-16 19:08 UTC
rendered paste body
// Comment the following line to disable Radio-Voices
#define SIX_ENA_VOICE


// Change the Chat FontSize
#define SIX_CHAT_FONTSIZE 0.016; // Default: 0.021

// Change the Amount of Chat Rows
#define SIX_CHAT_ROWS_DEFAULT 8; // Default: 4
#define SIX_CHAT_ROWS_OTHER 12; // Default: 8

// Change Y Position of Ingame/Mission/Map Chatbox
#define SIX_CHAT_Y_OTHER 0.68; // Default: 0.75


// Settings used for tracker script
#define track_sizeX 0.5;
#define track_sizeY 0.5;


class SIX_Misc
{
	tracking=1; // 0 - disable.  1 - enable
	bodyR=1; // 0 - disable. 1 - enable

	class SIX_BodyR
	{
		refresh=30; // Refresh time in seconds to check for new units on the map
		limit=100; // Maximum Number of dead bodies on the field
	};

	class SIX_Tracking
	{
		class SideColors
		{
			class EAST
			{
				friendly="colorRed";
			};
			class WEST
			{
				friendly="colorBlue";
			};
			class GUER
			{
				friendly="colorYellow";
			};
			class CIV
			{
				friendly="colorGreen";
			};
		};
	
		class GroupMarkerClasses
		{
			class All
			{
				icon = "dot";
				sizeX = track_sizeX
				sizeY = track_sizeY
			};
			class Man: All
			{
				icon = "USMC_infantrysquad";
			};
			class Car: All
			{
				icon = "USMC_wheeled";			
			};
			class Tank: All
			{
				icon = "USMC_tracks";		
			};
			class APC: All
			{
				icon = "USMC_armoredinfsquad";	
			};
			class BMP2: All
			{
				icon = "USMC_armoredinfsquad";
			};
			class M113: All
			{
				icon = "USMC_tracks";
			};
			class Helicopter: All
			{
				icon = "USMC_helo";
			};			
			class Plane: All
			{
				icon = "USMC_air";
			};
		};
	};
};