- Katılım
- 3 Nis 2015
- Konular
- 4
- Mesajlar
- 35
- Online süresi
- 20h 18m
- Reaksiyon Skoru
- 3
- Altın Konu
- 0
- TM Yaşı
- 11 Yıl 2 Ay 14 Gün
- Başarım Puanı
- 85
- MmoLira
- 302
- DevLira
- 0
HERAKLES Otomatik Avlı kalıcı sunucu. 19 Haziran'da açılıyor. Atius & Wizard güvencesiyle hemen kayıt ol, ön kayıt ödülleri aktif. HEMEN TIKLA!
[QUOTE = "(Blue Spirit), post: 20610616, member: 2173974"]
You need to edit in Gameoptiondialog.py ...
[/ QUOTE]
I already copied and pasted the contents of the game. I'm not sure what I'm missing. I pasted my gameoptiondialog.py code
You need to edit in Gameoptiondialog.py ...
[/ QUOTE]
I already copied and pasted the contents of the game. I'm not sure what I'm missing. I pasted my gameoptiondialog.py code
Linkleri görebilmek için Turkmmo Forumuna ÜYE olmanız gerekmektedir.
Son düzenleme:
- Katılım
- 20 Eki 2017
- Konular
- 468
- Mesajlar
- 9,380
- Çözüm
- 271
- Online süresi
- 11mo 27d
- Reaksiyon Skoru
- 8,233
- Altın Konu
- 47
- TM Yaşı
- 8 Yıl 7 Ay 28 Gün
- Başarım Puanı
- 326
- Yaş
- 25
- MmoLira
- 97,721
- DevLira
- 242
upload to dosyaupload.com[QUOTE = "(Blue Spirit), post: 20610616, member: 2173974"]
You need to edit in Gameoptiondialog.py ...
[/ QUOTE]
I already copied and pasted the contents of gameoptiondialog.py as specified in the instructions. I'm not sure what I'm missing. I pasted my gameoptiondialog.py code
[CODE lang = "python" title = "gameoptiondialog"] import uiScriptLocale
import app
ROOT_PATH = "d: / ymir work / ui / public /"
TEMPORARY_X = +13
BUTTON_TEMPORARY_X = 5
PVP_X = -10
LINE_LABEL_X = 30
LINE_DATA_X = 90
LINE_BEGIN = 40
LINE_STEP = 25
SMALL_BUTTON_WIDTH = 45
MIDDLE_BUTTON_WIDTH = 65
window = {
"name": "GameOptionDialog",
"style": ["movable", "float",],
"x": 0,
"y": 0,
"width": 300,
"height": 25 * 11 + 8,
"children":
[
{
"name": "board",
"type": "board",
"x": 0,
"y": 0,
"width": 300,
"height": 25 * 11 + 8,
"children":
[
## Title
{
"name": "titlebar",
"type": "titlebar",
"style": ["attach",],
"x": 8,
"y": 8,
"width": 284,
"color": "gray",
"children":
[
{"name": "titlename", "type": "text", "x": 0, "y": 3,
"text": uiScriptLocale.GAMEOPTION_TITLE,
"horizontal_align": "center", "text_horizontal_align": "center"},
]
},
## 이름 색
{
"name": "name_color",
"type": "text",
"x": LINE_LABEL_X,
"y": 40 + 2,
"text": uiScriptLocale.OPTION_NAME_COLOR,
},
{
"name": "name_color_normal",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 0,
"y": 40,
"text": uiScriptLocale.OPTION_NAME_COLOR_NORMAL,
"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": "name_color_empire",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 1,
"y": 40,
"text": uiScriptLocale.OPTION_NAME_COLOR_EMPIRE,
"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": "target_board",
"type": "text",
"x": LINE_LABEL_X,
"y": 65 + 2,
"text": uiScriptLocale.OPTION_TARGET_BOARD,
},
{
"name": "target_board_no_view",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 0,
"y": 65,
"text": uiScriptLocale.OPTION_TARGET_BOARD_NO_VIEW,
"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": "target_board_view",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 1,
"y": 65,
"text": uiScriptLocale.OPTION_TARGET_BOARD_VIEW,
"default_image": ROOT_PATH + "Middle_Button_01.sub",
"over_image": ROOT_PATH + "Middle_Button_02.sub",
"down_image": ROOT_PATH + "Middle_Button_03.sub",
},
## PvP Mode
{
"name": "pvp_mode",
"type": "text",
"x": LINE_LABEL_X,
"y": 90 + 2,
"text": uiScriptLocale.OPTION_PVPMODE,
},
{
"name": "pvp_peace",
"type": "radio_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 0,
"y": 90,
"text": uiScriptLocale.OPTION_PVPMODE_PEACE,
"tooltip_text": uiScriptLocale.OPTION_PVPMODE_PEACE_TOOLTIP,
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "pvp_revenge",
"type": "radio_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 1,
"y": 90,
"text": uiScriptLocale.OPTION_PVPMODE_REVENGE,
"tooltip_text": uiScriptLocale.OPTION_PVPMODE_REVENGE_TOOLTIP,
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "pvp_guild",
"type": "radio_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 2,
"y": 90,
"text": uiScriptLocale.OPTION_PVPMODE_GUILD,
"tooltip_text": uiScriptLocale.OPTION_PVPMODE_GUILD_TOOLTIP,
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "pvp_free",
"type": "radio_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 3,
"y": 90,
"text": uiScriptLocale.OPTION_PVPMODE_FREE,
"tooltip_text": uiScriptLocale.OPTION_PVPMODE_FREE_TOOLTIP,
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
# SetVisible
{
"name": "visible_board",
"type": "text",
"x": LINE_LABEL_X,
"y": 290 + 2,
"text": "Visible",
},
{
"name": "vsble0",
"type": "toggle_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 0,
"y": 290,
"text": "TREE",
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "vsble1",
"type": "toggle_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 1,
"y": 290,
"text": "CLOUD",
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "vsble2",
"type": "toggle_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 2,
"y": 290,
"text": "WATER",
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "vsble3",
"type": "toggle_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 3,
"y": 290,
"text": "OBJECT",
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "vsble4",
"type": "toggle_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 4,
"y": 290,
"text": "TERRAIN",
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
{
"name": "vsble5",
"type": "toggle_button",
"x": LINE_DATA_X + SMALL_BUTTON_WIDTH * 5,
"y": 290,
"text": "SHOP",
"default_image": ROOT_PATH + "small_Button_01.sub",
"over_image": ROOT_PATH + "small_Button_02.sub",
"down_image": ROOT_PATH + "small_Button_03.sub",
},
## Block
{
"name": "block",
"type": "text",
"x": LINE_LABEL_X,
"y": 115 + 2,
"text": uiScriptLocale.OPTION_BLOCK,
},
{
"name": "block_exchange_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 0,
"y": 115,
"text": uiScriptLocale.OPTION_BLOCK_EXCHANGE,
"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": "block_party_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 1,
"y": 115,
"text": uiScriptLocale.OPTION_BLOCK_PARTY,
"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": "block_guild_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 2,
"y": 115,
"text": uiScriptLocale.OPTION_BLOCK_GUILD,
"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": "block_whisper_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 0,
"y": 140,
"text": uiScriptLocale.OPTION_BLOCK_WHISPER,
"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": "block_friend_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 1,
"y": 140,
"text": uiScriptLocale.OPTION_BLOCK_FRIEND,
"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": "block_party_request_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH * 2,
"y": 140,
"text": uiScriptLocale.OPTION_BLOCK_PARTY_REQUEST,
"default_image": ROOT_PATH + "middle_button_01.sub",
"over_image": ROOT_PATH + "middle_button_02.sub",
"down_image": ROOT_PATH + "middle_button_03.sub",
},
## Chat
{
"name": "chat",
"type": "text",
"x": LINE_LABEL_X,
"y": 165 + 2,
"text": uiScriptLocale.OPTION_VIEW_CHAT,
},
{
"name": "view_chat_on_button",
"type": "radio_button",
"x": LINE_DATA_X,
"y": 165,
"text": uiScriptLocale.OPTION_VIEW_CHAT_ON,
"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": "view_chat_off_button",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH,
"y": 165,
"text": uiScriptLocale.OPTION_VIEW_CHAT_OFF,
"default_image": ROOT_PATH + "middle_button_01.sub",
"over_image": ROOT_PATH + "middle_button_02.sub",
"down_image": ROOT_PATH + "middle_button_03.sub",
},
## Always Show Name
{
"name": "always_show_name",
"type": "text",
"x": LINE_LABEL_X,
"y": 190 + 2,
"text": uiScriptLocale.OPTION_ALWAYS_SHOW_NAME,
},
{
"name": "always_show_name_on_button",
"type": "radio_button",
"x": LINE_DATA_X,
"y": 190,
"text": uiScriptLocale.OPTION_ALWAYS_SHOW_NAME_ON,
"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": "always_show_name_off_button",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH,
"y": 190,
"text": uiScriptLocale.OPTION_ALWAYS_SHOW_NAME_OFF,
"default_image": ROOT_PATH + "middle_button_01.sub",
"over_image": ROOT_PATH + "middle_button_02.sub",
"down_image": ROOT_PATH + "middle_button_03.sub",
},
## Effect On / Off
{
"name": "effect_on_off",
"type": "text",
"x": LINE_LABEL_X,
"y": 215 + 2,
"text": uiScriptLocale.OPTION_EFFECT,
},
{
"name": "show_damage_on_button",
"type": "radio_button",
"x": LINE_DATA_X,
"y": 215,
"text": uiScriptLocale.OPTION_VIEW_CHAT_ON,
"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": "show_damage_off_button",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH,
"y": 215,
"text": uiScriptLocale.OPTION_VIEW_CHAT_OFF,
"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": "salestext_on_off",
"type": "text",
"x": LINE_LABEL_X,
"y": 240 + 2,
"text": uiScriptLocale.OPTION_SALESTEXT,
},
{
"name": "salestext_on_button",
"type": "radio_button",
"x": LINE_DATA_X,
"y": 240,
"text": uiScriptLocale.OPTION_SALESTEXT_VIEW_ON,
"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": "salestext_off_button",
"type": "radio_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH,
"y": 240,
"text": uiScriptLocale.OPTION_SALESTEXT_VIEW_OFF,
"default_image": ROOT_PATH + "middle_button_01.sub",
"over_image": ROOT_PATH + "middle_button_02.sub",
"down_image": ROOT_PATH + "middle_button_03.sub",
},
]
},
]
}
CUR_LINE_Y = LINE_BEGIN + LINE_STEP * 8
if app.WJ_SHOW_MOB_INFO:
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"] + [
## Show Mob Info List
{
"name": "show_mob_info",
"type": "text",
"multi_line": 1,
"x": LINE_LABEL_X,
"y": CUR_LINE_Y + 2,
"text": uiScriptLocale.OPTION_MOB_INFO,
},
{
"name": "show_mob_level_button",
"type": "toggle_button",
"x": LINE_DATA_X,
"y": CUR_LINE_Y,
"text": uiScriptLocale.OPTION_MOB_INFO_LEVEL,
"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": "show_mob_AI_flag_button",
"type": "toggle_button",
"x": LINE_DATA_X + MIDDLE_BUTTON_WIDTH,
"y": CUR_LINE_Y,
"text": uiScriptLocale.OPTION_MOB_INFO_AGGR,
"default_image": ROOT_PATH + "middle_button_01.sub",
"over_image": ROOT_PATH + "middle_button_02.sub",
"down_image": ROOT_PATH + "middle_button_03.sub",
}]
[/ CODE]
- Katılım
- 20 Eki 2017
- Konular
- 468
- Mesajlar
- 9,380
- Çözüm
- 271
- Online süresi
- 11mo 27d
- Reaksiyon Skoru
- 8,233
- Altın Konu
- 47
- TM Yaşı
- 8 Yıl 7 Ay 28 Gün
- Başarım Puanı
- 326
- Yaş
- 25
- MmoLira
- 97,721
- DevLira
- 242
[QUOTE = "(Blue Spirit), post: 20610673, member: 2173974"]
upload to fileupload.com
[/ QUOTE]
my gameoptiondialog.py
Somebody please fix it.
Linkleri görebilmek için Turkmmo Forumuna ÜYE olmanız gerekmektedir.
Şu an konuyu görüntüleyenler (Toplam : 0, Üye: 0, Misafir: 0)
Benzer konular
- Cevaplar
- 4
- Görüntüleme
- 396
- Cevaplar
- 1
- Görüntüleme
- 457
- Cevaplar
- 21
- Görüntüleme
- 1K


