{
	"Name": "Khalmee.TeamLoadoutViewer",
	"Description": "Displays everyone's loadouts next to their names on the scoreboard. You can enable and disable the display of different loadout parts through mod settings.",
	"LoadPriority": 2,
	"RequiredOnClient": false,
	"Version": "1.3.1",
	
	"Scripts": [
		{
			"Path": "teamLoadoutViewer.nut",
			"RunOn": "CLIENT && MP",
			"ClientCallback": {
				"After": "TLVinit"
			}
		},
		{
			"Path": "teamLoadoutViewerModSettings.nut",
			"RunOn": "UI",
			"UICallback": {
				"Before": "TLVModSettingsHookup"
			}
		}
	],
	"ConVars": [
		{
		  "Name": "enable_primaries_display",
		  "DefaultValue": "1",
		  "Flags": 16777216
		},
		{
		  "Name": "enable_secondaries_display",
		  "DefaultValue": "1",
		  "Flags": 16777216
		},
		{
		  "Name": "enable_tacticals_display",
		  "DefaultValue": "1",
		  "Flags": 16777216
		},
		{
		  "Name": "enable_ordnances_display",
		  "DefaultValue": "1",
		  "Flags": 16777216
		},
		{
		  "Name": "enable_titans_display",
		  "DefaultValue": "1",
		  "Flags": 16777216
		},
	]
}