Jump to content

KeyError Cheque System


Recommended Posts

 

For the last 4-5 hours i've ....i don't know what else to do.I've read several different KeyError problems.I still can't figure what i should to next.

I've ched the files at least 3 times...i've pack the root...locale...all that needs to be packed. Can someone please help me...?

	0908 21:12:12010 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR
0908 21:12:17955 :: Traceback (most recent call last):
	0908 21:12:17955 ::   File "networkModule.py", line 232, in SetGamePhase
	0908 21:12:17955 ::   File "game.py", line 95, in __init__
	0908 21:12:17956 ::   File "interfaceModule.py", line 414, in MakeInterface
	0908 21:12:17956 ::   File "interfaceModule.py", line 332, in __MakeDialogs
	0908 21:12:17956 ::   File "uiExchange.py", line 43, in LoadDialog
	0908 21:12:17956 ::   File "ui.py", line 3214, in GetChild
	0908 21:12:17957 :: KeyError
0908 21:12:17957 :: : 
0908 21:12:17957 :: 'Owner_Cheque_Icon'
0908 21:12:17957 :: 
	

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

  • Premium

You have defined a variable pointing to <Owner_Cheque_Icon> at uiExchange.py at line 43 in the LoadDialog function.

It should be loaded from exchangedialog.py or from exchangedialog_new.py as I can see from the tutorial files, but your problem probably lays at exchangedialog.py which was not updated in the tutorial.

This is the official code, you will need to change some names but should work just fine ;) 

import uiScriptLocale
import localeInfo
import app

ROOT = "d:/ymir work/ui/game/"

if app.ENABLE_CHEQUE_SYSTEM :
	BOARD_WIDTH = 290
	BOARD_HEIGHT = 189
	window = {
		"name" : "ExchangeDialog",

		"x" : 0,
		"y" : 0,

		"style" : ("movable", "float",),

		"width" : BOARD_WIDTH,
		"height" : BOARD_HEIGHT,

		"children" :
		(
			{
				"name" : "board",
				"type" : "board",
				"style" : ("attach",),

				"x" : 0,
				"y" : 0,

				"width" : BOARD_WIDTH,
				"height" : BOARD_HEIGHT,

				"children" :
				(
					## Title
					{
						"name" : "TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 8,
	 
						"width" : 276,
						"color" : "gray",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":133, "y":3, "text":uiScriptLocale.EXCHANGE_TITLE, "text_horizontal_align":"center" },
						),
					},

					## MiddleBar
					{
						"name" : "Middle_Bar",
						"type" : "expanded_image",

						"x" : (BOARD_WIDTH / 2) - 3,
						"y" : 31,
						"x_scale" : 1.0, 
						"y_scale" : 1.16,
						"image" : ROOT + "windows/middlebar.sub",
					},

					## Owner
					{
						"name" : "Owner",
						"type" : "window",

						"x" : 150,
						"y" : 33,

						"width" : 130,
						"height" : 146,

						"children" :
						(
							{
								"name" : "Owner_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Owner_Cheque",
								"type" : "button",

								"x" : 0,
								"y" : 102,

								#"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"default_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"over_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"down_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Owner_Cheque_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Owner_Money",
								"type" : "button",

								"x" : 0,
								"y" : 124,

								#"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"default_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"over_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"down_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Owner_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Owner_Accept_Light",
								"type" : "button",

								"x" : 95,
								"y" : 102,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
							{
								"name" : "Owner_Accept_Button",
								"type" : "toggle_button",

								"x" : 85,
								"y" : 124,

								"text" : uiScriptLocale.EXCHANGE_ACCEPT,

								"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
								"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
								"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
							},
							{	
								"name" : "strOwner_Cheque",	
								"type" : "text",
								"x" : 67,
								"y" : 104,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_WON,
							},
							{	
								"name" : "strOwner_Yang",	
								"type" : "text",
								"x" : 67,
								"y" : 126,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_YANG,
							},
						),
					},

					## Target
					{
						"name" : "Target",
						"type" : "window",

						"x" : 10,
						"y" : 33,

						"width" : 130,
						"height" : 130,

						"children" :
						(
							{
								"name" : "Target_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Target_Cheque",
								"type" : "image",

								"x" : 0,
								"y" : 102,

								"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Target_Cheque_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Target_Money",
								"type" : "image",

								"x" : 0,
								"y" : 124,

								"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Target_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Target_Accept_Light",
								"type" : "button",

								"x" : 95,
								"y" : 102,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
							{	
								"name" : "strTarget_Cheque",	
								"type" : "text",
								"x" : 67,
								"y" : 104,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_WON,
							},
							{	
								"name" : "strTarget_Yang",	
								"type" : "text",
								"x" : 67,
								"y" : 126,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_YANG,
							},
						),
					},
				),
			},
		),
	}
else :
	window = {
		"name" : "ExchangeDialog",

		"x" : 0,
		"y" : 0,

		"style" : ("movable", "float",),

		"width" : 282,
		"height" : 167,

		"children" :
		(
			{
				"name" : "board",
				"type" : "board",
				"style" : ("attach",),

				"x" : 0,
				"y" : 0,

				"width" : 282,
				"height" : 167,

				"children" :
				(
					## Title
					{
						"name" : "TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 8,
	 
						"width" : 266,
						"color" : "gray",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":133, "y":3, "text":uiScriptLocale.EXCHANGE_TITLE, "text_horizontal_align":"center" },
						),
					},

					## MiddleBar
					{
						"name" : "Middle_Bar",
						"type" : "image",

						"x" : 139,
						"y" : 31,

						"image" : ROOT + "windows/middlebar.sub",
					},

					## Owner
					{
						"name" : "Owner",
						"type" : "window",

						"x" : 144,
						"y" : 33,

						"width" : 130,
						"height" : 130,

						"children" :
						(
							{
								"name" : "Owner_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Owner_Money",
								"type" : "button",

								"x" : 0,
								"y" : 102,

								#"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"default_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"over_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"down_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Owner_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Owner_Accept_Light",
								"type" : "button",

								"x" : 62,
								"y" : 101,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
							{
								"name" : "Owner_Accept_Button",
								"type" : "toggle_button",

								"x" : 85,
								"y" : 101,

								"text" : uiScriptLocale.EXCHANGE_ACCEPT,

								"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
								"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
								"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
							},
						),
					},

					## Target
					{
						"name" : "Target",
						"type" : "window",

						"x" : 10,
						"y" : 33,

						"width" : 130,
						"height" : 130,

						"children" :
						(
							{
								"name" : "Target_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Target_Money",
								"type" : "image",

								"x" : 0,
								"y" : 102,

								"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Target_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Target_Accept_Light",
								"type" : "button",

								"x" : 62,
								"y" : 101,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
						),
					},
				),
			},
		),
	}

 

Link to comment
Share on other sites

Acum 4 ore, Sonitex a spus:

You have defined a variable pointing to <Owner_Cheque_Icon> at uiExchange.py at line 43 in the LoadDialog function.

It should be loaded from exchangedialog.py or from exchangedialog_new.py as I can see from the tutorial files, but your problem probably lays at exchangedialog.py which was not updated in the tutorial.

This is the official code, you will need to change some names but should work just fine ;) 


import uiScriptLocale
import localeInfo
import app

ROOT = "d:/ymir work/ui/game/"

if app.ENABLE_CHEQUE_SYSTEM :
	BOARD_WIDTH = 290
	BOARD_HEIGHT = 189
	window = {
		"name" : "ExchangeDialog",

		"x" : 0,
		"y" : 0,

		"style" : ("movable", "float",),

		"width" : BOARD_WIDTH,
		"height" : BOARD_HEIGHT,

		"children" :
		(
			{
				"name" : "board",
				"type" : "board",
				"style" : ("attach",),

				"x" : 0,
				"y" : 0,

				"width" : BOARD_WIDTH,
				"height" : BOARD_HEIGHT,

				"children" :
				(
					## Title
					{
						"name" : "TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 8,
	 
						"width" : 276,
						"color" : "gray",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":133, "y":3, "text":uiScriptLocale.EXCHANGE_TITLE, "text_horizontal_align":"center" },
						),
					},

					## MiddleBar
					{
						"name" : "Middle_Bar",
						"type" : "expanded_image",

						"x" : (BOARD_WIDTH / 2) - 3,
						"y" : 31,
						"x_scale" : 1.0, 
						"y_scale" : 1.16,
						"image" : ROOT + "windows/middlebar.sub",
					},

					## Owner
					{
						"name" : "Owner",
						"type" : "window",

						"x" : 150,
						"y" : 33,

						"width" : 130,
						"height" : 146,

						"children" :
						(
							{
								"name" : "Owner_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Owner_Cheque",
								"type" : "button",

								"x" : 0,
								"y" : 102,

								#"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"default_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"over_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"down_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Owner_Cheque_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Owner_Money",
								"type" : "button",

								"x" : 0,
								"y" : 124,

								#"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"default_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"over_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"down_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Owner_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Owner_Accept_Light",
								"type" : "button",

								"x" : 95,
								"y" : 102,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
							{
								"name" : "Owner_Accept_Button",
								"type" : "toggle_button",

								"x" : 85,
								"y" : 124,

								"text" : uiScriptLocale.EXCHANGE_ACCEPT,

								"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
								"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
								"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
							},
							{	
								"name" : "strOwner_Cheque",	
								"type" : "text",
								"x" : 67,
								"y" : 104,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_WON,
							},
							{	
								"name" : "strOwner_Yang",	
								"type" : "text",
								"x" : 67,
								"y" : 126,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_YANG,
							},
						),
					},

					## Target
					{
						"name" : "Target",
						"type" : "window",

						"x" : 10,
						"y" : 33,

						"width" : 130,
						"height" : 130,

						"children" :
						(
							{
								"name" : "Target_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Target_Cheque",
								"type" : "image",

								"x" : 0,
								"y" : 102,

								"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Target_Cheque_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Target_Money",
								"type" : "image",

								"x" : 0,
								"y" : 124,

								"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Target_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Target_Accept_Light",
								"type" : "button",

								"x" : 95,
								"y" : 102,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
							{	
								"name" : "strTarget_Cheque",	
								"type" : "text",
								"x" : 67,
								"y" : 104,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_WON,
							},
							{	
								"name" : "strTarget_Yang",	
								"type" : "text",
								"x" : 67,
								"y" : 126,

								"text" : localeInfo.CHEQUE_SYSTEM_UNIT_YANG,
							},
						),
					},
				),
			},
		),
	}
else :
	window = {
		"name" : "ExchangeDialog",

		"x" : 0,
		"y" : 0,

		"style" : ("movable", "float",),

		"width" : 282,
		"height" : 167,

		"children" :
		(
			{
				"name" : "board",
				"type" : "board",
				"style" : ("attach",),

				"x" : 0,
				"y" : 0,

				"width" : 282,
				"height" : 167,

				"children" :
				(
					## Title
					{
						"name" : "TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 8,
	 
						"width" : 266,
						"color" : "gray",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":133, "y":3, "text":uiScriptLocale.EXCHANGE_TITLE, "text_horizontal_align":"center" },
						),
					},

					## MiddleBar
					{
						"name" : "Middle_Bar",
						"type" : "image",

						"x" : 139,
						"y" : 31,

						"image" : ROOT + "windows/middlebar.sub",
					},

					## Owner
					{
						"name" : "Owner",
						"type" : "window",

						"x" : 144,
						"y" : 33,

						"width" : 130,
						"height" : 130,

						"children" :
						(
							{
								"name" : "Owner_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Owner_Money",
								"type" : "button",

								"x" : 0,
								"y" : 102,

								#"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"default_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"over_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",
								"down_image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Owner_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Owner_Accept_Light",
								"type" : "button",

								"x" : 62,
								"y" : 101,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
							{
								"name" : "Owner_Accept_Button",
								"type" : "toggle_button",

								"x" : 85,
								"y" : 101,

								"text" : uiScriptLocale.EXCHANGE_ACCEPT,

								"default_image" : "d:/ymir work/ui/public/small_button_01.sub",
								"over_image" : "d:/ymir work/ui/public/small_button_02.sub",
								"down_image" : "d:/ymir work/ui/public/small_button_03.sub",
							},
						),
					},

					## Target
					{
						"name" : "Target",
						"type" : "window",

						"x" : 10,
						"y" : 33,

						"width" : 130,
						"height" : 130,

						"children" :
						(
							{
								"name" : "Target_Slot",
								"type" : "grid_table",

								"start_index" : 0,

								"x" : 0,
								"y" : 0,

								"x_count" : 4,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 0,
								"y_blank" : 0,

								"image" : "d:/ymir work/ui/public/slot_base.sub",
							},
							{
								"name" : "Target_Money",
								"type" : "image",

								"x" : 0,
								"y" : 102,

								"image" : "d:/ymir work/ui/public/parameter_slot_02.sub",

								"children" :
								(
									{
										"name" : "Target_Money_Value",
										"type" : "text",

										"x" : 59,
										"y" : 2,

										"text" : "1234567",

										"text_horizontal_align" : "right",
									},
								),
							},
							{
								"name" : "Target_Accept_Light",
								"type" : "button",

								"x" : 62,
								"y" : 101,

								"default_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"over_image" : "d:/ymir work/ui/game/windows/accept_button_off.sub",
								"down_image" : "d:/ymir work/ui/game/windows/accept_button_on.sub",
							},
						),
					},
				),
			},
		),
	}

 

Jesues....i'm so stupid....thank you :) it solve that problem.

It seems i havne't beend able to make it fully functional.

Whenever i open a shop->npc i get these following errors:

0909 01:33:01120 :: Cannot find item by 9600
0909 01:33:01120 :: Cannot find item by 9600
0909 01:33:01122 :: Cannot find item by 1590320653
0909 01:33:01122 :: Cannot find item by 1590320653
0909 01:33:01122 :: Cannot find item by 167772160
0909 01:33:01122 :: Cannot find item by 167772160
0909 01:33:01662 :: Cannot find item by 9600
0909 01:33:02174 :: Cannot find item by 9600
0909 01:33:02702 :: Cannot find item by 9600
0909 01:33:03015 :: Cannot find item by 9600
0909 01:33:03527 :: Cannot find item by 9600
0909 01:33:03741 :: Cannot find item by 9600

 

Before trying to add this system everything worked perfectly fine.Some of the items are negative....-119199119 ooh boy ^^

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.