most part of ur uiScriptLocale is a dictionary. Therefore in python u can only add ur if statement only outside of it.
The lines after ur if statement try to access data of ur dictionary called "window" meaning that it has to be already initialized when the statement is used.
- import uiScriptLocale
- IMG_DIR = "d:/ymir work/ui/game/gameoption/"
- TITLE_IMAGE_TEXT_X = 5
- TITLE_IMAGE_TEXT_Y = 4
- OPTION_START_X = 17
- SLIDER_POSITION_X = 50
- SLIDER_START_Y = 40
- BUTTON_START_Y = 33
- BUTTON_NEXT_Y = 20
- RADIO_BUTTON_RANGE_X = 65
- TOGGLE_BUTTON_RANGE_X = 65
- RADIO_BUTTON_TEXT_X = 25
- TOGGLE_BUTTON_TEXT_X = 20
- SMALL_OPTION_HEIGHT = 65
- NORMAL_OPTION_HEIGHT = 80
- SLIDER_OPTION_HEIGHT = 65
- window = {
- "name" : "GameOptionDialog",
- # Dont touch these lines!
- "style" : (),
- "x" : 171,
- "y" : 3,
- "width" : 300,
- "height" : 324,
- # Dont touch these lines!
- "children" :
- (
- {
- "name" : "show_name_window",
- "type" : "window",
- "x" : 0,
- "y" : 0,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "show_name_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "title_show_name",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.OPTION_ALWAYS_SHOW_NAME,
- },
- ),
- },
- {
- "name" : "always_show_name_on_button",
- "type" : "radio_button",
- "x" : OPTION_START_X+RADIO_BUTTON_RANGE_X*0,
- "y" : 33,
- "text" : uiScriptLocale.OPTION_ALWAYS_SHOW_NAME_ON,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "always_show_name_off_button",
- "type" : "radio_button",
- "x" : OPTION_START_X+RADIO_BUTTON_RANGE_X*1,
- "y" : 33,
- "text" : uiScriptLocale.OPTION_ALWAYS_SHOW_NAME_OFF,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "outline_window",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "outline_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "title_outline",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.OPTION_OUTLINE_INFO,
- },
- ),
- },
- {
- "name" : "outline_on_button",
- "type" : "radio_button",
- "x" : OPTION_START_X+RADIO_BUTTON_RANGE_X*0,
- "y" : 33,
- "text" : uiScriptLocale.OPTION_OUTLINE_ON,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "outline_off_button",
- "type" : "radio_button",
- "x" : OPTION_START_X+RADIO_BUTTON_RANGE_X*1,
- "y" : 33,
- "text" : uiScriptLocale.OPTION_OUTLINE_OFF,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "affect_icons_window",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "affect_icons_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "title_affect_icons",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : "Affect Icons",
- },
- ),
- },
- {
- "name" : "show_affect_icons",
- "type" : "radio_button",
- "x" : OPTION_START_X+RADIO_BUTTON_RANGE_X*0,
- "y" : 33,
- "text" : uiScriptLocale.OPTION_OUTLINE_ON,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "hide_affect_icons",
- "type" : "radio_button",
- "x" : OPTION_START_X+RADIO_BUTTON_RANGE_X*1,
- "y" : 33,
- "text" : uiScriptLocale.OPTION_OUTLINE_OFF,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "perspective_window",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SLIDER_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "perspective_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "title_perspective",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.OPTION_FOV,
- },
- ),
- },
- {
- "name" : "perspective_controller",
- "type" : "sliderbar",
- "x" : OPTION_START_X+SLIDER_POSITION_X,
- "y" : SLIDER_START_Y,
- },
- ),
- },
- {
- "name" : "effect_level_title",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SLIDER_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- #effect
- {
- "name" : "effect_level_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "effect_level",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.GRAPHICONOFF_EFFECT_LEVEL,
- },
- ),
- },
- {
- "name" : "effect_level0",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*0,
- "y" : 33,
- "text" : "1",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_EFFECT_LEVEL1_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "effect_level1",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*1,
- "y" : 33,
- "text" : "2",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_EFFECT_LEVEL2_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "effect_level2",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*2,
- "y" : 33,
- "text" : "3",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_EFFECT_LEVEL3_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "effect_level3",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*3,
- "y" : 33,
- "text" : "4",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_EFFECT_LEVEL4_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "effect_level4",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*4,
- "y" : 33,
- "text" : "5",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_EFFECT_LEVEL5_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "bazaarTitle",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SLIDER_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- #effect
- {
- "name" : "bazaarTitle_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "bazaarTitleText",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.GRAPHICONOFF_PRIVATE_SHOP_LEVEL,
- },
- ),
- },
- {
- "name" : "bazaar0",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*0,
- "y" : 33,
- "text" : "1",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PRIVATE_SHOP_LEVEL1_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "bazaar1",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*1,
- "y" : 33,
- "text" : "2",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PRIVATE_SHOP_LEVEL2_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "bazaar2",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*2,
- "y" : 33,
- "text" : "3",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PRIVATE_SHOP_LEVEL3_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "bazaar3",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*3,
- "y" : 33,
- "text" : "4",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PRIVATE_SHOP_LEVEL4_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "bazaar4",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*4,
- "y" : 33,
- "text" : "5",
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PRIVATE_SHOP_LEVEL5_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "PetTitle",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SLIDER_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- #effect
- {
- "name" : "pet_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "PetTitleText",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.GRAPHICONOFF_PET_STATUS,
- },
- ),
- },
- {
- "name" : "pet_on",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*0,
- "y" : 33,
- "text" : uiScriptLocale.GRAPHICONOFF_PET_STATUS_ON,
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PET_STATUS_ON_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "pet_off",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*1,
- "y" : 33,
- "text" : uiScriptLocale.GRAPHICONOFF_PET_STATUS_OFF,
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_PET_STATUS_OFF_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "MountTitle",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SLIDER_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "mount_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "MountTitleText",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.GRAPHICONOFF_MOUNT_STATUS,
- },
- ),
- },
- {
- "name" : "mount_on",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*0,
- "y" : 33,
- "text" : uiScriptLocale.GRAPHICONOFF_MOUNT_STATUS_ON,
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_MOUNT_STATUS_ON_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "mount_off",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*1,
- "y" : 33,
- "text" : uiScriptLocale.GRAPHICONOFF_MOUNT_STATUS_OFF,
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_MOUNT_STATUS_OFF_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "npcName",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SLIDER_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SMALL_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "npcName_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "npcNameTitleText",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.GRAPHICONOFF_NPC_NAME_STATUS,
- },
- ),
- },
- {
- "name" : "npcName_on",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*0,
- "y" : 33,
- "text" : uiScriptLocale.GRAPHICONOFF_NPC_NAME_STATUS_ON,
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_NPC_NAME_STATUS_ON_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- {
- "name" : "npcName_off",
- "type" : "radio_button",
- "x" : OPTION_START_X+(RADIO_BUTTON_RANGE_X-15)*1,
- "y" : 33,
- "text" : uiScriptLocale.GRAPHICONOFF_NPC_NAME_STATUS_OFF,
- "tooltip_text" : uiScriptLocale.GRAPHICONOFF_NPC_NAME_STATUS_OFF_TOOLTIP,
- "text_x" : RADIO_BUTTON_TEXT_X,
- "default_image" : IMG_DIR + "radio_unselected.tga",
- "over_image" : IMG_DIR + "radio_unselected.tga",
- "down_image" : IMG_DIR + "radio_selected.tga",
- },
- ),
- },
- {
- "name" : "object_distance_window",
- "type" : "window",
- "x" : 0,
- "y" : SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SLIDER_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT+SMALL_OPTION_HEIGHT,
- "width":304,
- "height":SLIDER_OPTION_HEIGHT,
- "children":
- (
- {
- "name" : "object_distance_title_img",
- "type" : "expanded_image",
- "x" : 0,
- "y" : 0,
- "image" : IMG_DIR+"option_title.tga",
- "children":
- (
- {
- "name" : "title_object_distance",
- "type" : "text",
- "x" : TITLE_IMAGE_TEXT_X,
- "y" : TITLE_IMAGE_TEXT_Y,
- "text_horizontal_align":"left",
- "text" : uiScriptLocale.OPTION_OBJECT_DISTANCE,
- },
- ),
- },
- {
- "name" : "object_distance_controller",
- "type" : "sliderbar",
- "x" : OPTION_START_X+SLIDER_POSITION_X,
- "y" : SLIDER_START_Y,
- },
- ),
- },
- ),
- }
- if app.ENABLE_DOG_MODE:
- CUR_LINE_Y += LINE_STEP
- window["height"] = window["height"] + 25
- window["children"][0]["height"] = window["children"][0]["height"] + 25
- window["children"][0]["children"] = window["children"][0]["children"] + [
- ## Dog Mode
- {
- "name" : "dogmode_on_off",
- "type" : "text",
- "multi_line" : 1,
- "x" : LINE_LABEL_X,
- "y" : CUR_LINE_Y+2,
- "text" : "Potwory",
- },
- {
- "name" : "dog_mode_open",
- "type" : "radio_button",
- "x" : LINE_DATA_X,
- "y" : CUR_LINE_Y,
- "text" : "Dzikie Psy",
- "default_image" : ROOT_PATH + "middle_button_01.sub",
- "over_image" : ROOT_PATH + "middle_button_02.sub",
- "down_image" : ROOT_PATH + "middle_button_03.sub",
- },
- {
- "name" : "dog_mode_close",
- "type" : "radio_button",
- "x" : LINE_DATA_X+MIDDLE_BUTTON_WIDTH,
- "y" : CUR_LINE_Y,
- "text" : "Normalne",
- "default_image" : ROOT_PATH + "middle_button_01.sub",
- "over_image" : ROOT_PATH + "middle_button_02.sub",
- "down_image" : ROOT_PATH + "middle_button_03.sub",
- },]
Alles anzeigen
This is (at least by python syntax) correct.
If ur still getting errors I dont really think the problem can be solved here without further information.
Feel free to correct me if I'm wrong
Edit:
I dont have a lot of knowledge of metins client, but u try to access a bool from the module called "app" (app.ENABLE_DOG_MODULE), without importing it. Is app fsr still available here ?