Yardım Envanter sol ikon

Konu sahibi bu konuda soru soruyor. Sorusu ile ilgili bilgisi olanların yanıtlamasını bekliyor.

99ahmet99

Dikkat Acemiyim
MT Üye
Mesaj
184
Çözümler
9
Beğeni
49
Puan
154
Ticaret Puanı
0
Ekran-Alintisi.png


şuranın ikonlarını nereden değişicem pack içerisinde ve nereden kaldırıcam butonları
 
"default_image" : "d:/ymir work/ui/game/belt_inventory/btn_minimize_normal.tga", mesela

uiscript - beltinventorywindow.py buldum ama resimleri nereden cekiyor bulamadım
 
uiinventory.py içerisinde olabilir mi yada onun dışında olan bir py dosyası?
buldum ama bu seferde siliyorum gitmiyor boşluk gene devam ediyor inventorywindow.py içerisinde thanos ve uzaktan marketi kaldırıyorum gene aynı

Python:
import uiScriptLocale
import item

EQUIPMENT_START_INDEX = 225

window = {
    "name" : "InventoryWindow",
    "x" : SCREEN_WIDTH - 176 - 38 - 72+70,
    "y" : SCREEN_HEIGHT - 50 - 565 -2,
    "style" : ("movable", "float",),
    "width" : 176+70,
    "height" : 585,
    "children" :
    (
        {
            "name" : "buttonboard",
            "type" : "board",
            "style" : ("attach",),
            "x" : 73 - 70,
            "y" : 10,
            "width" : 25,
            "height" : 330,##yükseklik bunu ayarlıyabilirsiniz
            "children" :
            (
                ## Title
##                {
##                    "name" : "TitleBar",
##                    "type" : "titlebar",
##                    "style" : ("attach",),
##
##                    "x" : 8,
##                    "y" : 7,
##
##                    "width" : 80,
##                    "color" : "yellow",
##
##                    "children" :
##                    (
##                        { "name":"TitleName", "type":"text", "x":27, "y":3, "text":uiScriptLocale.HIZLI_MENU_TITLE, "text_horizontal_align":"center" },
##                    ),
##                },
               
                #UZAKTAN NPC
                {
                    "name" : "NpcOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Uzaktan Market",
                    "default_image" : "ymir_castiel/party_button_01.tga",
                    "over_image" : "ymir_castiel/party_button_02.tga",
                    "down_image" : "ymir_castiel/party_button_03.tga",
                },
                #HAVA DURUMU
                {
                    "name" : "HavaOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Hava Durumu",
                    "default_image" : "ymir_castiel/taskbar_auto_button_01.tga",
                    "over_image" : "ymir_castiel/taskbar_auto_button_02.tga",
                    "down_image" : "ymir_castiel/taskbar_auto_button_03.tga",
                },
                #TOPLU İTEM SİLME
                {
                    "name" : "SilOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+35+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Toplu İtem Sil-Sat",
                    "default_image" : "ymir_castiel/mcard_button_01.tga",
                    "over_image" : "ymir_castiel/mcard_button_02.tga",
                    "down_image" : "ymir_castiel/mcard_button_03.tga",
                },
                #LONCA SIRALAMA
                {
                    "name" : "LoncaOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Lonca Sıralama",
                    "default_image" : "ymir_castiel/dragonsoul_button_01.tga",
                    "over_image" : "ymir_castiel/dragonsoul_button_02.tga",
                    "down_image" : "ymir_castiel/dragonsoul_button_03.tga",
                },

                #EFEKT SİSTEMİ
                {
                    "name" : "EfektOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Efekt Verme Sistemi",
                    "default_image" : "ymir_castiel/ex_gemshop_button_01.tga",
                    "over_image" : "ymir_castiel/ex_gemshop_button_02.tga",
                    "down_image" : "ymir_castiel/ex_gemshop_button_03.tga",
                },

                #THANOS SİSTEMİ
                {
                    "name" : "ThanosOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+70,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Thanos Sistemi",
                    "default_image" : "ymir_castiel/mall_button_01.tga",
                    "over_image" : "ymir_castiel/mall_button_02.tga",
                    "down_image" : "ymir_castiel/mall_button_03.tga",
                },

                #ünvan sistemi
                {
                    "name" : "NvnOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+105,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Ünvan Sistemi",
                    "default_image" : "ymir_castiel/dragonsoul_button_01.tga",
                    "over_image" : "ymir_castiel/dragonsoul_button_02.tga",
                    "down_image" : "ymir_castiel/dragonsoul_button_03.tga",
                },

                #HIZLI EKİPMAN
                {
                    "name" : "FastOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+140,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Hızlı Ekipman",
                    "default_image" : "ymir_castiel/costume_button_01.tga",
                    "over_image" : "ymir_castiel/costume_button_02.tga",
                    "down_image" : "ymir_castiel/costume_button_03.tga",
                },
                #EFSUN BOTU
                {
                    "name" : "EfsunBot",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+175,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Efsun Botu",
                    "default_image" : "ymir_castiel/efsun_env_1.tga",
                    "over_image" : "ymir_castiel/efsun_env_2.tga",
                    "down_image" : "ymir_castiel/efsun_env_3.tga",
                },
            ),
        },
        ## Inventory, Equipment Slots
        {
            "name" : "board",
            "type" : "board",
            "style" : ("attach",),

            "x" : 37+45+30 - 70,
            "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" },
                    ),
                },

                ## Equipment Slot
                {
                    "name" : "Equipment_Base",
                    "type" : "image",

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

                    "image" : "d:/ymir work/ui/equipment_bg_without_ring.tga",
                    "image" : "d:/ymir work/ui/equipment_bg_without_ring.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},
                                        ## »õ ¹İÁö1
                                        ##{"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
                                        ## »õ ¹İÁö2
                                        ##{"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
                                        ## »õ º§Æ®
                                        {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
                                    ),
                        },
                        ## MallButton
                        {
                            "name" : "MallButton",
                            "type" : "button",

                            "x" : 118,
                            "y" : 148,

                            "tooltip_text" : uiScriptLocale.MALL_TITLE,

                            "default_image" : "d:/ymir work/ui/game/TaskBar/depo_01.tga",
                            "over_image" : "d:/ymir work/ui/game/TaskBar/depo_02.tga",
                            "down_image" : "d:/ymir work/ui/game/TaskBar/depo_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" : 7,
                    "y" : 33 + 191,
                    "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",
                    "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" : 7 + 32,
                    "y" : 33 + 191,
                    "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",
                    "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" : 7 + 32*2,
                    "y" : 33 + 191,
                    "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",
                    "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" : 7 + 32*3,
                    "y" : 33 + 191,
                    "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",
                    "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",
                        },
                    ),
                },
                {
                    "name" : "Inventory_Tab_05",
                    "type" : "radio_button",

                    "x" : 7 + 32*4,
                    "y" : 33 + 191,

                    "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",
                    "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_5,

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

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

                            "all_align" : "center",

                            "text" : "V",
                        },
                    ),
                },

                ## 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"
                },

                ## Print
                {
                    "name":"Money_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":"Money_Icon",
                            "type":"image",

                            "x":-18,
                            "y":2,

                            "image":"d:/ymir work/ui/game/windows/money_icon.sub",
                        },

                        {
                            "name" : "Money",
                            "type" : "text",

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

                            "horizontal_align" : "right",
                            "text_horizontal_align" : "right",

                            "text" : "123456789",
                        },
                    ),
                },

            ),
        },
    ),
}
 
buldum ama bu seferde siliyorum gitmiyor boşluk gene devam ediyor inventorywindow.py içerisinde thanos ve uzaktan marketi kaldırıyorum gene aynı

Kod:
import uiScriptLocale
import item

EQUIPMENT_START_INDEX = 225

window = {
    "name" : "InventoryWindow",
    "x" : SCREEN_WIDTH - 176 - 38 - 72+70,
    "y" : SCREEN_HEIGHT - 50 - 565 -2,
    "style" : ("movable", "float",),
    "width" : 176+70,
    "height" : 585,
    "children" :
    (
        {
            "name" : "buttonboard",
            "type" : "board",
            "style" : ("attach",),
            "x" : 73 - 70,
            "y" : 10,
            "width" : 25,
            "height" : 330,##yükseklik bunu ayarlıyabilirsiniz
            "children" :
            (
                ## Title
##                {
##                    "name" : "TitleBar",
##                    "type" : "titlebar",
##                    "style" : ("attach",),
##
##                    "x" : 8,
##                    "y" : 7,
##
##                    "width" : 80,
##                    "color" : "yellow",
##
##                    "children" :
##                    (
##                        { "name":"TitleName", "type":"text", "x":27, "y":3, "text":uiScriptLocale.HIZLI_MENU_TITLE, "text_horizontal_align":"center" },
##                    ),
##                },
               
                #UZAKTAN NPC
                {
                    "name" : "NpcOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Uzaktan Market",
                    "default_image" : "ymir_castiel/party_button_01.tga",
                    "over_image" : "ymir_castiel/party_button_02.tga",
                    "down_image" : "ymir_castiel/party_button_03.tga",
                },
                #HAVA DURUMU
                {
                    "name" : "HavaOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Hava Durumu",
                    "default_image" : "ymir_castiel/taskbar_auto_button_01.tga",
                    "over_image" : "ymir_castiel/taskbar_auto_button_02.tga",
                    "down_image" : "ymir_castiel/taskbar_auto_button_03.tga",
                },
                #TOPLU İTEM SİLME
                {
                    "name" : "SilOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+35+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Toplu İtem Sil-Sat",
                    "default_image" : "ymir_castiel/mcard_button_01.tga",
                    "over_image" : "ymir_castiel/mcard_button_02.tga",
                    "down_image" : "ymir_castiel/mcard_button_03.tga",
                },
                #LONCA SIRALAMA
                {
                    "name" : "LoncaOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Lonca Sıralama",
                    "default_image" : "ymir_castiel/dragonsoul_button_01.tga",
                    "over_image" : "ymir_castiel/dragonsoul_button_02.tga",
                    "down_image" : "ymir_castiel/dragonsoul_button_03.tga",
                },

                #EFEKT SİSTEMİ
                {
                    "name" : "EfektOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+35,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Efekt Verme Sistemi",
                    "default_image" : "ymir_castiel/ex_gemshop_button_01.tga",
                    "over_image" : "ymir_castiel/ex_gemshop_button_02.tga",
                    "down_image" : "ymir_castiel/ex_gemshop_button_03.tga",
                },

                #THANOS SİSTEMİ
                {
                    "name" : "ThanosOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+70,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Thanos Sistemi",
                    "default_image" : "ymir_castiel/mall_button_01.tga",
                    "over_image" : "ymir_castiel/mall_button_02.tga",
                    "down_image" : "ymir_castiel/mall_button_03.tga",
                },

                #ünvan sistemi
                {
                    "name" : "NvnOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+105,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Ünvan Sistemi",
                    "default_image" : "ymir_castiel/dragonsoul_button_01.tga",
                    "over_image" : "ymir_castiel/dragonsoul_button_02.tga",
                    "down_image" : "ymir_castiel/dragonsoul_button_03.tga",
                },

                #HIZLI EKİPMAN
                {
                    "name" : "FastOpen",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+140,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Hızlı Ekipman",
                    "default_image" : "ymir_castiel/costume_button_01.tga",
                    "over_image" : "ymir_castiel/costume_button_02.tga",
                    "down_image" : "ymir_castiel/costume_button_03.tga",
                },
                #EFSUN BOTU
                {
                    "name" : "EfsunBot",
                    "type" : "button",
                    "x" : 8,
                    "y" : 9+70+35+175,
                    "tooltip_x" : -45,
                    "tooltip_y" : 0,  
                    "tooltip_text" : "Efsun Botu",
                    "default_image" : "ymir_castiel/efsun_env_1.tga",
                    "over_image" : "ymir_castiel/efsun_env_2.tga",
                    "down_image" : "ymir_castiel/efsun_env_3.tga",
                },
            ),
        },
        ## Inventory, Equipment Slots
        {
            "name" : "board",
            "type" : "board",
            "style" : ("attach",),

            "x" : 37+45+30 - 70,
            "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" },
                    ),
                },

                ## Equipment Slot
                {
                    "name" : "Equipment_Base",
                    "type" : "image",

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

                    "image" : "d:/ymir work/ui/equipment_bg_without_ring.tga",
                    "image" : "d:/ymir work/ui/equipment_bg_without_ring.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},
                                        ## »õ ¹İÁö1
                                        ##{"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
                                        ## »õ ¹İÁö2
                                        ##{"index":item.EQUIPMENT_RING2, "x":75, "y":106, "width":32, "height":32},
                                        ## »õ º§Æ®
                                        {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
                                    ),
                        },
                        ## MallButton
                        {
                            "name" : "MallButton",
                            "type" : "button",

                            "x" : 118,
                            "y" : 148,

                            "tooltip_text" : uiScriptLocale.MALL_TITLE,

                            "default_image" : "d:/ymir work/ui/game/TaskBar/depo_01.tga",
                            "over_image" : "d:/ymir work/ui/game/TaskBar/depo_02.tga",
                            "down_image" : "d:/ymir work/ui/game/TaskBar/depo_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" : 7,
                    "y" : 33 + 191,
                    "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",
                    "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" : 7 + 32,
                    "y" : 33 + 191,
                    "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",
                    "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" : 7 + 32*2,
                    "y" : 33 + 191,
                    "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",
                    "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" : 7 + 32*3,
                    "y" : 33 + 191,
                    "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",
                    "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",
                        },
                    ),
                },
                {
                    "name" : "Inventory_Tab_05",
                    "type" : "radio_button",

                    "x" : 7 + 32*4,
                    "y" : 33 + 191,

                    "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",
                    "tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_5,

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

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

                            "all_align" : "center",

                            "text" : "V",
                        },
                    ),
                },

                ## 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"
                },

                ## Print
                {
                    "name":"Money_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":"Money_Icon",
                            "type":"image",

                            "x":-18,
                            "y":2,

                            "image":"d:/ymir work/ui/game/windows/money_icon.sub",
                        },

                        {
                            "name" : "Money",
                            "type" : "text",

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

                            "horizontal_align" : "right",
                            "text_horizontal_align" : "right",

                            "text" : "123456789",
                        },
                    ),
                },

            ),
        },
    ),
}
Belki hata almanızın nedeni birden fazla yer ile bağlantılı olduğu içindir :) tek yerde aramaya çalışmayın bulamazsınız dizinde tarama yapın grepwin ile.
 
Otomatik av butonunun üstüne geldiğinizde yazı olarak ne yazıyorsa ilk localede onu aratmayı ardından root içinde aratmayı deneyin uiscript dışarıdaysa yeni fileslerde root içerisinde oluyor genellikle oradan o kod bloklarını kolayca bulacaksınız. İsterseniz remote desktop anydesk ile yardımcı olabilirim
 
Otomatik av butonunun üstüne geldiğinizde yazı olarak ne yazıyorsa ilk localede onu aratmayı ardından root içinde aratmayı deneyin uiscript dışarıdaysa yeni fileslerde root içerisinde oluyor genellikle oradan o kod bloklarını kolayca bulacaksınız. İsterseniz remote desktop anydesk ile yardımcı olabilirim
buldum teşekkür ederim birde tga dosyalar bende video formatında tga resim gibi görüntülemem için ne yapmam lazım
 
tam aradığım buydu
paint.net. öneririm bir defa çalıştırıyorusn sonra açmadanda resimleri görebiliyorsun.
sorununa gelecek olursak. 2 tane icon kaldırmışsın ve yerleri boş. o kladırdığın iconların kordinatlarını diğer icon kordinatları ile değiştirebilirsin.
Bu defa da arka plandaki gui uzun olacak onuda kısaltman gerekir. Böyle bir yöntem kullanabilirsin.
 
Geri
Üst