Hey ho
hätte da mal ne frag und zwar hab ich versuch das einzufügen
Bitte melden Sie sich an, um diesen Link zu sehen.
Bitte melden Sie sich an, um dieses Bild zu sehen.
geht auch alles aber i-wie ist das inventar nun verschoben und die letzen reihe im inventar kann man keine items mehr anklicken
Bitte melden Sie sich an, um diesen Link zu sehen.
hier die
InventoryWindow.py
Code
- import uiScriptLocale
- import item
- import app
- if app.ENABLE_EXTEND_INVEN_SYSTEM:
- EQUIPMENT_START_INDEX = 180
- else:
- EQUIPMENT_START_INDEX = 90
- BONUS_BOARD_WIDTH = 120
- if app.ENABLE_EXTEND_INVEN_SYSTEM and app.ENABLE_CHEQUE_SYSTEM:
- window = {
- "name" : "InventoryWindow",
- ## 600 - (width + ¿À¸¥ÂÊÀ¸·Î ºÎÅÍ ¶ç¿ì±â 24 px)
- "x" : SCREEN_WIDTH - 176,
- "y" : SCREEN_HEIGHT - 37 - 565,
- "style" : ("movable", "float",),
- "width" : 176,
- "height" : 565-23,
- "children" :
- (
- {
- "name" : "board2",
- "type" : "board",
- "style" : ("attach",),
- "x" : 73 - 75,
- "y" : 230,
- "width" : 60,
- "height" : 188+35+35,
- "children" :
- (
- ## Offline Shop Button
- {
- "name" : "OfflineShopButton",
- "type" : "button",
- "x" : 7,
- "y" : 20,
- "tooltip_text" : uiScriptLocale.TASKBAR_OFFLINE_SHOP,
- "default_image" : "locale/de/offlineshop/boton1.tga",
- "over_image" : "locale/de/offlineshop/boton2.tga",
- "down_image" : "locale/de/offlineshop/boton1.tga",
- },
- # Teleportring
- {
- "name" : "Telep",
- "type" : "button",
- "x" : 7,
- "y" : 60,
- # "tooltip_text" : "Teleportring",
- "default_image" : "d:/ymir work/ui/game/ew2/3.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/4.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/4.tga",
- },
- # Switchbot
- {
- "name" : "Switchbot",
- "type" : "button",
- "x" : 7,
- "y" : 100,
- # "tooltip_text" : "Switchbot",
- "default_image" : "d:/ymir work/ui/game/ew2/5.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/6.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/6.tga",
- },
- # lager
- {
- "name" : "depozit_index",
- "type" : "button",
- "x" : 7,
- "y" : 220,
- # "tooltip_text" : "Lager Botten",
- "default_image" : "d:/ymir work/ui/game/ew2/lager_button_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/lager_button_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/lager_button_hover.tga"
- },
- # Yang-Anzeige
- {
- "name" : "YangAnzeige",
- "type" : "button",
- "x" : 7,
- "y" : 180,
- # "tooltip_text" : "Yang-Anzeige",
- "default_image" : "d:/ymir work/ui/game/ew2/y_anzeige_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/y_anzeige_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/y_anzeige_hover.tga",
- },
- ## Anti Exp
- {
- "name" : "AntiEXP",
- "type" : "button",
- "x" : 7,
- "y" : 140,
- # "tooltip_text" : "Anti-EXP",
- "default_image" : "d:/ymir work/ui/game/ew2/warp_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/warp_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/warp_hover.tga",
- },
- ),
- },
- ## Inventory, Equipment Slots
- {
- "name" : "board",
- "type" : "board",
- "style" : ("attach",),
- "x" : 37,
- "y" : 0,
- "width" : 176,
- "height" : 565,
- "children" :
- (
- ## Title
- {
- "name" : "TitleBar",
- "type" : "titlebar",
- "style" : ("attach",),
- "x" : 8,
- "y" : 7,
- "width" : 161,
- "color" : "yellow",
- "children" :
- (
- { "name":"TitleName", "type":"text", "x":77, "y":3, "text":uiScriptLocale.INVENTORY_TITLE, "text_horizontal_align":"center" },
- ),
- },
- {
- "name" : "ButtonMinimize",
- "type" : "button",
- "x" : 131,
- "y" : 10,
- "default_image" : "d:/ymir work/ui/public/minimize_button_01.sub",
- "over_image" : "d:/ymir work/ui/public/minimize_button_02.sub",
- "down_image" : "d:/ymir work/ui/public/minimize_button_03.sub",
- "tooltip_text" : "Minimieren",
- },
- {
- "name" : "HeadlineDefensive",
- "type" : "horizontalbar",
- "x" : 169,
- "y" : 33,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Defensiv",
- },
- ),
- },
- {
- "name" : "HeadlineOffensive",
- "type" : "horizontalbar",
- "x" : 171,
- "y" : 295,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Offensiv",
- },
- ),
- },
- ########################################
- {
- "name" : "Schwert",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 55,
- "text" : "Schwert:"
- },
- {
- "name" : "Schwert_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 55 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_1",
- "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" : "2Hand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75,
- "text" : "Zweihander:"
- },
- {
- "name" : "2Hand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_2",
- "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" : "Dolch",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20,
- "text" : "Dolche:"
- },
- {
- "name" : "Dolch_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_3",
- "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" : "Pfeilwiderstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20,
- "text" : "Pfeilwid.:"
- },
- {
- "name" : "Pfeilwiderstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_4",
- "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" : "Glocke",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20,
- "text" : "Glocke:"
- },
- {
- "name" : "Glocke_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_5",
- "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" : "Faecher",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20,
- "text" : "Faecher:"
- },
- {
- "name" : "Faecher_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_6",
- "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" : "Magiewiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20,
- "text" : "Magiewid.:"
- },
- {
- "name" : "Magiewiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_7",
- "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" : "Giftwiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Giftwiederst.:"
- },
- {
- "name" : "Giftwiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_8",
- "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" : "Krieger",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "Krieger_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_9",
- "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" : "Ninja",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "Ninja_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_10",
- "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" : "Sura",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "Sura_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_11",
- "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" : "Schamane",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "Schamane_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_12",
- "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" : "Krit",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krit. Treffer:"
- },
- {
- "name" : "Krit_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_13",
- "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" : "DB",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DB. Treffer:"
- },
- {
- "name" : "DB_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_14",
- "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" : "DSS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DSS:"
- },
- {
- "name" : "DSS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_15",
- "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" : "FKS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "FKS:"
- },
- {
- "name" : "FKS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_16",
- "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" : "Halbmenschen",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Halbm.:"
- },
- {
- "name" : "Halbmenschen_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_17",
- "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" : "Untote",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Untote:"
- },
- {
- "name" : "Untote_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_18",
- "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" : "Teufel",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Teufel:"
- },
- {
- "name" : "Teufel_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_19",
- "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" : "KriegerO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "KriegerO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_20",
- "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" : "NinjaO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "NinjaO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_21",
- "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" : "SuraO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "SuraO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_22",
- "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" : "SchamaneO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "SchamaneO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_23",
- "type" : "text",
- "x" : 26,
- "y" : 3,
- "text" : "999",
- "r" : 1.0,
- "g" : 1.0,
- "b" : 1.0,
- "a" : 1.0,
- "text_horizontal_align":"center"
- },
- ),
- },
- ## Equipment Slot
- {
- "name" : "Equipment_Base",
- "type" : "image",
- "x" : 10,
- "y" : 33,
- "image" : "d:/ymir work/ui/equipment_bg_with_ring_my_norle.tga",
- "children" :
- (
- {
- "name" : "EquipmentSlot",
- "type" : "slot",
- "x" : 3,
- "y" : 3,
- "width" : 150,
- "height" : 182,
- "slot" : (
- {"index":EQUIPMENT_START_INDEX+0, "x":39, "y":37, "width":32, "height":64},
- {"index":EQUIPMENT_START_INDEX+1, "x":39, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+2, "x":39, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+3, "x":75, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+4, "x":3, "y":3, "width":32, "height":96},
- {"index":EQUIPMENT_START_INDEX+5, "x":114, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+6, "x":114, "y":35, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+7, "x":2, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+8, "x":75, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+9, "x":114, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
- ),
- },
- ## Dragon Soul Button
- {
- "name" : "DSSButton",
- "type" : "button",
- "x" : 114,
- "y" : 107,
- "tooltip_text" : uiScriptLocale.TASKBAR_DRAGON_SOUL,
- "default_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_01.tga",
- "over_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_02.tga",
- "down_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_03.tga",
- },
- ## MallButton
- {
- "name" : "MallButton",
- "type" : "button",
- "x" : 118,
- "y" : 148,
- "tooltip_text" : uiScriptLocale.MALL_TITLE,
- "default_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_03.tga",
- },
- ## CostumeButton
- {
- "name" : "CostumeButton",
- "type" : "button",
- "x" : 78,
- "y" : 5,
- "tooltip_text" : uiScriptLocale.COSTUME_TITLE,
- "default_image" : "d:/ymir work/ui/game/taskbar/costume_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/taskbar/costume_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/taskbar/costume_Button_03.tga",
- },
- {
- "name" : "Equipment_Tab_01",
- "type" : "radio_button",
- "x" : 86,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Equipment_Tab_02",
- "type" : "radio_button",
- "x" : 86 + 32,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- ),
- },
- {
- "name" : "Inventory_Tab_01",
- "type" : "radio_button",
- "x" : 10,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_1,
- "children" :
- (
- {
- "name" : "Inventory_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_02",
- "type" : "radio_button",
- #"x" : 10 + 78,
- "x" : 10 + 39,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_2,
- "children" :
- (
- {
- "name" : "Inventory_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_03",
- "type" : "radio_button",
- "x" : 10 + 39 + 39,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_3,
- "children" :
- (
- {
- "name" : "Inventory_Tab_03_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "III",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_04",
- "type" : "radio_button",
- "x" : 10 + 39 + 39 + 39,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_4,
- "children" :
- (
- {
- "name" : "Inventory_Tab_04_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "IV",
- },
- ),
- },
- ## Item Slot
- {
- "name" : "ItemSlot",
- "type" : "grid_table",
- "x" : 8,
- "y" : 246,
- "start_index" : 0,
- "x_count" : 5,
- "y_count" : 9,
- "x_step" : 32,
- "y_step" : 32,
- "image" : "d:/ymir work/ui/public/Slot_Base.sub"
- },
- {
- "name":"Mds_Slot",
- "type":"button",
- "x":8,
- "y":28,
- "horizontal_align":"center",
- "vertical_align":"bottom",
- "default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "down_image" : "d:?/ymir work/ui/public/parameter_slot_05.sub",
- "children" :
- (
- {
- "name":"Mds_Icon",
- "type":"image",
- "x":-18,
- "y":2,
- "image":"d:/ymir work/ui/game/windows/money_icon.sub",
- },
- {
- "name" : "Mds",
- "type" : "text",
- "x" : 3,
- "y" : 3,
- "horizontal_align" : "right",
- "text_horizontal_align" : "right",
- "text" : "999.999 Md's",
- },
- ),
- },
- #{
- #"name":"Cheque_Icon",
- #"type":"image",
- #"vertical_align":"bottom",
- #
- #"x":10,
- #"y":26,
- #"image":"d:/ymir work/ui/game/windows/cheque_icon.sub",
- #},
- #{
- #"name":"Cheque_Slot",
- #"type":"button",
- #"x":28,
- #"y":28,
- #"horizontal_align":"center",
- #"vertical_align":"bottom",
- #"default_image" : "d:/ymir work/ui/public/cheque_slot.sub",
- #"over_image" : "d:/ymir work/ui/public/cheque_slot.sub",
- #"down_image" : "d:/ymir work/ui/public/cheque_slot.sub",
- #"children" :
- #(
- #{
- #"name" : "Cheque",
- #"type" : "text",
- #"x" : 3,
- #"y" : 3,
- #"horizontal_align" : "right",
- #"text_horizontal_align" : "right",
- #"text" : "99",
- #},
- #),
- #},
- ),
- },
- ),
- }
- elif app.ENABLE_EXTEND_INVEN_SYSTEM and not app.ENABLE_CHEQUE_SYSTEM:
- window = {
- "name" : "InventoryWindow",
- ## 600 - (width + ¿À¸¥ÂÊÀ¸·Î ºÎÅÍ ¶ç¿ì±â 24 px)
- "x" : SCREEN_WIDTH - 176,
- "y" : SCREEN_HEIGHT - 37 - 565,
- "style" : ("movable", "float",),
- "width" : 176,
- "height" : 565-23,
- "children" :
- (
- {
- "name" : "board2",
- "type" : "board",
- "style" : ("attach",),
- "x" : 73 - 75,
- "y" : 230,
- "width" : 60,
- "height" : 188+35+35,
- "children" :
- (
- ## Offline Shop Button
- {
- "name" : "OfflineShopButton",
- "type" : "button",
- "x" : 7,
- "y" : 20,
- "tooltip_text" : uiScriptLocale.TASKBAR_OFFLINE_SHOP,
- "default_image" : "locale/de/offlineshop/boton1.tga",
- "over_image" : "locale/de/offlineshop/boton2.tga",
- "down_image" : "locale/de/offlineshop/boton1.tga",
- },
- # Teleportring
- {
- "name" : "Telep",
- "type" : "button",
- "x" : 7,
- "y" : 60,
- # "tooltip_text" : "Teleportring",
- "default_image" : "d:/ymir work/ui/game/ew2/3.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/4.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/4.tga",
- },
- # Switchbot
- {
- "name" : "Switchbot",
- "type" : "button",
- "x" : 7,
- "y" : 100,
- # "tooltip_text" : "Switchbot",
- "default_image" : "d:/ymir work/ui/game/ew2/5.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/6.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/6.tga",
- },
- # lager
- {
- "name" : "depozit_index",
- "type" : "button",
- "x" : 7,
- "y" : 220,
- # "tooltip_text" : "Lager Botten",
- "default_image" : "d:/ymir work/ui/game/ew2/lager_button_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/lager_button_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/lager_button_hover.tga"
- },
- # Yang-Anzeige
- {
- "name" : "YangAnzeige",
- "type" : "button",
- "x" : 7,
- "y" : 180,
- # "tooltip_text" : "Yang-Anzeige",
- "default_image" : "d:/ymir work/ui/game/ew2/y_anzeige_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/y_anzeige_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/y_anzeige_hover.tga",
- },
- ## Anti Exp
- {
- "name" : "AntiEXP",
- "type" : "button",
- "x" : 7,
- "y" : 140,
- # "tooltip_text" : "Anti-EXP",
- "default_image" : "d:/ymir work/ui/game/ew2/warp_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/warp_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/warp_hover.tga",
- },
- ),
- },
- ## Inventory, Equipment Slots
- {
- "name" : "board",
- "type" : "board",
- "style" : ("attach",),
- "x" : 37,
- "y" : 0,
- "width" : 176,
- "height" : 565,
- "children" :
- (
- ## Title
- {
- "name" : "TitleBar",
- "type" : "titlebar",
- "style" : ("attach",),
- "x" : 8,
- "y" : 7,
- "width" : 161,
- "color" : "yellow",
- "children" :
- (
- { "name":"TitleName", "type":"text", "x":77, "y":3, "text":uiScriptLocale.INVENTORY_TITLE, "text_horizontal_align":"center" },
- ),
- },
- {
- "name" : "ButtonMinimize",
- "type" : "button",
- "x" : 131,
- "y" : 10,
- "default_image" : "d:/ymir work/ui/public/minimize_button_01.sub",
- "over_image" : "d:/ymir work/ui/public/minimize_button_02.sub",
- "down_image" : "d:/ymir work/ui/public/minimize_button_03.sub",
- "tooltip_text" : "Minimieren",
- },
- {
- "name" : "HeadlineDefensive",
- "type" : "horizontalbar",
- "x" : 169,
- "y" : 33,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Defensiv",
- },
- ),
- },
- {
- "name" : "HeadlineOffensive",
- "type" : "horizontalbar",
- "x" : 171,
- "y" : 295,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Offensiv",
- },
- ),
- },
- ########################################
- {
- "name" : "Schwert",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 55,
- "text" : "Schwert:"
- },
- {
- "name" : "Schwert_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 55 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_1",
- "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" : "2Hand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75,
- "text" : "Zweihander:"
- },
- {
- "name" : "2Hand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_2",
- "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" : "Dolch",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20,
- "text" : "Dolche:"
- },
- {
- "name" : "Dolch_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_3",
- "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" : "Pfeilwiderstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20,
- "text" : "Pfeilwid.:"
- },
- {
- "name" : "Pfeilwiderstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_4",
- "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" : "Glocke",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20,
- "text" : "Glocke:"
- },
- {
- "name" : "Glocke_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_5",
- "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" : "Faecher",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20,
- "text" : "Faecher:"
- },
- {
- "name" : "Faecher_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_6",
- "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" : "Magiewiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20,
- "text" : "Magiewid.:"
- },
- {
- "name" : "Magiewiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_7",
- "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" : "Giftwiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Giftwiederst.:"
- },
- {
- "name" : "Giftwiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_8",
- "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" : "Krieger",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "Krieger_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_9",
- "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" : "Ninja",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "Ninja_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_10",
- "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" : "Sura",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "Sura_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_11",
- "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" : "Schamane",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "Schamane_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_12",
- "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" : "Krit",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krit. Treffer:"
- },
- {
- "name" : "Krit_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_13",
- "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" : "DB",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DB. Treffer:"
- },
- {
- "name" : "DB_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_14",
- "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" : "DSS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DSS:"
- },
- {
- "name" : "DSS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_15",
- "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" : "FKS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "FKS:"
- },
- {
- "name" : "FKS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_16",
- "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" : "Halbmenschen",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Halbm.:"
- },
- {
- "name" : "Halbmenschen_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_17",
- "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" : "Untote",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Untote:"
- },
- {
- "name" : "Untote_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_18",
- "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" : "Teufel",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Teufel:"
- },
- {
- "name" : "Teufel_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_19",
- "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" : "KriegerO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "KriegerO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_20",
- "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" : "NinjaO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "NinjaO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_21",
- "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" : "SuraO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "SuraO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_22",
- "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" : "SchamaneO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "SchamaneO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_23",
- "type" : "text",
- "x" : 26,
- "y" : 3,
- "text" : "999",
- "r" : 1.0,
- "g" : 1.0,
- "b" : 1.0,
- "a" : 1.0,
- "text_horizontal_align":"center"
- },
- ),
- },
- ## Equipment Slot
- {
- "name" : "Equipment_Base",
- "type" : "image",
- "x" : 10,
- "y" : 33,
- "image" : "d:/ymir work/ui/equipment_bg_with_ring_my_norle.tga",
- "children" :
- (
- {
- "name" : "EquipmentSlot",
- "type" : "slot",
- "x" : 3,
- "y" : 3,
- "width" : 150,
- "height" : 182,
- "slot" : (
- {"index":EQUIPMENT_START_INDEX+0, "x":39, "y":37, "width":32, "height":64},
- {"index":EQUIPMENT_START_INDEX+1, "x":39, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+2, "x":39, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+3, "x":75, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+4, "x":3, "y":3, "width":32, "height":96},
- {"index":EQUIPMENT_START_INDEX+5, "x":114, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+6, "x":114, "y":35, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+7, "x":2, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+8, "x":75, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+9, "x":114, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
- ),
- },
- ## Dragon Soul Button
- {
- "name" : "DSSButton",
- "type" : "button",
- "x" : 114,
- "y" : 107,
- "tooltip_text" : uiScriptLocale.TASKBAR_DRAGON_SOUL,
- "default_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_01.tga",
- "over_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_02.tga",
- "down_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_03.tga",
- },
- ## MallButton
- {
- "name" : "MallButton",
- "type" : "button",
- "x" : 118,
- "y" : 148,
- "tooltip_text" : uiScriptLocale.MALL_TITLE,
- "default_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_03.tga",
- },
- ## CostumeButton
- {
- "name" : "CostumeButton",
- "type" : "button",
- "x" : 78,
- "y" : 5,
- "tooltip_text" : uiScriptLocale.COSTUME_TITLE,
- "default_image" : "d:/ymir work/ui/game/taskbar/costume_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/taskbar/costume_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/taskbar/costume_Button_03.tga",
- },
- {
- "name" : "Equipment_Tab_01",
- "type" : "radio_button",
- "x" : 86,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Equipment_Tab_02",
- "type" : "radio_button",
- "x" : 86 + 32,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- ),
- },
- {
- "name" : "Inventory_Tab_01",
- "type" : "radio_button",
- "x" : 10,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_1,
- "children" :
- (
- {
- "name" : "Inventory_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_02",
- "type" : "radio_button",
- #"x" : 10 + 78,
- "x" : 10 + 39,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_2,
- "children" :
- (
- {
- "name" : "Inventory_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_03",
- "type" : "radio_button",
- "x" : 10 + 39 + 39,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_3,
- "children" :
- (
- {
- "name" : "Inventory_Tab_03_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "III",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_04",
- "type" : "radio_button",
- "x" : 10 + 39 + 39 + 39,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_half_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_4,
- "children" :
- (
- {
- "name" : "Inventory_Tab_04_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "IV",
- },
- ),
- },
- ## Item Slot
- {
- "name" : "ItemSlot",
- "type" : "grid_table",
- "x" : 8,
- "y" : 246,
- "start_index" : 0,
- "x_count" : 5,
- "y_count" : 9,
- "x_step" : 32,
- "y_step" : 32,
- "image" : "d:/ymir work/ui/public/Slot_Base.sub"
- },
- {
- "name":"Mds_Slot",
- "type":"button",
- "x":8,
- "y":28,
- "horizontal_align":"center",
- "vertical_align":"bottom",
- "default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "down_image" : "d:?/ymir work/ui/public/parameter_slot_05.sub",
- "children" :
- (
- {
- "name":"Mds_Icon",
- "type":"image",
- "x":-18,
- "y":2,
- "image":"d:/ymir work/ui/game/windows/money_icon.sub",
- },
- {
- "name" : "Mds",
- "type" : "text",
- "x" : 3,
- "y" : 3,
- "horizontal_align" : "right",
- "text_horizontal_align" : "right",
- "text" : "999.999 Md's",
- },
- ),
- },
- ),
- },
- ),
- }
- elif not app.ENABLE_EXTEND_INVEN_SYSTEM and app.ENABLE_CHEQUE_SYSTEM:
- window = {
- "name" : "InventoryWindow",
- ## 600 - (width + ¿À¸¥ÂÊÀ¸·Î ºÎÅÍ ¶ç¿ì±â 24 px)
- "x" : SCREEN_WIDTH - 176,
- "y" : SCREEN_HEIGHT - 37 - 565,
- "style" : ("movable", "float",),
- "width" : 176,
- "height" : 565-23,
- "children" :
- (
- {
- "name" : "board2",
- "type" : "board",
- "style" : ("attach",),
- "x" : 73 - 75,
- "y" : 230,
- "width" : 60,
- "height" : 188+35+35,
- "children" :
- (
- ## Offline Shop Button
- {
- "name" : "OfflineShopButton",
- "type" : "button",
- "x" : 7,
- "y" : 20,
- "tooltip_text" : uiScriptLocale.TASKBAR_OFFLINE_SHOP,
- "default_image" : "locale/de/offlineshop/boton1.tga",
- "over_image" : "locale/de/offlineshop/boton2.tga",
- "down_image" : "locale/de/offlineshop/boton1.tga",
- },
- # Teleportring
- {
- "name" : "Telep",
- "type" : "button",
- "x" : 7,
- "y" : 60,
- # "tooltip_text" : "Teleportring",
- "default_image" : "d:/ymir work/ui/game/ew2/3.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/4.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/4.tga",
- },
- # Switchbot
- {
- "name" : "Switchbot",
- "type" : "button",
- "x" : 7,
- "y" : 100,
- # "tooltip_text" : "Switchbot",
- "default_image" : "d:/ymir work/ui/game/ew2/5.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/6.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/6.tga",
- },
- # lager
- {
- "name" : "depozit_index",
- "type" : "button",
- "x" : 7,
- "y" : 220,
- # "tooltip_text" : "Lager Botten",
- "default_image" : "d:/ymir work/ui/game/ew2/lager_button_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/lager_button_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/lager_button_hover.tga"
- },
- # Yang-Anzeige
- {
- "name" : "YangAnzeige",
- "type" : "button",
- "x" : 7,
- "y" : 180,
- # "tooltip_text" : "Yang-Anzeige",
- "default_image" : "d:/ymir work/ui/game/ew2/y_anzeige_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/y_anzeige_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/y_anzeige_hover.tga",
- },
- ## Anti Exp
- {
- "name" : "AntiEXP",
- "type" : "button",
- "x" : 7,
- "y" : 140,
- # "tooltip_text" : "Anti-EXP",
- "default_image" : "d:/ymir work/ui/game/ew2/warp_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/warp_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/warp_hover.tga",
- },
- ),
- },
- ## Inventory, Equipment Slots
- {
- "name" : "board",
- "type" : "board",
- "style" : ("attach",),
- "x" : 37,
- "y" : 0,
- "width" : 176,
- "height" : 565,
- "children" :
- (
- ## Title
- {
- "name" : "TitleBar",
- "type" : "titlebar",
- "style" : ("attach",),
- "x" : 8,
- "y" : 7,
- "width" : 161,
- "color" : "yellow",
- "children" :
- (
- { "name":"TitleName", "type":"text", "x":77, "y":3, "text":uiScriptLocale.INVENTORY_TITLE, "text_horizontal_align":"center" },
- ),
- },
- {
- "name" : "ButtonMinimize",
- "type" : "button",
- "x" : 131,
- "y" : 10,
- "default_image" : "d:/ymir work/ui/public/minimize_button_01.sub",
- "over_image" : "d:/ymir work/ui/public/minimize_button_02.sub",
- "down_image" : "d:/ymir work/ui/public/minimize_button_03.sub",
- "tooltip_text" : "Minimieren",
- },
- {
- "name" : "HeadlineDefensive",
- "type" : "horizontalbar",
- "x" : 169,
- "y" : 33,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Defensiv",
- },
- ),
- },
- {
- "name" : "HeadlineOffensive",
- "type" : "horizontalbar",
- "x" : 171,
- "y" : 295,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Offensiv",
- },
- ),
- },
- ########################################
- {
- "name" : "Schwert",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 55,
- "text" : "Schwert:"
- },
- {
- "name" : "Schwert_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 55 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_1",
- "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" : "2Hand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75,
- "text" : "Zweihander:"
- },
- {
- "name" : "2Hand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_2",
- "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" : "Dolch",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20,
- "text" : "Dolche:"
- },
- {
- "name" : "Dolch_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_3",
- "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" : "Pfeilwiderstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20,
- "text" : "Pfeilwid.:"
- },
- {
- "name" : "Pfeilwiderstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_4",
- "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" : "Glocke",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20,
- "text" : "Glocke:"
- },
- {
- "name" : "Glocke_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_5",
- "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" : "Faecher",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20,
- "text" : "Faecher:"
- },
- {
- "name" : "Faecher_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_6",
- "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" : "Magiewiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20,
- "text" : "Magiewid.:"
- },
- {
- "name" : "Magiewiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_7",
- "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" : "Giftwiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Giftwiederst.:"
- },
- {
- "name" : "Giftwiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_8",
- "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" : "Krieger",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "Krieger_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_9",
- "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" : "Ninja",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "Ninja_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_10",
- "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" : "Sura",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "Sura_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_11",
- "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" : "Schamane",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "Schamane_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_12",
- "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" : "Krit",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krit. Treffer:"
- },
- {
- "name" : "Krit_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_13",
- "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" : "DB",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DB. Treffer:"
- },
- {
- "name" : "DB_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_14",
- "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" : "DSS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DSS:"
- },
- {
- "name" : "DSS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_15",
- "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" : "FKS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "FKS:"
- },
- {
- "name" : "FKS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_16",
- "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" : "Halbmenschen",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Halbm.:"
- },
- {
- "name" : "Halbmenschen_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_17",
- "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" : "Untote",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Untote:"
- },
- {
- "name" : "Untote_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_18",
- "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" : "Teufel",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Teufel:"
- },
- {
- "name" : "Teufel_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_19",
- "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" : "KriegerO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "KriegerO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_20",
- "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" : "NinjaO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "NinjaO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_21",
- "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" : "SuraO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "SuraO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_22",
- "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" : "SchamaneO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "SchamaneO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_23",
- "type" : "text",
- "x" : 26,
- "y" : 3,
- "text" : "999",
- "r" : 1.0,
- "g" : 1.0,
- "b" : 1.0,
- "a" : 1.0,
- "text_horizontal_align":"center"
- },
- ),
- },
- ## Equipment Slot
- {
- "name" : "Equipment_Base",
- "type" : "image",
- "x" : 10,
- "y" : 33,
- "image" : "d:/ymir work/ui/equipment_bg_with_ring_my_norle.tga",
- "children" :
- (
- {
- "name" : "EquipmentSlot",
- "type" : "slot",
- "x" : 3,
- "y" : 3,
- "width" : 150,
- "height" : 182,
- "slot" : (
- {"index":EQUIPMENT_START_INDEX+0, "x":39, "y":37, "width":32, "height":64},
- {"index":EQUIPMENT_START_INDEX+1, "x":39, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+2, "x":39, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+3, "x":75, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+4, "x":3, "y":3, "width":32, "height":96},
- {"index":EQUIPMENT_START_INDEX+5, "x":114, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+6, "x":114, "y":35, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+7, "x":2, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+8, "x":75, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+9, "x":114, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
- ),
- },
- ## Dragon Soul Button
- {
- "name" : "DSSButton",
- "type" : "button",
- "x" : 114,
- "y" : 107,
- "tooltip_text" : uiScriptLocale.TASKBAR_DRAGON_SOUL,
- "default_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_01.tga",
- "over_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_02.tga",
- "down_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_03.tga",
- },
- ## MallButton
- {
- "name" : "MallButton",
- "type" : "button",
- "x" : 118,
- "y" : 148,
- "tooltip_text" : uiScriptLocale.MALL_TITLE,
- "default_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_03.tga",
- },
- ## CostumeButton
- {
- "name" : "CostumeButton",
- "type" : "button",
- "x" : 78,
- "y" : 5,
- "tooltip_text" : "Costume",
- "default_image" : "d:/ymir work/ui/game/taskbar/costume_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/taskbar/costume_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/taskbar/costume_Button_03.tga",
- },
- {
- "name" : "Equipment_Tab_01",
- "type" : "radio_button",
- "x" : 86,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Equipment_Tab_02",
- "type" : "radio_button",
- "x" : 86 + 32,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- ),
- },
- {
- "name" : "Inventory_Tab_01",
- "type" : "radio_button",
- "x" : 10,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_1,
- "children" :
- (
- {
- "name" : "Inventory_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_02",
- "type" : "radio_button",
- "x" : 10 + 78,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_2,
- "children" :
- (
- {
- "name" : "Inventory_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- ## Item Slot
- {
- "name" : "ItemSlot",
- "type" : "grid_table",
- "x" : 8,
- "y" : 246,
- "start_index" : 0,
- "x_count" : 5,
- "y_count" : 9,
- "x_step" : 32,
- "y_step" : 32,
- "image" : "d:/ymir work/ui/public/Slot_Base.sub"
- },
- {
- "name":"Mds_Slot",
- "type":"button",
- "x":8,
- "y":28,
- "horizontal_align":"center",
- "vertical_align":"bottom",
- "default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "down_image" : "d:?/ymir work/ui/public/parameter_slot_05.sub",
- "children" :
- (
- {
- "name":"Mds_Icon",
- "type":"image",
- "x":-18,
- "y":2,
- "image":"d:/ymir work/ui/game/windows/money_icon.sub",
- },
- {
- "name" : "Mds",
- "type" : "text",
- "x" : 3,
- "y" : 3,
- "horizontal_align" : "right",
- "text_horizontal_align" : "right",
- "text" : "999.999 Md's",
- },
- ),
- },
- #{
- #"name":"Cheque_Icon",
- #"type":"image",
- #"vertical_align":"bottom",
- #
- #"x":10,
- #"y":26,
- #"image":"d:/ymir work/ui/game/windows/cheque_icon.sub",
- #},
- #{
- #"name":"Cheque_Slot",
- #"type":"button",
- #"x":28,
- #"y":28,
- #"horizontal_align":"center",
- #"vertical_align":"bottom",
- #"default_image" : "d:/ymir work/ui/public/cheque_slot.sub",
- #"over_image" : "d:/ymir work/ui/public/cheque_slot.sub",
- #"down_image" : "d:/ymir work/ui/public/cheque_slot.sub",
- #"children" :
- #(
- #{
- #"name" : "Cheque",
- #"type" : "text",
- #"x" : 3,
- #"y" : 3,
- #"horizontal_align" : "right",
- #"text_horizontal_align" : "right",
- #"text" : "99",
- #},
- #),
- #},
- ),
- },
- ),
- }
- else:
- window = {
- "name" : "InventoryWindow",
- ## 600 - (width + ¿À¸¥ÂÊÀ¸·Î ºÎÅÍ ¶ç¿ì±â 24 px)
- "x" : SCREEN_WIDTH - 176,
- "y" : SCREEN_HEIGHT - 37 - 565,
- "style" : ("movable", "float",),
- "width" : 176,
- "height" : 565-23,
- "children" :
- (
- {
- "name" : "board2",
- "type" : "board",
- "style" : ("attach",),
- "x" : 73 - 75,
- "y" : 230,
- "width" : 60,
- "height" : 188+35+35,
- "children" :
- (
- ## Offline Shop Button
- {
- "name" : "OfflineShopButton",
- "type" : "button",
- "x" : 7,
- "y" : 20,
- "tooltip_text" : uiScriptLocale.TASKBAR_OFFLINE_SHOP,
- "default_image" : "locale/de/offlineshop/boton1.tga",
- "over_image" : "locale/de/offlineshop/boton2.tga",
- "down_image" : "locale/de/offlineshop/boton1.tga",
- },
- # Teleportring
- {
- "name" : "Telep",
- "type" : "button",
- "x" : 7,
- "y" : 60,
- # "tooltip_text" : "Teleportring",
- "default_image" : "d:/ymir work/ui/game/ew2/3.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/4.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/4.tga",
- },
- # Switchbot
- {
- "name" : "Switchbot",
- "type" : "button",
- "x" : 7,
- "y" : 100,
- # "tooltip_text" : "Switchbot",
- "default_image" : "d:/ymir work/ui/game/ew2/5.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/6.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/6.tga",
- },
- # lager
- {
- "name" : "depozit_index",
- "type" : "button",
- "x" : 7,
- "y" : 220,
- # "tooltip_text" : "Lager Botten",
- "default_image" : "d:/ymir work/ui/game/ew2/lager_button_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/lager_button_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/lager_button_hover.tga"
- },
- # Yang-Anzeige
- {
- "name" : "YangAnzeige",
- "type" : "button",
- "x" : 7,
- "y" : 180,
- # "tooltip_text" : "Yang-Anzeige",
- "default_image" : "d:/ymir work/ui/game/ew2/y_anzeige_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/y_anzeige_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/y_anzeige_hover.tga",
- },
- ## Anti Exp
- {
- "name" : "AntiEXP",
- "type" : "button",
- "x" : 7,
- "y" : 140,
- # "tooltip_text" : "Anti-EXP",
- "default_image" : "d:/ymir work/ui/game/ew2/warp_default.tga",
- "over_image" : "d:/ymir work/ui/game/ew2/warp_down.tga",
- "down_image" : "d:/ymir work/ui/game/ew2/warp_hover.tga",
- },
- ),
- },
- ## Inventory, Equipment Slots
- {
- "name" : "board",
- "type" : "board",
- "style" : ("attach",),
- "x" : 37,
- "y" : 0,
- "width" : 176,
- "height" : 565,
- "children" :
- (
- ## Title
- {
- "name" : "TitleBar",
- "type" : "titlebar",
- "style" : ("attach",),
- "x" : 8,
- "y" : 7,
- "width" : 161,
- "color" : "yellow",
- "children" :
- (
- { "name":"TitleName", "type":"text", "x":77, "y":3, "text":uiScriptLocale.INVENTORY_TITLE, "text_horizontal_align":"center" },
- ),
- },
- {
- "name" : "ButtonMinimize",
- "type" : "button",
- "x" : 131,
- "y" : 10,
- "default_image" : "d:/ymir work/ui/public/minimize_button_01.sub",
- "over_image" : "d:/ymir work/ui/public/minimize_button_02.sub",
- "down_image" : "d:/ymir work/ui/public/minimize_button_03.sub",
- "tooltip_text" : "Minimieren",
- },
- {
- "name" : "HeadlineDefensive",
- "type" : "horizontalbar",
- "x" : 169,
- "y" : 33,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Defensiv",
- },
- ),
- },
- {
- "name" : "HeadlineOffensive",
- "type" : "horizontalbar",
- "x" : 171,
- "y" : 295,
- "width" : 115,
- "children" :
- (
- {
- "name" : "bonus_text_1",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "Offensiv",
- },
- ),
- },
- ########################################
- {
- "name" : "Schwert",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 55,
- "text" : "Schwert:"
- },
- {
- "name" : "Schwert_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 55 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_1",
- "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" : "2Hand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75,
- "text" : "Zweihander:"
- },
- {
- "name" : "2Hand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_2",
- "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" : "Dolch",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20,
- "text" : "Dolche:"
- },
- {
- "name" : "Dolch_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_3",
- "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" : "Pfeilwiderstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20,
- "text" : "Pfeilwid.:"
- },
- {
- "name" : "Pfeilwiderstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_4",
- "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" : "Glocke",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20,
- "text" : "Glocke:"
- },
- {
- "name" : "Glocke_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_5",
- "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" : "Faecher",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20,
- "text" : "Faecher:"
- },
- {
- "name" : "Faecher_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_6",
- "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" : "Magiewiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20,
- "text" : "Magiewid.:"
- },
- {
- "name" : "Magiewiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_7",
- "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" : "Giftwiederstand",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Giftwiederst.:"
- },
- {
- "name" : "Giftwiederstand_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_8",
- "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" : "Krieger",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "Krieger_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_9",
- "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" : "Ninja",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "Ninja_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_10",
- "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" : "Sura",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "Sura_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_11",
- "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" : "Schamane",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "Schamane_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_12",
- "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" : "Krit",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krit. Treffer:"
- },
- {
- "name" : "Krit_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_13",
- "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" : "DB",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DB. Treffer:"
- },
- {
- "name" : "DB_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_14",
- "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" : "DSS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "DSS:"
- },
- {
- "name" : "DSS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_15",
- "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" : "FKS",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "FKS:"
- },
- {
- "name" : "FKS_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_16",
- "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" : "Halbmenschen",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Halbm.:"
- },
- {
- "name" : "Halbmenschen_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_17",
- "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" : "Untote",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Untote:"
- },
- {
- "name" : "Untote_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_18",
- "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" : "Teufel",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Teufel:"
- },
- {
- "name" : "Teufel_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_19",
- "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" : "KriegerO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Krieger:"
- },
- {
- "name" : "KriegerO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_20",
- "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" : "NinjaO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Ninja:"
- },
- {
- "name" : "NinjaO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_21",
- "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" : "SuraO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Sura:"
- },
- {
- "name" : "SuraO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_22",
- "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" : "SchamaneO",
- "type" : "text",
- "x" : 176 - 5,
- "y" : 75 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "text" : "Schamane:"
- },
- {
- "name" : "SchamaneO_info",
- "type" : "image",
- "x" : 176 + BONUS_BOARD_WIDTH - 65,
- "y" : 75 + 20 - 2 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20 + 20,
- "image" : "d:/ymir work/ui/public/Parameter_Slot_01.sub",
- "children" :
- (
- {
- "name" : "bonus_23",
- "type" : "text",
- "x" : 26,
- "y" : 3,
- "text" : "999",
- "r" : 1.0,
- "g" : 1.0,
- "b" : 1.0,
- "a" : 1.0,
- "text_horizontal_align":"center"
- },
- ),
- },
- ## Equipment Slot
- {
- "name" : "Equipment_Base",
- "type" : "image",
- "x" : 10,
- "y" : 33,
- "image" : "d:/ymir work/ui/equipment_bg_with_ring_my_norle.tga",
- "children" :
- (
- {
- "name" : "EquipmentSlot",
- "type" : "slot",
- "x" : 3,
- "y" : 3,
- "width" : 150,
- "height" : 182,
- "slot" : (
- {"index":EQUIPMENT_START_INDEX+0, "x":39, "y":37, "width":32, "height":64},
- {"index":EQUIPMENT_START_INDEX+1, "x":39, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+2, "x":39, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+3, "x":75, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+4, "x":3, "y":3, "width":32, "height":96},
- {"index":EQUIPMENT_START_INDEX+5, "x":114, "y":67, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+6, "x":114, "y":35, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+7, "x":2, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+8, "x":75, "y":145, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+9, "x":114, "y":2, "width":32, "height":32},
- {"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
- {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
- ),
- },
- ## Dragon Soul Button
- {
- "name" : "DSSButton",
- "type" : "button",
- "x" : 114,
- "y" : 107,
- "tooltip_text" : uiScriptLocale.TASKBAR_DRAGON_SOUL,
- "default_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_01.tga",
- "over_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_02.tga",
- "down_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_03.tga",
- },
- ## MallButton
- {
- "name" : "MallButton",
- "type" : "button",
- "x" : 118,
- "y" : 148,
- "tooltip_text" : uiScriptLocale.MALL_TITLE,
- "default_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_03.tga",
- },
- ## CostumeButton
- {
- "name" : "CostumeButton",
- "type" : "button",
- "x" : 78,
- "y" : 5,
- "tooltip_text" : uiScriptLocale.COSTUME_TITLE,
- "default_image" : "d:/ymir work/ui/game/taskbar/costume_Button_01.tga",
- "over_image" : "d:/ymir work/ui/game/taskbar/costume_Button_02.tga",
- "down_image" : "d:/ymir work/ui/game/taskbar/costume_Button_03.tga",
- },
- {
- "name" : "Equipment_Tab_01",
- "type" : "radio_button",
- "x" : 86,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Equipment_Tab_02",
- "type" : "radio_button",
- "x" : 86 + 32,
- "y" : 161,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
- "children" :
- (
- {
- "name" : "Equipment_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- ),
- },
- {
- "name" : "Inventory_Tab_01",
- "type" : "radio_button",
- "x" : 10,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_1,
- "children" :
- (
- {
- "name" : "Inventory_Tab_01_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "I",
- },
- ),
- },
- {
- "name" : "Inventory_Tab_02",
- "type" : "radio_button",
- "x" : 10 + 78,
- "y" : 33 + 191,
- "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_01.sub",
- "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_02.sub",
- "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_03.sub",
- "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_2,
- "children" :
- (
- {
- "name" : "Inventory_Tab_02_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "II",
- },
- ),
- },
- ## Item Slot
- {
- "name" : "ItemSlot",
- "type" : "grid_table",
- "x" : 8,
- "y" : 246,
- "start_index" : 0,
- "x_count" : 5,
- "y_count" : 9,
- "x_step" : 32,
- "y_step" : 32,
- "image" : "d:/ymir work/ui/public/Slot_Base.sub"
- },
- {
- "name":"Mds_Slot",
- "type":"button",
- "x":8,
- "y":28,
- "horizontal_align":"center",
- "vertical_align":"bottom",
- "default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
- "down_image" : "d:?/ymir work/ui/public/parameter_slot_05.sub",
- "children" :
- (
- {
- "name":"Mds_Icon",
- "type":"image",
- "x":-18,
- "y":2,
- "image":"d:/ymir work/ui/game/windows/money_icon.sub",
- },
- {
- "name" : "Mds",
- "type" : "text",
- "x" : 3,
- "y" : 3,
- "horizontal_align" : "right",
- "text_horizontal_align" : "right",
- "text" : "999.999 Md's",
- },
- ),
- },
- ),
- },
- ),
- }
wen ich nun bei
die 37 zu 0 ändere ist es wieder normal allerdings ist die sidbar so wie botten`s weg
vllt weiss einer ja ne lösung dafür