Jump to content

Official Quest Renewal


Recommended Posts

  • Active Member
On 4/12/2023 at 2:11 PM, ATAG said:

Maybe a dumb question, but is there any way to "pop up" a quest scroll?

levelup.quest stopped working after the upgrade. The makequestbutton function is dead by itself, but send_letter works. This way it is unable to use the 'when info begin' event 😞 Maybe i missed something?

I've simply solved my problem...
root/interfaceModule.py

		# Unused.
		def ShowQuestButton(self):
			pass

I added the 2 missing function below it, looks like this:

		# Unused.
		def ShowQuestButton(self):
			pass
		
		# QUEST_BUTTON
		def RecvQuest(self, index, name):
			global IsQBHide
			IsQBHide = 0
			self.ShowAllQuestButton()
		
		def BINARY_RecvQuest(self, index, name, iconType, iconName):
			self.RecvQuest(self, index, name)
		# END_OF_QUEST_BUTTON

Very simple solution, but works fine for me 😃

Edited by ATAG
  • Eyes 1
  • Love 1
Link to comment
Share on other sites

After installation i have a Little problem 

 

uiCharacter.py(line:1184) __LoadWindow
uiCharacter.py(line:935) __BindObject
ui.py(line:3482) GetChild

CharacterWindow.__LoadWindow - <type 'exceptions.KeyError'>:'Emoticon_Page'

0418 10:48:12288 :: ============================================================================================================
0418 10:48:12288 :: Abort!!!!

Emoticon_Page are in uicharacter.py and characterwindow.py.

 

someone can help me ? ❤️ 

Link to comment
Share on other sites

  • Active Member
5 hours ago, R3Z said:

After installation i have a Little problem 

 

uiCharacter.py(line:1184) __LoadWindow
uiCharacter.py(line:935) __BindObject
ui.py(line:3482) GetChild

CharacterWindow.__LoadWindow - <type 'exceptions.KeyError'>:'Emoticon_Page'

0418 10:48:12288 :: ============================================================================================================
0418 10:48:12288 :: Abort!!!!

Emoticon_Page are in uicharacter.py and characterwindow.py.

 

someone can help me ? ❤️ 

My uiscript/characterwindow.py:

Spoiler
import app
import uiScriptLocale

QUEST_ICON_BACKGROUND = 'd:/ymir work/ui/game/quest/slot_base.sub'

SMALL_VALUE_FILE = "d:/ymir work/ui/public/Parameter_Slot_00.sub"
MIDDLE_VALUE_FILE = "d:/ymir work/ui/public/Parameter_Slot_01.sub"
LARGE_VALUE_FILE = "d:/ymir work/ui/public/Parameter_Slot_03.sub"
ICON_SLOT_FILE = "d:/ymir work/ui/public/Slot_Base.sub"
FACE_SLOT_FILE = "d:/ymir work/ui/game/windows/box_face.sub"
ROOT_PATH = "d:/ymir work/ui/game/windows/"

LOCALE_PATH = uiScriptLocale.WINDOWS_PATH
PATTERN_PATH = "d:/ymir work/ui/pattern/"

if app.ENABLE_QUEST_RENEWAL:
	QUEST_BOARD_WINDOW_WIDTH = 231
	if app.ENABLE_CONQUEROR_LEVEL:
		QUEST_BOARD_WINDOW_HEIGHT = 340
		QUEST_BOARD_PATTERN_Y_COUNT = 19
	else:
		QUEST_BOARD_WINDOW_HEIGHT = 297
		QUEST_BOARD_PATTERN_Y_COUNT = 16

	QUEST_BOARD_PATTERN_X_COUNT = 12

if app.ENABLE_CONQUEROR_LEVEL:
	window = {
		"name" : "CharacterWindow",
		"style" : ("movable", "float",),

		"x" : 24,
		"y" : (SCREEN_HEIGHT - 37 - 361) / 2,

		"width" : 253,
		"height" : 405,

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

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

				"width" : 253,
				"height" : 405,

				"children" :
				[
					{
						"name" : "Skill_TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 7,

						"width" : 238,
						"color" : "red",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_SKILL, "all_align":"center" },
						),
					},
					{
						"name" : "Emoticon_TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 7,

						"width" : 238,
						"color" : "red",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_ACTION, "all_align":"center" },
						),
					},
					{
						"name" : "Quest_TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 7,

						"width" : 238,
						"color" : "red",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_QUEST, "all_align":"center" },
						),
					},

					## Tab Area
					{
						"name" : "TabControl",
						"type" : "window",

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

						"width" : 250,
						"height" : 31,

						"children" :
						(
							## Tab
							{
								"name" : "Tab_01",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : ROOT_PATH+"char_tab_01.sub",
							},
							{
								"name" : "Tab_02",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : ROOT_PATH+"char_tab_02.sub",
							},
							{
								"name" : "Tab_03",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : ROOT_PATH+"char_tab_03.sub",
							},
							{
								"name" : "Tab_04",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : ROOT_PATH+"char_tab_04.sub",
							},
							## RadioButton
							{
								"name" : "Tab_Button_01",
								"type" : "radio_button",

								"x" : 6,
								"y" : 5,

								"width" : 53,
								"height" : 27,
							},
							{
								"name" : "Tab_Button_02",
								"type" : "radio_button",

								"x" : 61,
								"y" : 5,

								"width" : 67,
								"height" : 27,
							},
							{
								"name" : "Tab_Button_03",
								"type" : "radio_button",

								"x" : 130,
								"y" : 5,

								"width" : 61,
								"height" : 27,
							},
							{
								"name" : "Tab_Button_04",
								"type" : "radio_button",

								"x" : 192,
								"y" : 5,

								"width" : 55,
								"height" : 27,
							},
						),
					},

					## Page Area
					{
						"name" : "Character_Page",
						"type" : "window",
						"style" : ("attach",),

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

						"width" : 253,
						"height" : 371,

						"children" :
						[

							## Title Area
							{
								"name" : "Character_TitleBar", "type" : "titlebar", "style" : ("attach",), "x" : 61, "y" : 7, "width" : 185, "color" : "red",
								"children" :
								(
									{ "name" : "TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_MAIN, "all_align":"center" },
								),
							},

							## Guild Name Slot
							{
								"name" : "Guild_Name_Slot",
								"type" : "image",
								"x" : 63,
								"y" :27+7,
								"image" : LARGE_VALUE_FILE,

								"children" :
								(
									{
										"name" : "Guild_Name",
										"type":"text",
										"text":"길드 이름",
										"x":0,
										"y":0,
										"r":1.0,
										"g":1.0,
										"b":1.0,
										"a":1.0,
										"all_align" : "center",
									},
								),
							},

							## Character Name Slot
							{
								"name" : "Character_Name_Slot",
								"type" : "image",
								"x" : 153,
								"y" :27+7,
								"image" : LARGE_VALUE_FILE,

								"children" :
								(
									{
										"name" : "Character_Name",
										"type":"text",
										"text":"캐릭터 이름",
										"x":0,
										"y":0,
										"r":1.0,
										"g":1.0,
										"b":1.0,
										"a":1.0,
										"all_align" : "center",
									},
								),
							},

							## Lv_Exp_BackImg
							{ "name":"Lv_Exp_BackImg", "type":"image", "x":9, "y":60, "image":ROOT_PATH+"level_exp_info.sub" },

							{ "name":"Lv_ToolTip", "type":"button", "x":9, "y":60, "width" : 55, "height" : 25, },
							{ "name":"Exp_ToolTip", "type":"button", "x":61, "y":60, "width" : 180, "height" : 25, },

							## Lv
							{ "name":"Level_Value", "type":"text", "x":35, "y":84, "fontsize":"LARGE", "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },

							## EXP
							#{ "name":"Exp_Value", "type":"text", "x":165, "y":84, "fontsize":"LARGE", "text":"12345678901", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },

							## EXP
							{
								"name":"Status_CurExp", "type":"window", "x":53+8, "y":84, "width":87, "height":42,
								"children" :
								(
									#{ "name":"Exp_Slot", "type":"image", "x":0, "y":0, "image":LOCALE_PATH+"label_cur_exp.sub" },
									{ "name":"Exp_Value", "type":"text", "x":46, "y":0, "fontsize":"LARGE", "text":"2500000000", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
								),
							},


							{ "name" : "slash", "type":"text", "text":"/", "x":152, "y":87, "text_horizontal_align" : "center", },

							## REXP
							{
								"name":"Status_RestExp", "type":"window", "x":152, "y":84, "width":50, "height":20, 
								"children" :
								(
									#{ "name":"RestExp_Slot", "type":"image", "x":0, "y":0, "image":LOCALE_PATH+"label_last_exp.sub" },
									{ "name":"RestExp_Value", "type":"text", "x":46, "y":0, "fontsize":"LARGE", "text":"2500000000", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
								),
							},

							## Face Slot
							{ "name" : "Face_Image", "type" : "image", "x" : 11, "y" : 11, "image" : "d:/ymir work/ui/game/windows/face_warrior.sub" },
							{ "name" : "Face_Slot", "type" : "image", "x" : 7, "y" : 7, "image" : FACE_SLOT_FILE, },

							## Passive Expanded Button
							{ "name":"passive_expanded_btn", "type" : "button", "x":166, "y":107, "default_image" : ROOT_PATH+"passive_expanded_button_01.sub", "over_image" : ROOT_PATH+"passive_expanded_button_02.sub", "down_image" : ROOT_PATH+"passive_expanded_button_03.sub", },

							## 정복자 변경 버튼
							{ "name":"change_base_button", "type" : "radio_button", "x":8, "y":107, "default_image" : ROOT_PATH+"old_level_btn_03.sub", "over_image" : ROOT_PATH+"old_level_btn_03.sub", "down_image" : ROOT_PATH+"old_level_btn_01.sub", },
							{ "name":"change_conqueror_button", "type" : "radio_button", "x":87, "y":107, "default_image" : ROOT_PATH+"new_level_btn_03.sub", "over_image" : ROOT_PATH+"new_level_btn_03.sub", "down_image" : ROOT_PATH+"new_level_btn_01.sub", },

							## 기본 능력
							{
								"name":"Status_Standard", "type":"window", "x":3, "y":125, "width":250, "height":250,
								"children" :
								[
									## 기본 능력 바
									{ "name":"Base_Info_bar", "type":"image", "x":6, "y":12-7, "image":ROOT_PATH+"base_info_bar.sub" },
									{ "name":"Char_Info_Status_img", "type" : "image", "x" : 12, "y" : 14-7, "image" : ROOT_PATH+"char_info_status_img.sub", },

									## 능력 수련 수치
									{
										"name":"Status_Plus_Label", 
										"type":"image", 
										"x":191, 
										"y":15-7,
										"image":ROOT_PATH+"char_info_status_plus_img.sub",
										"children" :
										[
											{ "name":"Status_Plus_Btn_Img", "type":"image", "x":19, "y":0, "image":ROOT_PATH+"char_info_status_value_img.sub", },
											{ "name":"Status_Plus_Value", "type":"text", "x":30, "y":0, "text":"270", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										],
									},

									## 기본 능력치
									{
										"name":"base_info", "type":"window", "x":0, "y":26, "width":150, "height":150,
										"children" :
										[
											## HTH
											{ "name":"HTH_Slot", "type":"image", "x":50, "y":0, "image":SMALL_VALUE_FILE },
											{ "name":"HTH_Value", "type":"text", "x":70, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"HTH_Plus", "type" : "button", "x":91, "y":3, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## INT
											{ "name":"INT_Slot", "type":"image", "x":50, "y":31, "image":SMALL_VALUE_FILE },
											{ "name":"INT_Value", "type":"text", "x":70, "y":34, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"INT_Plus", "type" : "button", "x" : 91, "y" : 34, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## STR
											{ "name":"STR_Slot", "type":"image", "x":50, "y":62, "image":SMALL_VALUE_FILE },
											{ "name":"STR_Value", "type":"text", "x":70, "y":65, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"STR_Plus", "type" : "button", "x" : 91, "y" : 65, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## DEX
											{ "name":"DEX_Slot", "type":"image", "x":50, "y":93, "image":SMALL_VALUE_FILE },
											{ "name":"DEX_Value", "type":"text", "x":70, "y":96, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"DEX_Plus", "type" : "button", "x" : 91, "y" : 96, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## 이미지들
											{ "name":"HTH_IMG", "type":"image", "x":20, "y":-2, "image":ROOT_PATH+"char_info_con.sub" },
											{ "name":"INT_IMG", "type":"image", "x":20, "y":29, "image":ROOT_PATH+"char_info_int.sub" },
											{ "name":"STR_IMG", "type":"image", "x":20, "y":60, "image":ROOT_PATH+"char_info_str.sub" },
											{ "name":"DEX_IMG", "type":"image", "x":20, "y":91, "image":ROOT_PATH+"char_info_dex.sub" },
										],
									},

									## 성마 능력치
									{
										"name":"sungma_info", "type":"window", "x":0, "y":26, "width":150, "height":150,
										"children" :
										[
											## SUNGMA_STR
											{ "name":"sungma_str_slot", "type":"image", "x":50, "y":0, "image":SMALL_VALUE_FILE },
											{ "name":"sungma_str_value", "type":"text", "x":70, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"sungma_str_plus", "type":"button", "x":91, "y":3, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## SUNGMA_HP
											{ "name":"sungma_hp_slot", "type":"image", "x":50, "y":31, "image":SMALL_VALUE_FILE },
											{ "name":"sungma_hp_value", "type":"text", "x":70, "y":34, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"sungma_hp_plus", "type":"button", "x":91, "y":34, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## SUNGMA_MOVE
											{ "name":"sungma_move_slot", "type":"image", "x":50, "y":62, "image":SMALL_VALUE_FILE },
											{ "name":"sungma_move_value", "type":"text", "x":70, "y":65, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"sungma_move_plus", "type":"button", "x" : 91, "y" : 65, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## SUNGMA_IMMUNE
											{ "name":"sungma_immune_slot", "type":"image", "x":50, "y":93, "image":SMALL_VALUE_FILE },
											{ "name":"sungma_immune_value", "type":"text", "x":70, "y":96, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"sungma_immune_plus", "type":"button", "x" : 91, "y" : 96, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },

											## 이미지들
											{ "name":"SUNGMA_STR_IMG", "type":"image", "x":20, "y":-2, "image":ROOT_PATH+"char_info_sungma_str.sub" },
											{ "name":"SUNGMA_HP_IMG", "type":"image", "x":20, "y":29, "image":ROOT_PATH+"char_info_sungma_hp.sub" },
											{ "name":"SUNGMA_MOVE_IMG", "type":"image", "x":20, "y":60, "image":ROOT_PATH+"char_info_sungma_move.sub" },
											{ "name":"SUNGMA_IMMUNE_IMG", "type":"image", "x":20, "y":91, "image":ROOT_PATH+"char_info_sungma_immune.sub" },
										],
									},

									## 마이너스 버튼
									{ "name":"HTH_Minus", "type" : "button", "x":7, "y":36-7, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },
									{ "name":"INT_Minus", "type" : "button", "x":7, "y":67-7, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },
									{ "name":"STR_Minus", "type" : "button", "x":7, "y":98-7, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },
									{ "name":"DEX_Minus", "type" : "button", "x":7, "y":129-7, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },


									## 생명력,정신력,공격력,방어력
									{ "name":"HEL_IMG", "type":"image", "x":118, "y":31-7, "image":ROOT_PATH+"char_info_hp.sub" },
									{ "name":"SP_IMG", "type":"image", "x":118, "y":62-7, "image":ROOT_PATH+"char_info_sp.sub" },
									{ "name":"ATT_IMG", "type":"image", "x":118, "y":93-7, "image":ROOT_PATH+"char_info_att.sub" },
									{ "name":"DEF_IMG", "type":"image", "x":118, "y":124-7, "image":ROOT_PATH+"char_info_def.sub" },

									####

									## HP
									{
										"name":"HEL_Label", "type":"window", "x":145, "y":33-7, "width":50, "height":20,
										"children" :
										[
											{ "name":"HP_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"HP_Value", "type":"text", "x":45, "y":3, "text":"9999/9999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
									## SP
									{
										"name":"SP_Label", "type":"window", "x":145, "y":64-7, "width":50, "height":20, 
										"children" :
										[
											{ "name":"SP_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"SP_Value", "type":"text", "x":45, "y":3, "text":"9999/9999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
									## ATT
									{
										"name":"ATT_Label", "type":"window", "x":145, "y":95-7, "width":50, "height":20, 
										"children" :
										[
											{ "name":"ATT_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"ATT_Value", "type":"text", "x":45, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
									## DEF
									{
										"name":"DEF_Label", "type":"window", "x":145, "y":126-7, "width":50, "height":20, 
										"children" :
										[
											{ "name":"DEF_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"DEF_Value", "type":"text", "x":45, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
								],
							},

							## 부가 능력
							{
								"name":"Status_Extent", "type":"window", "x":3, "y":270, "width":253, "height":125, 
								"children" :
								(
									## 부가 능력 제목
									#{ "name":"Status_Extent_Bar", "type":"horizontalbar", "x":12, "y":0, "width":223, },
									{ "name":"Status_Extent_Label", "type" : "image", "x" : 13, "y" : 0, "image" : ROOT_PATH+"status_extent_bar.sub", },


									{ "name":"MSPD_IMG", "type":"image", "x":20, "y":31 - 25, "image":ROOT_PATH+"char_info_movespeed.sub" },
									{ "name":"ASPD_IMG", "type":"image", "x":20, "y":62 - 25, "image":ROOT_PATH+"char_info_attspeed.sub" },
									{ "name":"CSPD_IMG", "type":"image", "x":20, "y":93 - 25, "image":ROOT_PATH+"char_info_magspeed.sub" },
									{ "name":"MATT_IMG", "type":"image", "x":118, "y":31 - 25, "image":ROOT_PATH+"char_info_magatt.sub" },
									{ "name":"MDEF_IMG", "type":"image", "x":118, "y":62 - 25, "image":ROOT_PATH+"char_info_magdef.sub" },
									{ "name":"ER_IMG", "type":"image", "x":118, "y":93 - 25, "image":ROOT_PATH+"char_info_hitpct.sub" },


									## 기본 능력 아이템 리스트
									#{"name":"Status_Extent_ItemList1", "type" : "image", "x":11, "y":31, "image" : LOCALE_PATH+"label_ext_item1.sub", },
									#{"name":"Status_Extent_ItemList2", "type" : "image", "x":128, "y":32, "image" : LOCALE_PATH+"label_ext_item2.sub", },

									## MSPD - 이동 속도
									{
										"name":"MOV_Label", "type":"window", "x":50, "y":33 - 25, "width":50, "height":20, 
										"children" :
										(
											{ "name":"MSPD_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"MSPD_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## ASPD - 공격 속도
									{
										"name":"ASPD_Label", "type":"window", "x":50, "y":64 - 25, "width":50, "height":20, 
										"children" :
										(
											{ "name":"ASPD_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"ASPD_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## CSPD - 주문 속도
									{
										"name":"CSPD_Label", "type":"window", "x":50, "y":95 - 25, "width":50, "height":20, 
										"children" :
										(
											{ "name":"CSPD_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"CSPD_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## MATT - 마법 공격력
									{
										"name":"MATT_Label", "type":"window", "x":148, "y":33 - 25, "width":50, "height":20, 
										"children" :
										(
											{ "name":"MATT_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"MATT_Value", "type":"text", "x":26, "y":3, "text":"999-999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## MDEF - 마법 방어력
									{
										"name":"MDEF_Label", "type":"window", "x":148, "y":64 - 25, "width":50, "height":20, 
										"children" :
										(
											{ "name":"MDEF_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"MDEF_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## 회피율
									{
										"name":"ER_Label", "type":"window", "x":148, "y":95 - 25, "width":50, "height":20, 
										"children" :
										(
											{ "name":"ER_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"ER_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

								),
							},
						],
					},
					{
						"name" : "Skill_Page",
						"type" : "window",
						"style" : ("attach",),

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

						"width" : 250,
						"height" : 350,

						"children" :
						(

							{
								"name":"Skill_Active_Title_Bar", "type":"horizontalbar", "x":15, "y":9, "width":223,

								"children" :
								(
									{
										"name":"Active_Skill_Point_Label", 
										"type":"image", 
										"x":180, 
										"y":3, 
										"image":ROOT_PATH+"char_info_status_plus_img.sub",
										"children" :
										(
											{ "name":"Active_Skill_Plus_Img", "type":"image", "x":13, "y":0, "image":ROOT_PATH+"char_info_status_value_img.sub", },
											{ "name":"Active_Skill_Point_Value", "type":"text", "x":25, "y":0, "text":"99", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},

									## Group Button
									{
										"name" : "Skill_Group_Button_1",
										"type" : "radio_button",

										"x" : 5,
										"y" : 2,

										"text" : "Group1",
										"text_color" : 0xFFFFE3AD,

										"default_image" : "d:/ymir work/ui/game/windows/skill_tab_button_01.sub",
										"over_image" : "d:/ymir work/ui/game/windows/skill_tab_button_02.sub",
										"down_image" : "d:/ymir work/ui/game/windows/skill_tab_button_03.sub",
									},

									{
										"name" : "Skill_Group_Button_2",
										"type" : "radio_button",

										"x" : 50,
										"y" : 2,

										"text" : "Group2",
										"text_color" : 0xFFFFE3AD,

										"default_image" : "d:/ymir work/ui/game/windows/skill_tab_button_01.sub",
										"over_image" : "d:/ymir work/ui/game/windows/skill_tab_button_02.sub",
										"down_image" : "d:/ymir work/ui/game/windows/skill_tab_button_03.sub",
									},

									{
										"name" : "Active_Skill_Group_Name",
										"type" : "text",

										"x" : 7,
										"y" : 1,
										"text" : "Active",

										"vertical_align" : "center",
										"text_vertical_align" : "center",
										"color" : 0xFFFFE3AD,
									},

								),
							},

							{
								"name":"Skill_ETC_Title_Bar", "type":"horizontalbar", "x":15, "y":200+22, "width":223,
								"children" :
								(
									## Support_skill_Tooltip_icon
									## 능력 수련 수치
									{
										"name":"Support_Skill_Point_Label", 
										"type":"image", 
										"x":180, 
										"y":3, 
										"image":ROOT_PATH+"char_info_status_plus_img.sub",
										"children" :
										(
											{ "name":"Support_Skill_Plus_Img", "type":"image", "x":13, "y":0, "image":ROOT_PATH+"char_info_status_value_img.sub", },
											{ "name":"Support_Skill_Point_Value", "type":"text", "x":25, "y":0, "text":"99", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},
									## 보조스킬 툴팁
									{ "name":"Support_Skill_ToolTip", "type":"image", "x":3, "y":3, "image":ROOT_PATH+"support_skill_bar_icon.sub", },
								),
							},

							{ "name":"Skill_Board", "type":"image", "x":13, "y":30, "image":"d:/ymir work/ui/game/windows/skill_board.sub", },
							{ "name":"Skill_Board_expanded", "type":"image", "x":13, "y":179, "image":"d:/ymir work/ui/game/windows/skill_board_expanded.sub", },

							## Active Slot
							{
								"name" : "Skill_Active_Slot",
								"type" : "slot",

								"x" : 0 + 16,
								"y" : 0 + 15 + 15,

								"width" : 223,
								"height" : 190,
								"image" : ICON_SLOT_FILE,

								"slot" :	(
												{"index": 1, "x": 1, "y":  4, "width":32, "height":32},
												{"index":21, "x":38, "y":  4, "width":32, "height":32},
												{"index":41, "x":75, "y":  4, "width":32, "height":32},

												{"index": 3, "x": 1, "y": 40, "width":32, "height":32},
												{"index":23, "x":38, "y": 40, "width":32, "height":32},
												{"index":43, "x":75, "y": 40, "width":32, "height":32},

												{"index": 5, "x": 1, "y": 76, "width":32, "height":32},
												{"index":25, "x":38, "y": 76, "width":32, "height":32},
												{"index":45, "x":75, "y": 76, "width":32, "height":32},

												{"index": 7, "x": 1, "y":112, "width":32, "height":32},
												{"index":27, "x":38, "y":112, "width":32, "height":32},
												{"index":47, "x":75, "y":112, "width":32, "height":32},

												{"index": 9, "x": 1, "y":151, "width":32, "height":32},
												{"index":29, "x":38, "y":151, "width":32, "height":32},
												{"index":49, "x":75, "y":151, "width":32, "height":32},

												####

												{"index": 2, "x":113, "y":  4, "width":32, "height":32},
												{"index":22, "x":150, "y":  4, "width":32, "height":32},
												{"index":42, "x":187, "y":  4, "width":32, "height":32},

												{"index": 4, "x":113, "y": 40, "width":32, "height":32},
												{"index":24, "x":150, "y": 40, "width":32, "height":32},
												{"index":44, "x":187, "y": 40, "width":32, "height":32},

												{"index": 6, "x":113, "y": 76, "width":32, "height":32},
												{"index":26, "x":150, "y": 76, "width":32, "height":32},
												{"index":46, "x":187, "y": 76, "width":32, "height":32},

												{"index": 8, "x":113, "y":112, "width":32, "height":32},
												{"index":28, "x":150, "y":112, "width":32, "height":32},
												{"index":48, "x":187, "y":112, "width":32, "height":32},
											),
							},

							## ETC Slot
							{
								"name" : "Skill_ETC_Slot",
								"type" : "grid_table",
								"x" : 18,
								"y" : 221 + 22,
								"start_index" : 101,
								"x_count" : 6,
								"y_count" : 3,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 5,
								"y_blank" : 4,
								"image" : ICON_SLOT_FILE,
							},

						),
					},
				],
			},
		),
	}
else:
	window = {
		"name" : "CharacterWindow",
		"style" : ("movable", "float",),

		"x" : 24,
		"y" : (SCREEN_HEIGHT - 37 - 361) / 2,

		"width" : 253,
		"height" : 361,

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

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

				"width" : 253,
				"height" : 361,

				"children" :
				[
					{
						"name" : "Skill_TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 7,

						"width" : 238,
						"color" : "red",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_SKILL, "all_align":"center" },
							#{ "name":"TitleName", "type":"image", "style" : ("attach",), "x":101, "y" : 1, "image" : LOCALE_PATH+"title_skill.sub", },
						),
					},
					{
						"name" : "Emoticon_TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 7,

						"width" : 238,
						"color" : "red",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_ACTION, "all_align":"center" },
						),
					},
					{
						"name" : "Quest_TitleBar",
						"type" : "titlebar",
						"style" : ("attach",),

						"x" : 8,
						"y" : 7,

						"width" : 238,
						"color" : "red",

						"children" :
						(
							{ "name":"TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_QUEST, "all_align":"center" },
						),
					},

					## Tab Area
					{
						"name" : "TabControl",
						"type" : "window",

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

						"width" : 250,
						"height" : 31,

						"children" :
						(
							## Tab
							{
								"name" : "Tab_01",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : LOCALE_PATH+"tab_1.sub",
							},
							{
								"name" : "Tab_02",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : LOCALE_PATH+"tab_2.sub",
							},
							{
								"name" : "Tab_03",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : LOCALE_PATH+"tab_3.sub",
							},
							{
								"name" : "Tab_04",
								"type" : "image",

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

								"width" : 250,
								"height" : 31,

								"image" : LOCALE_PATH+"tab_4.sub",
							},
							## RadioButton
							{
								"name" : "Tab_Button_01",
								"type" : "radio_button",

								"x" : 6,
								"y" : 5,

								"width" : 53,
								"height" : 27,
							},
							{
								"name" : "Tab_Button_02",
								"type" : "radio_button",

								"x" : 61,
								"y" : 5,

								"width" : 67,
								"height" : 27,
							},
							{
								"name" : "Tab_Button_03",
								"type" : "radio_button",

								"x" : 130,
								"y" : 5,

								"width" : 61,
								"height" : 27,
							},
							{
								"name" : "Tab_Button_04",
								"type" : "radio_button",

								"x" : 192,
								"y" : 5,

								"width" : 55,
								"height" : 27,
							},
						),
					},

					## Page Area
					{
						"name" : "Character_Page",
						"type" : "window",
						"style" : ("attach",),

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

						"width" : 250,
						"height" : 304,

						"children" :
						[

							## Title Area
							{
								"name" : "Character_TitleBar", "type" : "titlebar", "style" : ("attach",), "x" : 61, "y" : 7, "width" : 185, "color" : "red",
								"children" :
								(
									#{ "name" : "TitleName", "type" : "image", "style" : ("attach",), "x" : 70, "y" : 1, "image" : LOCALE_PATH+"title_status.sub", },
									{ "name" : "TitleName", "type":"text", "x":0, "y":-1, "text":uiScriptLocale.CHARACTER_MAIN, "all_align":"center" },
								),
							},

							## Guild Name Slot
							{
								"name" : "Guild_Name_Slot",
								"type" : "image",
								"x" : 60,
								"y" :27+7,
								"image" : LARGE_VALUE_FILE,

								"children" :
								(
									{
										"name" : "Guild_Name",
										"type":"text",
										"text":"길드 이름",
										"x":0,
										"y":0,
										"r":1.0,
										"g":1.0,
										"b":1.0,
										"a":1.0,
										"all_align" : "center",
									},
								),
							},

							## Character Name Slot
							{
								"name" : "Character_Name_Slot",
								"type" : "image",
								"x" : 153,
								"y" :27+7,
								"image" : LARGE_VALUE_FILE,

								"children" :
								(
									{
										"name" : "Character_Name",
										"type":"text",
										"text":"캐릭터 이름",
										"x":0,
										"y":0,
										"r":1.0,
										"g":1.0,
										"b":1.0,
										"a":1.0,
										"all_align" : "center",
									},
								),
							},

							## Header
							{
								"name":"Status_Header", "type":"window", "x":3, "y":31, "width":0, "height":0, 
								"children" :
								(
									## Lv
									{
										"name":"Status_Lv", "type":"window", "x":9, "y":30, "width":37, "height":42, 
										"children" :
										(
											{ "name":"Level_Header", "type":"image", "x":0, "y":0, "image":LOCALE_PATH+"label_level.sub" },
											{ "name":"Level_Value", "type":"text", "x":19, "y":19, "fontsize":"LARGE", "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},

									## EXP
									{
										"name":"Status_CurExp", "type":"window", "x":53, "y":30, "width":87, "height":42,
										"children" :
										(
											{ "name":"Exp_Slot", "type":"image", "x":0, "y":0, "image":LOCALE_PATH+"label_cur_exp.sub" },
											{ "name":"Exp_Value", "type":"text", "x":46, "y":19, "fontsize":"LARGE", "text":"12345678901", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},

									## REXP
									{
										"name":"Status_RestExp", "type":"window", "x":150, "y":30, "width":50, "height":20, 
										"children" :
										(
											{ "name":"RestExp_Slot", "type":"image", "x":0, "y":0, "image":LOCALE_PATH+"label_last_exp.sub" },
											{ "name":"RestExp_Value", "type":"text", "x":46, "y":19, "fontsize":"LARGE", "text":"12345678901", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},
								),
							},

							## Face Slot
							{ "name" : "Face_Image", "type" : "image", "x" : 11, "y" : 11, "image" : "d:/ymir work/ui/game/windows/face_warrior.sub" },
							{ "name" : "Face_Slot", "type" : "image", "x" : 7, "y" : 7, "image" : FACE_SLOT_FILE, },

							## 기본 능력
							{
								"name":"Status_Standard", "type":"window", "x":3, "y":100, "width":200, "height":250,
								"children" :
								[
									## 기본 능력 제목
									{ "name":"Character_Bar_01", "type":"horizontalbar", "x":12, "y":8, "width":223, },
									{ "name":"Character_Bar_01_Text", "type" : "image", "x" : 13, "y" : 9, "image" : LOCALE_PATH+"label_std.sub", },

									## 능력 수련 수치
									{
										"name":"Status_Plus_Label", 
										"type":"image", 
										"x":150, "y":11, 
										"image":LOCALE_PATH+"label_uppt.sub", 

										"children" :
										(
											{ "name":"Status_Plus_Value", "type":"text", "x":62, "y":0, "text":"99", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},

									## 기본 능력 아이템 리스트
									{"name":"Status_Standard_ItemList1", "type" : "image", "x":17, "y":31, "image" : LOCALE_PATH+"label_std_item1.sub", },
									{"name":"Status_Standard_ItemList2", "type" : "image", "x":100, "y":30, "image" : LOCALE_PATH+"label_std_item2.sub", },

									## HTH
									{
										"name":"HTH_Label", "type":"window", "x":50, "y":32, "width":60, "height":20,
										"children" :
										(
											{ "name":"HTH_Slot", "type":"image", "x":0, "y":0, "image":SMALL_VALUE_FILE },
											{ "name":"HTH_Value", "type":"text", "x":20, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"HTH_Plus", "type" : "button", "x":41, "y":3, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },
										),
									},
									## INT
									{
										"name":"INT_Label", "type":"window", "x":50, "y":32+23, "width":60, "height":20,
										"children" :
										(
											{ "name":"INT_Slot", "type":"image", "x":0, "y":0, "image":SMALL_VALUE_FILE },
											{ "name":"INT_Value", "type":"text", "x":20, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"INT_Plus", "type" : "button", "x" : 41, "y" : 3, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },
										)
									},
									## STR
									{
										"name":"STR_Label", "type":"window", "x":50, "y":32+23*2, "width":60, "height":20,
										"children" :
										(
											{ "name":"STR_Slot", "type":"image", "x":0, "y":0, "image":SMALL_VALUE_FILE },
											{ "name":"STR_Value", "type":"text", "x":20, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"STR_Plus", "type" : "button", "x" : 41, "y" : 3, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },
										)
									},
									## DEX
									{
										"name":"DEX_Label", "type":"window", "x":50, "y":32+23*3, "width":60, "height":20, 
										"children" :
										(
											{ "name":"DEX_Slot", "type":"image", "x":0, "y":0, "image":SMALL_VALUE_FILE },
											{ "name":"DEX_Value", "type":"text", "x":20, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
											{ "name":"DEX_Plus", "type" : "button", "x" : 41, "y" : 3, "default_image" : ROOT_PATH+"btn_plus_up.sub", "over_image" : ROOT_PATH+"btn_plus_over.sub", "down_image" : ROOT_PATH+"btn_plus_down.sub", },
										)
									},

									{ "name":"HTH_Minus", "type" : "button", "x":9, "y":35, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },
									{ "name":"INT_Minus", "type" : "button", "x":9, "y":35+23, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },
									{ "name":"STR_Minus", "type" : "button", "x":9, "y":35+23*2, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },
								{ "name":"DEX_Minus", "type" : "button", "x":9, "y":35+23*3, "default_image" : ROOT_PATH+"btn_minus_up.sub", "over_image" : ROOT_PATH+"btn_minus_over.sub", "down_image" : ROOT_PATH+"btn_minus_down.sub", },

								####

								## HP
								{
									"name":"HEL_Label", "type":"window", "x":145, "y":32, "width":50, "height":20,
									"children" :
									[
											{ "name":"HP_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"HP_Value", "type":"text", "x":45, "y":3, "text":"9999/9999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
									## SP
									{
										"name":"SP_Label", "type":"window", "x":145, "y":32+23, "width":50, "height":20, 
										"children" :
										[
											{ "name":"SP_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"SP_Value", "type":"text", "x":45, "y":3, "text":"9999/9999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
									## ATT
									{
										"name":"ATT_Label", "type":"window", "x":145, "y":32+23*2, "width":50, "height":20, 
										"children" :
										[
											{ "name":"ATT_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"ATT_Value", "type":"text", "x":45, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
									## DEF
									{
										"name":"DEF_Label", "type":"window", "x":145, "y":32+23*3, "width":50, "height":20, 
										"children" :
										[
											{ "name":"DEF_Slot", "type":"image", "x":0, "y":0, "image":LARGE_VALUE_FILE },
											{ "name":"DEF_Value", "type":"text", "x":45, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										]
									},
								],
							},

							## 부가 능력
							{
								"name":"Status_Extent", "type":"window", "x":3, "y":221, "width":200, "height":50, 
								"children" :
								(

									## 부가 능력 제목
									{ "name":"Status_Extent_Bar", "type":"horizontalbar", "x":12, "y":6, "width":223, },
									{ "name":"Status_Extent_Label", "type" : "image", "x" : 13, "y" : 8, "image" : LOCALE_PATH+"label_ext.sub", },

									## 기본 능력 아이템 리스트
									{"name":"Status_Extent_ItemList1", "type" : "image", "x":11, "y":31, "image" : LOCALE_PATH+"label_ext_item1.sub", },
									{"name":"Status_Extent_ItemList2", "type" : "image", "x":128, "y":32, "image" : LOCALE_PATH+"label_ext_item2.sub", },

									## MSPD - 이동 속도
									{
										"name":"MOV_Label", "type":"window", "x":66, "y":33, "width":50, "height":20, 
										"children" :
										(
											{ "name":"MSPD_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"MSPD_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## ASPD - 공격 속도
									{
										"name":"ASPD_Label", "type":"window", "x":66, "y":33+23, "width":50, "height":20, 
										"children" :
										(
											{ "name":"ASPD_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"ASPD_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## CSPD - 주문 속도
									{
										"name":"CSPD_Label", "type":"window", "x":66, "y":33+23*2, "width":50, "height":20, 
										"children" :
										(
											{ "name":"CSPD_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"CSPD_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## MATT - 마법 공격력
									{
										"name":"MATT_Label", "type":"window", "x":183, "y":33, "width":50, "height":20, 
										"children" :
										(
											{ "name":"MATT_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"MATT_Value", "type":"text", "x":26, "y":3, "text":"999-999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## MDEF - 마법 방어력
									{
										"name":"MDEF_Label", "type":"window", "x":183, "y":33+23, "width":50, "height":20, 
										"children" :
										(
											{ "name":"MDEF_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"MDEF_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

									## 회피율
									{
										"name":"ER_Label", "type":"window", "x":183, "y":33+23*2, "width":50, "height":20, 
										"children" :
										(
											{ "name":"ER_Slot", "type":"image", "x":0, "y":0, "image":MIDDLE_VALUE_FILE },
											{ "name":"ER_Value", "type":"text", "x":26, "y":3, "text":"999", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										)
									},

								),
							},
						],
					},
					{
						"name" : "Skill_Page",
						"type" : "window",
						"style" : ("attach",),

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

						"width" : 250,
						"height" : 304,

						"children" :
						(

							{
								"name":"Skill_Active_Title_Bar", "type":"horizontalbar", "x":15, "y":17, "width":223,

								"children" :
								(
									{
										"name":"Active_Skill_Point_Label", "type":"image", "x":145, "y":3, "image":LOCALE_PATH+"label_uppt.sub",
										"children" :
										(
											{ "name":"Active_Skill_Point_Value", "type":"text", "x":62, "y":0, "text":"99", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},

									## Group Button
									{
										"name" : "Skill_Group_Button_1",
										"type" : "radio_button",

										"x" : 5,
										"y" : 2,

										"text" : "Group1",
										"text_color" : 0xFFFFE3AD,

										"default_image" : "d:/ymir work/ui/game/windows/skill_tab_button_01.sub",
										"over_image" : "d:/ymir work/ui/game/windows/skill_tab_button_02.sub",
										"down_image" : "d:/ymir work/ui/game/windows/skill_tab_button_03.sub",
									},

									{
										"name" : "Skill_Group_Button_2",
										"type" : "radio_button",

										"x" : 50,
										"y" : 2,

										"text" : "Group2",
										"text_color" : 0xFFFFE3AD,

										"default_image" : "d:/ymir work/ui/game/windows/skill_tab_button_01.sub",
										"over_image" : "d:/ymir work/ui/game/windows/skill_tab_button_02.sub",
										"down_image" : "d:/ymir work/ui/game/windows/skill_tab_button_03.sub",
									},

									{
										"name" : "Active_Skill_Group_Name",
										"type" : "text",

										"x" : 7,
										"y" : 1,
										"text" : "Active",

										"vertical_align" : "center",
										"text_vertical_align" : "center",
										"color" : 0xFFFFE3AD,
									},

								),
							},

							{
								"name":"Skill_ETC_Title_Bar", "type":"horizontalbar", "x":15, "y":200, "width":223,

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

										"x" : 7,
										"y" : 1,
										"text" : uiScriptLocale.SKILL_SUPPORT_TITLE,

										"vertical_align" : "center",
										"text_vertical_align" : "center",
										"color" : 0xFFFFE3AD,
									},

									{
										"name":"Support_Skill_Point_Label", "type":"image", "x":145, "y":3, "image":LOCALE_PATH+"label_uppt.sub",
										"children" :
										(
											{ "name":"Support_Skill_Point_Value", "type":"text", "x":62, "y":0, "text":"99", "r":1.0, "g":1.0, "b":1.0, "a":1.0, "text_horizontal_align":"center" },
										),
									},
								),
							},
							{ "name":"Skill_Board", "type":"image", "x":13, "y":38, "image":"d:/ymir work/ui/game/windows/skill_board.sub", },

							## Active Slot
							{
								"name" : "Skill_Active_Slot",
								"type" : "slot",

								"x" : 0 + 16,
								"y" : 0 + 15 + 23,

								"width" : 223,
								"height" : 223,
								"image" : ICON_SLOT_FILE,

								"slot" : (
									{"index": 1, "x": 1, "y":  4, "width":32, "height":32},
									{"index":21, "x":38, "y":  4, "width":32, "height":32},
									{"index":41, "x":75, "y":  4, "width":32, "height":32},

									{"index": 3, "x": 1, "y": 40, "width":32, "height":32},
									{"index":23, "x":38, "y": 40, "width":32, "height":32},
									{"index":43, "x":75, "y": 40, "width":32, "height":32},

									{"index": 5, "x": 1, "y": 76, "width":32, "height":32},
									{"index":25, "x":38, "y": 76, "width":32, "height":32},
									{"index":45, "x":75, "y": 76, "width":32, "height":32},

									{"index": 7, "x": 1, "y":112, "width":32, "height":32},
									{"index":27, "x":38, "y":112, "width":32, "height":32},
									{"index":47, "x":75, "y":112, "width":32, "height":32},

									####

									{"index": 2, "x":113, "y":  4, "width":32, "height":32},
									{"index":22, "x":150, "y":  4, "width":32, "height":32},
									{"index":42, "x":187, "y":  4, "width":32, "height":32},

									{"index": 4, "x":113, "y": 40, "width":32, "height":32},
									{"index":24, "x":150, "y": 40, "width":32, "height":32},
									{"index":44, "x":187, "y": 40, "width":32, "height":32},

									{"index": 6, "x":113, "y": 76, "width":32, "height":32},
									{"index":26, "x":150, "y": 76, "width":32, "height":32},
									{"index":46, "x":187, "y": 76, "width":32, "height":32},

									{"index": 8, "x":113, "y":112, "width":32, "height":32},
									{"index":28, "x":150, "y":112, "width":32, "height":32},
									{"index":48, "x":187, "y":112, "width":32, "height":32},
								),
							},

							## ETC Slot
							{
								"name" : "Skill_ETC_Slot",
								"type" : "grid_table",
								"x" : 18,
								"y" : 221,
								"start_index" : 101,
								"x_count" : 6,
								"y_count" : 2,
								"x_step" : 32,
								"y_step" : 32,
								"x_blank" : 5,
								"y_blank" : 4,
								"image" : ICON_SLOT_FILE,
							},

						),
					},
				],
			},
		),
	}

if app.ENABLE_QUEST_RENEWAL:
	window["children"][0]["children"] = window["children"][0]["children"] + [
	{
		"name" : "Quest_Page",
		"type" : "window",
		"style" : ("attach",),

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

		"width" : 250,
		## if app.ENABLE_CONQUEROR_LEVEL:
		"height" : QUEST_BOARD_WINDOW_HEIGHT,

		"children" :
		(
			{
				"name" : "quest_page_board_window",
				"type" : "window",
				"style" : ("attach", "ltr",),

				"x" : 10,
				"y" : 7,

				"width" : QUEST_BOARD_WINDOW_WIDTH,
				"height" : QUEST_BOARD_WINDOW_HEIGHT,

				"children" :
				(
					## LeftTop 1
					{
						"name" : "LeftTop",
						"type" : "image",
						"style" : ("ltr",),

						"x" : 0,
						"y" : 0,
						"image" : PATTERN_PATH + "border_A_left_top.tga",
					},
					## RightTop 2
					{
						"name" : "RightTop",
						"type" : "image",
						"style" : ("ltr",),

						"x" : QUEST_BOARD_WINDOW_WIDTH - 16,
						"y" : 0,
						"image" : PATTERN_PATH + "border_A_right_top.tga",
					},
					## LeftBottom 3
					{
						"name" : "LeftBottom",
						"type" : "image",
						"style" : ("ltr",),

						"x" : 0,
						"y" : QUEST_BOARD_WINDOW_HEIGHT - 16,
						"image" : PATTERN_PATH + "border_A_left_bottom.tga",
					},
					## RightBottom 4
					{
						"name" : "RightBottom",
						"type" : "image",
						"style" : ("ltr",),

						"x" : QUEST_BOARD_WINDOW_WIDTH - 16,
						"y" : QUEST_BOARD_WINDOW_HEIGHT - 16,
						"image" : PATTERN_PATH + "border_A_right_bottom.tga",
					},
					## topcenterImg 5
					{
						"name" : "TopCenterImg",
						"type" : "expanded_image",
						"style" : ("ltr",),

						"x" : 16,
						"y" : 0,
						"image" : PATTERN_PATH + "border_A_top.tga",
						"rect" : (0.0, 0.0, QUEST_BOARD_PATTERN_X_COUNT, 0),
					},
					## leftcenterImg 6
					{
						"name" : "LeftCenterImg",
						"type" : "expanded_image",
						"style" : ("ltr",),

						"x" : 0,
						"y" : 16,
						"image" : PATTERN_PATH + "border_A_left.tga",
						"rect" : (0.0, 0.0, 0, QUEST_BOARD_PATTERN_Y_COUNT),
					},
					## rightcenterImg 7
					{
						"name" : "RightCenterImg",
						"type" : "expanded_image",
						"style" : ("ltr",),

						"x" : QUEST_BOARD_WINDOW_WIDTH - 16,
						"y" : 16,
						"image" : PATTERN_PATH + "border_A_right.tga",
						"rect" : (0.0, 0.0, 0, QUEST_BOARD_PATTERN_Y_COUNT),
					},
					## bottomcenterImg 8
					{
						"name" : "BottomCenterImg",
						"type" : "expanded_image",
						"style" : ("ltr",),

						"x" : 16,
						"y" : QUEST_BOARD_WINDOW_HEIGHT - 16,
						"image" : PATTERN_PATH + "border_A_bottom.tga",
						"rect" : (0.0, 0.0, QUEST_BOARD_PATTERN_X_COUNT, 0),
					},
					## centerImg
					{
						"name" : "CenterImg",
						"type" : "expanded_image",
						"style" : ("ltr",),

						"x" : 16,
						"y" : 16,
						"image" : PATTERN_PATH + "border_A_center.tga",
						"rect" : (0.0, 0.0, QUEST_BOARD_PATTERN_X_COUNT, QUEST_BOARD_PATTERN_Y_COUNT),
					},

					{
						"name" : "quest_object_board_window",
						"type" : "window",
						"style" : ("attach", "ltr",),

						"x" : 3,
						"y" : 3,

						"width" : QUEST_BOARD_WINDOW_WIDTH - 6,
						"height" : QUEST_BOARD_WINDOW_HEIGHT - 6,
					},
				),
			},

			{
				"name" : "Quest_ScrollBar",
				"type" : "scrollbar",

				"x" : 25,
				"y" : 12,
				## if app.ENABLE_CONQUEROR_LEVEL:
				"size" : QUEST_BOARD_WINDOW_HEIGHT - 10,
				"horizontal_align" : "right",
			},
		),
	},]
else:
	window["children"][0]["children"] = window["children"][0]["children"] + [
	{
		"name" : "Quest_Page",
		"type" : "window",
		"style" : ("attach",),

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

		"width" : 250,
		"height" : 304,

		"children" :
		(
			{
				"name" : "Quest_Slot",
				"type" : "grid_table",
				"x" : 18,
				"y" : 20,
				"start_index" : 0,
				"x_count" : 1,
				"y_count" : 5,
				"x_step" : 32,
				"y_step" : 32,
				"y_blank" : 28,
				"image" : QUEST_ICON_BACKGROUND,
			},

			{
				"name" : "Quest_ScrollBar",
				"type" : "scrollbar",

				"x" : 25,
				"y" : 12,
				"size" : 290,
				"horizontal_align" : "right",
			},

			{ "name" : "Quest_Name_00", "type" : "text", "text" : "이름입니다", "x" : 60, "y" : 14 },
			{ "name" : "Quest_LastTime_00", "type" : "text", "text" : "남은 시간 입니다", "x" : 60, "y" : 30 },
			{ "name" : "Quest_LastCount_00", "type" : "text", "text" : "남은 개수 입니다", "x" : 60, "y" : 46 },

			{ "name" : "Quest_Name_01", "type" : "text", "text" : "이름입니다", "x" : 60, "y" : 74 },
			{ "name" : "Quest_LastTime_01", "type" : "text", "text" : "남은 시간 입니다", "x" : 60, "y" : 90 },
			{ "name" : "Quest_LastCount_01", "type" : "text", "text" : "남은 개수 입니다", "x" : 60, "y" : 106 },

			{ "name" : "Quest_Name_02", "type" : "text", "text" : "이름입니다", "x" : 60, "y" : 134 },
			{ "name" : "Quest_LastTime_02", "type" : "text", "text" : "남은 시간 입니다", "x" : 60, "y" : 150 },
			{ "name" : "Quest_LastCount_02", "type" : "text", "text" : "남은 개수 입니다", "x" : 60, "y" : 166 },

			{ "name" : "Quest_Name_03", "type" : "text", "text" : "이름입니다", "x" : 60, "y" : 194 },
			{ "name" : "Quest_LastTime_03", "type" : "text", "text" : "남은 시간 입니다", "x" : 60, "y" : 210 },
			{ "name" : "Quest_LastCount_03", "type" : "text", "text" : "남은 개수 입니다", "x" : 60, "y" : 226 },

			{ "name" : "Quest_Name_04", "type" : "text", "text" : "이름입니다", "x" : 60, "y" : 254 },
			{ "name" : "Quest_LastTime_04", "type" : "text", "text" : "남은 시간 입니다", "x" : 60, "y" : 270 },
			{ "name" : "Quest_LastCount_04", "type" : "text", "text" : "남은 개수 입니다", "x" : 60, "y" : 286 },
		),
	},]

if app.ENABLE_CONQUEROR_LEVEL:
	window["children"][0]["children"] = window["children"][0]["children"] + [
	{
		"name" : "Emoticon_Page",
		"type" : "window",
		"style" : ("attach",),

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

		"width" : 250,
		"height" : 304,

		"children" :
		[
			## 기본 액션 제목
			{ "name":"Action_Bar", "type":"horizontalbar", "x":12, "y":11+7, "width":223, },
			{ "name":"Action_Bar_Img", "type":"image", "x":15, "y":19, "image":ROOT_PATH+"action_bar_img.sub", },

			## Basis Action Slot
			{
				"name" : "SoloEmotionSlot",
				"type" : "grid_table",
				"x" : 15,
				"y" : 33+7,
				"horizontal_align" : "center",
				"start_index" : 1,
				"x_count" : 6,
				"y_count" : 3,
				"x_step" : 32,
				"y_step" : 32,
				"x_blank" : 5,
				"y_blank" : 10,
				"image" : ICON_SLOT_FILE,
			},

			## 상호 액션 제목
			{ "name":"Reaction_Bar", "type":"horizontalbar", "x":12, "y":8+130+26, "width":223, },
			{ "name":"Reaction_Bar_Img", "type":"image", "x":15, "y":10+130+25, "image":ROOT_PATH+"reaction_bar_img.sub", },

			## 상호 액션 슬롯
			{
				"name" : "DualEmotionSlot",
				"type" : "grid_table",
				"x" : 15,
				"y" : 160+25,
				"start_index" : 51,
				"x_count" : 6,
				"y_count" : 1,
				"x_step" : 32,
				"y_step" : 32,
				"x_blank" : 5,
				"y_blank" : 10,
				"image" : ICON_SLOT_FILE,
			},

			## 특수 액션 제목
			{ "name":"Special_Action_Bar", "type":"horizontalbar", "x":12, "y":8+190+25, "width":223, },
			{ "name":"Special_Action_Bar_Img", "type":"image", "x":15, "y":10+190+24, "image":ROOT_PATH+"special_action_bar_img.sub", },

			## 특수 액션 슬롯
			{
				"name" : "SpecialEmotionSlot",
				"type" : "grid_table",

				"x" : 15,
				"y" : 220+25,
				"start_index" : app.SPECIAL_ACTION_START_INDEX,
				"x_count" : 6,
				"y_count" : 2,
				"x_step" : 32,
				"y_step" : 32,
				"x_blank" : 5,
				"y_blank" : 10,
				"image" : ICON_SLOT_FILE,
			},
		],
	},]
else:
	window["children"][0]["children"] = window["children"][0]["children"] + [
	{
		"name" : "Emoticon_Page",
		"type" : "window",
		"style" : ("attach",),

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

		"width" : 250,
		"height" : 304,

		"children" :
		[
			## 기본 액션 제목
			{ "name":"Action_Bar", "type":"horizontalbar", "x":12, "y":11, "width":223, },
			{ "name":"Action_Bar_Text", "type":"text", "x":15, "y":13, "text":uiScriptLocale.CHARACTER_NORMAL_ACTION },

			## Basis Action Slot
			{
				"name" : "SoloEmotionSlot",
				"type" : "grid_table",
				"x" : 30,
				"y" : 33,
				"horizontal_align" : "center",
				"start_index" : 1,
				"x_count" : 6,
				"y_count" : 3,
				"x_step" : 32,
				"y_step" : 32,
				"x_blank" : 0,
				"y_blank" : 0,
				"image" : ICON_SLOT_FILE,
			},

			## 상호 액션 제목
			{ "name":"Reaction_Bar", "type":"horizontalbar", "x":12, "y":8+130, "width":223, },
			{ "name":"Reaction_Bar_Text", "type":"text", "x":15, "y":10+130, "text":uiScriptLocale.CHARACTER_MUTUAL_ACTION },

			## Reaction Slot
			{
				"name" : "DualEmotionSlot",
				"type" : "grid_table",
				"x" : 30,
				"y" : 160,
				"start_index" : 51,
				"x_count" : 6,
				"y_count" : 1,
				"x_step" : 32,
				"y_step" : 32,
				"x_blank" : 0,
				"y_blank" : 0,
				"image" : ICON_SLOT_FILE,
			},

			## 상호 액션 제목
			{ "name":"Special_Action_Bar", "type":"horizontalbar", "x":12, "y":8+190, "width":223, },
			{ "name":"Special_Action_Bar_Text", "type":"text", "x":15, "y":10+190, "text":uiScriptLocale.CHARACTER_SPECTIAL_ACTION },

			## Special_Action_Slot
			{
				"name" : "SpecialEmotionSlot",
				"type" : "grid_table",

				"x" : 30,
				"y" : 220,
				"start_index" : 101, #app.SPECIAL_ACTION_START_INDEX,
				"x_count" : 6,
				"y_count" : 2,
				"x_step" : 32,
				"y_step" : 32,
				"x_blank" : 0,
				"y_blank" : 0,
				"image" : ICON_SLOT_FILE,
			},
		],
	},]

 

This is a default one..

spacer.png.spacer.png

 

Edited by Metin2 Dev International
Core X - External 2 Internal
Link to comment
Share on other sites

  • 4 weeks later...
15 minutes ago, Yuiiii said:

Das habe ich schon gemacht. Auch nach dem Neuaufbau erhalte ich diesen Fehler ...

Then you probably didn't add the required systems mentioned in the first post. 
https://metin2.dev/topic/30068-official-mouse-wheel-top-windowscroll-reversed/
https://metin2.dev/topic/30047-official-clip-masking-reversed/

Link to comment
Share on other sites

  • Active Member
3 hours ago, Yuiiii said:

The error I get comes from these 2 systems that should be installed additionally. More precisely, from the __BL_MOUSE_WHEEL_TOP_WINDOW__ system. Can anyone help me with this?

 

Look at the first post.

+ if you wanna add the 'expermential' stuff, you need this system too: 

https://metin2.dev/topic/30163-official-render-target-reversed/

Edited by ATAG
Link to comment
Share on other sites

  • 2 months later...

Hello,

any ideea ? https://metin2.download/picture/nSWzZ00mwE28lzz0V7E6iM3lvkIOsv7r/.png

the server does not load all the quests,I check the file on source server,binary and client,look fine..where i need to look?

Edited by Metin2 Dev International
Core X - External 2 Internal
Link to comment
Share on other sites

  • Active Member
6 hours ago, Kazuhiri said:

Hello,

any ideea ? https://metin2.download/picture/nSWzZ00mwE28lzz0V7E6iM3lvkIOsv7r/.png

the server does not load all the quests,I check the file on source server,binary and client,look fine..where i need to look?

You must change the quesst's state to 'run': /set_quest_state main_quest_lv12 run

Link to comment
Share on other sites

  • 4 months later...
On 2/5/2023 at 2:07 PM, metrix2020 said:

i got a problem, i compiled sources without errors but in game it doesent show the missions and i get this in syserr client

  Hide contents

0205 14:49:32613 :: Unprocessed packet header 32, state Game

what could it be the problem? 

i use martysama

how did you fix it?

  • Metin2 Dev 1
Link to comment
Share on other sites

  • 2 months later...

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.