Help with changing configSolved

Hi... I am very new to plugins and edting the config.. I've tried my best to change to how I want, and use a json validator to check but I get errors I don't really understand... I always seem to creep closer to getting it right but then i remove one more bit of code and I screw it up...

 

All I want is to have only 1 page, with just text and no images... So I've been trying to remove other pages and code to do with images... 

Can anyone help? This where I've gotten to... If anyone has time to help I would greatly appreciate it. Thank you!

{
	"settings": {
		"Tabs": [{
			"ButtonText": "First Tab",
			"HeaderText": "First Tab",
			"Pages": [{
				"TextLines": [
					"This is first tab, first page.",
					"Add some text here by adding more lines.",
					"You should replace all default text lines with whatever you feel up to",
					"type <color=red> /info </color> to open this window",
					"Press next page to check second page.",
					"You may add more pages in config file."
				],
				"ImageSettings": [{
						"Position": {
							"MinX": 0.0,
							"MaxX": 0.5,
							"MinY": 0.0,
							"MaxY": 0.5
						},
						"Url": "http://th04.deviantart.net/fs70/PRE/f/2012/223/4/4/rust_logo_by_furrypigdog-d5aqi3r.png",
						"TransparencyInPercent": 100
					},
					{
						"Position": {
							"MinX": 0.5,
							"MaxX": 1.0,
							"MinY": 0.0,
							"MaxY": 0.5
						},
						"Url": "http://files.enjin.com/176331/IMGS/LOGO_RUST1.fw.png",
						"TransparencyInPercent": 100
					},
					{
						"Position": {
							"MinX": 0.0,
							"MaxX": 0.5,
							"MinY": 0.5,
							"MaxY": 1.0
						},
						"Url": "http://files.enjin.com/176331/IMGS/LOGO_RUST1.fw.png",
						"TransparencyInPercent": 100
					},
					{
						"Position": {
							"MinX": 0.5,
							"MaxX": 1.0,
							"MinY": 0.5,
							"MaxY": 1.0
						},
						"Url": "http://th04.deviantart.net/fs70/PRE/f/2012/223/4/4/rust_logo_by_furrypigdog-d5aqi3r.png",
						"TransparencyInPercent": 100
					}
				],



				"ImageSettings": []
			}],
			"TabButtonAnchor": 4,
			"TabButtonFontSize": 16,
			"HeaderAnchor": 0,
			"HeaderFontSize": 32,
			"TextFontSize": 16,
			"TextAnchor": 3,
			"OxideGroup": ""
		}],
		"ShowInfoOnPlayerInit": true,
		"ShowInfoOnlyOncePerRuntime": true,
		"TabToOpenByDefault": 0,
		"Position": {
			"MinX": 0.15,
			"MaxX": 0.9,
			"MinY": 0.2,
			"MaxY": 0.9
		},
		"BackgroundImage": {
			"Enabled": false,
			"Position": {
				"MinX": 0.0,
				"MaxX": 1.0,
				"MinY": 0.0,
				"MaxY": 1.0
			},
			"Url": "http://7-themes.com/data_images/out/35/6889756-black-backgrounds.jpg",
			"TransparencyInPercent": 100
		},
		"ActiveButtonColor": "#0255255255",
		"InactiveButtonColor": "#128128128255",
		"CloseButtonColor": "#128128128255",
		"CloseButtonText": "Close",
		"NextPageButtonColor": "#128128128255",
		"NextPageText": "Next Page",
		"PrevPageButtonColor": "#128128128255",
		"PrevPageText": "Prev Page",
		"BackgroundColor": "#000255",
		"HelpButton": {
			"IsEnabled": false,
			"Text": "Help",
			"Position": {
				"MinX": 0.0,
				"MaxX": 0.05,
				"MinY": 0.1,
				"MaxY": 0.14
			},
			"Color": "#128128128255",
			"FontSize": 18
		},
		"UpgradedConfig": false
	}
}

Easy

{
	"settings": {
		"Tabs": [{
			"ButtonText": "First Tab",
			"HeaderText": "First Tab",
			"Pages": [{
				"TextLines": [
					"This is first tab, first page.",
					"Add some text here by adding more lines.",
					"You should replace all default text lines with whatever you feel up to",
					"type <color=red> /info </color> to open this window",
					"Press next page to check second page.",
					"You may add more pages in config file."
				],
				"ImageSettings": []
			}],
			"TabButtonAnchor": 4,
			"TabButtonFontSize": 16,
			"HeaderAnchor": 0,
			"HeaderFontSize": 32,
			"TextFontSize": 16,
			"TextAnchor": 3,
			"OxideGroup": ""
		}],
		"ShowInfoOnPlayerInit": true,
		"ShowInfoOnlyOncePerRuntime": true,
		"TabToOpenByDefault": 0,
		"Position": {
			"MinX": 0.15,
			"MaxX": 0.9,
			"MinY": 0.2,
			"MaxY": 0.9
		},
		"BackgroundImage": {
			"Enabled": false,
			"Position": {
				"MinX": 0.0,
				"MaxX": 1.0,
				"MinY": 0.0,
				"MaxY": 1.0
			},
			"Url": "http://7-themes.com/data_images/out/35/6889756-black-backgrounds.jpg",
			"TransparencyInPercent": 100
		},
		"ActiveButtonColor": "#0255255255",
		"InactiveButtonColor": "#128128128255",
		"CloseButtonColor": "#128128128255",
		"CloseButtonText": "Close",
		"NextPageButtonColor": "#128128128255",
		"NextPageText": "Next Page",
		"PrevPageButtonColor": "#128128128255",
		"PrevPageText": "Prev Page",
		"BackgroundColor": "#000255",
		"HelpButton": {
			"IsEnabled": false,
			"Text": "Help",
			"Position": {
				"MinX": 0.0,
				"MaxX": 0.05,
				"MinY": 0.1,
				"MaxY": 0.14
			},
			"Color": "#128128128255",
			"FontSize": 18
		},
		"UpgradedConfig": false
	}
}

Thanks heaps!

Locked automatically