Çözüldü adamı hasta eden sorun

  • Konuyu açan Konuyu açan ETKA YAZILIM
  • Açılış Tarihi Açılış Tarihi
  • Yanıt Yanıt 21
  • Gösterim Gösterim 184
Bu konu çözüme ulaştırılmıştır. Çözüm için konuya yazılan tüm yorumları okumayı unutmayın. Eğer konudaki yorumlar sorununuzu çözmediyse yeni bir konu açabilirsiniz.
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.

ETKA YAZILIM

S U L E Y M A N B O Z O K
Premium Üye
Üye
Mesaj
277
Çözümler
12
Beğeni
49
Puan
129
Ticaret Puanı
0
Arkadaşlar, önemli bir sorunum var ve yardımınıza ihtiyacım var.


ONAY 1 olarak paylaştığım resimde banka bölümünü değiştirdim ve istediğim düzene oturttum. Butonlar ve gereksiz rakamlar tamamen kaldırıldı, her şey istediğim gibi çalışıyor. Ancak, tezgah kurduğumuzda karşılaştığım bir sorun var.


Önceden, pazarda kırmızı ot, mavi ot, yang, won gibi ikonlar vardı. Bunları ONAY 2 resminde görebileceğiniz şekilde yalnızca yang ve won kalacak şekilde temizledim. Ancak, rastgele görünen 999999 gibi sayıları ne yaptıysam silemiyorum.


Şu ana kadar denediğim şeyler:
✅ İlgili dosyaları inceledim, düzelttim, değiştirdim.
✅ Banka sistemini karşılaştırdım (banka sorunsuz çalışıyor).
✅ Tezgah sistemini detaylıca kontrol ettim.
✅ Kodları karşılaştırarak eksiklik olup olmadığını kontrol ettim.
✅ Value 1, 2, 3… gibi oluşan kodların text değerlerini değiştirdim/sildim.


Ama bu rastgele sayılar hâlâ gitmiyor! Aynı sistemin farklı bir yerinde bu işlemi yaptım ve sorunsuz çalıştı. Ancak tezgah kurduğumda bir türlü bu sayıları kaldırmayı başaramadım. İlgili dosyaları paylaşacağım, incelemek isteyenler varsa lütfen göz atsın.


Bu rakamları hangi dosyadan değiştirebileceğim veya tamamen kaldırabilmem için ne yapmam gerektiği konusunda fikri olan var mı? Artık iyice bunaldım ve çözüm için buraya yazmak istedim. Yardımcı olabilirseniz çok sevinirim!


Teşekkürler!
 

Dosya Eklentileri

  • ONAY 1.webp
    ONAY 1.webp
    19,4 KB · Gösterim: 45
  • ONAY 2.webp
    ONAY 2.webp
    67,7 KB · Gösterim: 43
moneyinputdialogshop.py:
Genişlet Daralt Kopyala
import uiScriptLocale

window = {
    "name" : "InputDialog",

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

    "style" : ("movable", "float",),

    "width" : 200,
    "height" : 255+20+20*8,

    "children" :
    (
        {
            "name" : "board",
            "type" : "board_with_titlebar",

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

            "width" : 200,
            "height" : 255+20+20*8,

            "title" : "",

            "children" :
            (

                ## Input Slot
                {
                    "name" : "InputSlot",
                    "type" : "slotbar",

                    "x" : 0,
                    "y" : 34,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,
                        },
                        {
                            "name":"Coins_Icon",
                            "type":"image",

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

                            "image":"d:/ymir work/ui/game/windows/money_icon.sub",
                        },
                    ),
                },
                
                ## Input Slot 1
                {
                #    "name" : "InputSlot1",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 54,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue1",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,                         
                        },
                        {
                            #"name":"Coins_Icon",
                            #"type":"image",

                            #"x":-25,
                            #"y":-4,

                            #"image":"sex/umutk/70251.tga",
                        },
                    ),
                },
                ## Input Slot 2
                {
                #    "name" : "InputSlot2",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 74,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue2",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,
                        },
                        {
                            #"name":"Coins_Icon",
                            #"type":"image",

                            #"x":-25,
                            #"y":-4,

                            #"image":"sex/umutk/70252.tga",
                        },
                    ),
                },
                ## Input Slot 3
                {
                #    "name" : "InputSlot3",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 94,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue3",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,
                      
                        },
                        {
                            #"name":"Coins_Icon",
                            #"type":"image",

                            #"x":-25,
                            #"y":-4,

                            #"image":"sex/umutk/70253.tga",
                        },
                    ),
                },
                ## Input Slot 4
                {
                #    "name" : "InputSlot4",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 114,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue4",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,
                            "text" : "",                           
                        },
                        {
                            #"name":"Coins_Icon",
                            #"type":"image",

                            #"x":-25,
                            #"y":-4,

                            #"image":"sex/umutk/70254.tga",
                        },
                    ),
                },
                ## Input Slot 5
                {
                #    "name" : "InputSlot5",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 134,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue5",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,
                        },
                        {
                            #"name":"Coins_Icon",
                            #"type":"image",

                            #"x":-25,
                            #"y":-4,

                            #"image":"sex/umutk/50513.tga",
                        },
                    ),
                },
                ## Input Slot 6
                {
                #    "name" : "InputSlot6",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 154,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue6",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,                       
                        },
                        {
                            "name":"Coins_Icon",
                            "type":"image",

                            "x":-25,
                            "y":-4,

                        #    "image":"sex/umutk/80007.tga",
                        },
                    ),
                },
                ## Input Slot 7
                {
                    "name" : "InputSlot7",
                    "type" : "slotbar",

                    "x" : 0,
                    "y" : 174,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue7",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,
                        },
                        {
                            "name":"Coins_Icon",
                            "type":"image",

                            "x":-18,
                            "y": 4,

                            "image":"d:/ymir work/ui/game/windows/cheque_icon.sub",
                        },
                    ),
                },
                ## Input Slot 8
                {
                #    "name" : "InputSlot8",
                #    "type" : "slotbar",

                    "x" : 0,
                    "y" : 194,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "InputValue8",
                            "type" : "editline",

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

                            "width" : 90,
                            "height" : 18,

                            "input_limit" : 12,                           
                        },
                        {
                            #"name":"Coins_Icon",
                            #"type":"image",

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

                            #"image":"d:/ymir work/ui/game/windows/ep_icon.sub",
                        },
                    ),
                },
                ## Input Slot
                {
                    "name" : "MoneyValue",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                
                ## Input Slot
                {
                    "name" : "MoneyValue1",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue2",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*2,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue3",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*3,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue4",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*4,
                    "text" : "",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue5",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*5,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue6",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*6,
                    "text" : "",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue7",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*7,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Input Slot
                {
                    "name" : "MoneyValue8",
                    "type" : "text",

                    "x" : 0,
                    "y" : 194 + 20 + 20*8,
                    "text" : "ewqewqewq",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                ## Button
                {
                    "name" : "AcceptButton",
                    "type" : "button",

                    "x" : - 61 - 5 + 30,
                    "y" : 215 + 20 + 20*8,
                    "horizontal_align" : "center",

                    "text" : uiScriptLocale.OK,

                    "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                    "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                    "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
                },
                {
                    "name" : "CancelButton",
                    "type" : "button",

                    "x" : 5 + 30,
                    "y" : 215 + 20 + 20*8,
                    "horizontal_align" : "center",

                    "text" : uiScriptLocale.CANCEL,

                    "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                    "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                    "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
                },
            ),
        },
    ),
}
 
Sadece textler gözüküyorsa uiscript dosyasını doğru düzenledin mi onu kontrol et
 
offlineshop_bankdialog.py:
Genişlet Daralt Kopyala
import uiScriptLocale
import background


window = {
    "name" : "OfflineShopBankWindow",
    
    "style" : ("movable", "float", ),
    
    "x" : 0,
    "y" : 0,
    
    "width" : 200,
    "height" : 425+20,
    
    "children" :
    (
        {
            "name" : "Board",
            "type" : "board_with_titlebar",
            
            "style" : ("attach", ),
            
            "x" : 0,
            "y" : 0,
            
            "width" : 200,
            "height" : 425+20,
            
            "title" : "Çevrim Dışı Pazar - Banka",
            
            "children" :
            (   
                # Yazilar
                {
                    "name" : "para",
                    "type" : "thinboard",

                    "x" : 0,
                    "y" : 35,
                    "width" : 190,
                    "height" : 190*2-40,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        #Yang_Ep_Won_ThinBoard
                        {
                            "name" : "Yang_Ep_Won_ThinBoard",
                            "type" : "thinboard",
                    
                            "x" : 0,
                            "y" : 256+5,
                                
                            "width" : 180,
                            "height" : 55,   
                            "horizontal_align" : "center",                           
                        },
                        {
                            "name" : "background",
                            "type" : "image",
                            "x" : 0,
                            "y" : 0,
                            "image" : "d:/ymir work/ui/title.tga",
                            "text_horizontal_align":"center"
                        },
                        {
                            "name" : "text1",
                            "type" : "text",
                            "x" : 40,
                            "y" : 5,
                            "text" : "Bankanda Bulunanlar :",
                        #    "text_horizontal_align":"center"
                        },
                        #Slot & Item Icon
                        #{"name":"RedOt", "type":"image", "x":15,"y":30,"image" : "d:/ymir work/ui/public/Slot_Base.sub"},
                        #{"name":"RedOtItem", "type":"image", "x":15,"y":30,"image" : "icon/item/70251.tga"},                       
                        #{"name":"BlueOt", "type":"image", "x":15,"y":60+5,"image" : "d:/ymir work/ui/public/Slot_Base.sub"},
                        #{"name":"BlueOtItem", "type":"image", "x":15,"y":60+5,"image" : "icon/item/70252.tga"},                       
                        #{"name":"GreenOt", "type":"image", "x":15,"y":90+10,"image" : "d:/ymir work/ui/public/Slot_Base.sub"},
                        #{"name":"GreenOtItem", "type":"image", "x":15,"y":90+10,"image" : "icon/item/70253.tga"},                       
                        #{"name":"PurpleOt", "type":"image", "x":15,"y":120+15,"image" : "d:/ymir work/ui/public/Slot_Base.sub"},
                        #{"name":"PurpleOtItem", "type":"image", "x":15,"y":120+15,"image" : "icon/item/70254.tga"},
                        #{"name":"RuhTasi", "type":"image", "x":15,"y":150+20,"image" : "d:/ymir work/ui/public/Slot_Base.sub"},
                        #{"name":"RuhTasiItem", "type":"image", "x":15,"y":150+20,"image" : "icon/item/50513.tga"},                       
                        #{"name":"Bar", "type":"image", "x":15,"y":180+25,"image" : "d:/ymir work/ui/public/Slot_Base.sub"},
                        #{"name":"BarItem", "type":"image", "x":15,"y":180+25,"image" : "icon/item/80007.tga"},
                        #Yang & EP & Won Slot
                        {"name":"Yang_Icon1", "type":"image", "x":9,"y":232+8,"image" : "d:/ymir work/ui/game/windows/money_icon.sub"},
                        {"name":"Yang_Icon", "type":"image", "x":9,"y":262+8,"image" : "d:/ymir work/ui/game/windows/money_icon.sub"},
                        {"name":"Cheque_Icon", "type":"image", "x":9,"y":262+25+8,"image" : "d:/ymir work/ui/game/windows/cheque_icon.sub"},
                        {"name":"Cheque_Icon1", "type":"image", "x":9,"y":282+25+8,"image" : "d:/ymir work/ui/game/windows/cheque_icon.sub"},
                        #{"name":"DragonMoney_Icon", "type":"image", "x":83,"y":262+25+8,"image" : "d:/ymir work/ui/game/windows/ep_icon.sub"},                       
                        {
                            #"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 60,
                            "y" : 35,
                            
                            "width" : 180/2+40-30,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            #"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 60,
                            "y" : 60+10,
                            
                            "width" : 180/2+40-30,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine2",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            #"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 60,
                            "y" : 105,
                            
                            "width" : 180/2+40-30,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine3",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            #"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 60,
                            "y" : 140,
                            
                            "width" : 180/2+40-30,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine4",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            #"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 60,
                            "y" : 175,
                            
                            "width" : 180/2+40-30,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine5",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            #"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 60,
                            "y" : 210,
                            
                            "width" : 180/2+40-30,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine6",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                        #Line7 = Yang , Line8 = Won , Line9 = Ejderha Parası
                        {
                            "name" : "CurrentMoneySlot",
                            "type" : "slotbar",
                            
                            "x" : 28,
                            "y" : 230+8,
                            
                            "width" : 180/2+40-2,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine77",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            "name" : "CurrentMoneySlot",
                            "type" : "slotbar",
                            
                            "x" : 27,
                            "y" : 260+8,
                            
                            "width" : 180/2+40-2,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine7",
                                    "type" : "editline",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                    "text" : "0",
                                },
                            ),
                        },
                        {
                            "name" : "CurrentMoneySlot",
                            "type" : "slotbar",
                            
                            "x" : 27,
                            "y" : 260+25+8,
                            
                            "width" : 330/2-35-2,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine8",
                                    "type" : "editline",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 330,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                    "text" : "0",
                                },
                            ),
                        },
                        {
                            "name" : "CurrentMoneySlot",
                            "type" : "slotbar",
                            
                            "x" : 27,
                            "y" : 280+25+8,
                            
                            "width" : 180/2+40-2,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine88",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                    "text" : "0123456789",
                                },
                            ),
                        },
                        {
                            ##"name" : "CurrentMoneySlot",
                            #"type" : "slotbar",
                            
                            "x" : 102,
                            "y" : 260+25+8,
                            
                            "width" : 180/2-35-2,
                            "height" : 15,
                            
                            "children" :
                            (
                                {
                                    "name" : "CurrentMoneyLine9",
                                    "type" : "text",
                                    
                                    "x" : 3,
                                    "y" : 3,
                                    
                                    "width" : 210,
                                    "height" : 15,
                                    
                                    "input_limit" : 12,
                                #    "text" : "0123456789",
                                },
                            ),
                        },
                    ),
                },
                
                # butonlar
                {
                    "name" : "butonlar",
                    "type" : "thinboard",

                    "x" : 0,
                    "y" : 390,
                    "width" : 180,
                    "height" : 40,
                    "horizontal_align" : "center",

                    "children" :
                    (
                        {
                            "name" : "withdraw_button",
                            "type" : "button",
                            
                            "x" : 9,
                            "y" : 7,
                            
                            "text" : "Çek",
                            
                            "default_image" : "d:/ymir work/efsun_gui2/offical_button.tga",
                            "over_image" : "d:/ymir work/efsun_gui2/offical_button_bastim.tga",
                            "down_image" : "d:/ymir work/efsun_gui2/offical_button_bastim.tga",
                        },
                        {
                            "name" : "refesh_button",
                            "type" : "button",
                            
                            "x" : 90,
                            "y" : 7,
                            
                            "text" : "Yenile",
                            
                            "default_image" : "d:/ymir work/efsun_gui2/offical_button.tga",
                            "over_image" : "d:/ymir work/efsun_gui2/offical_button_bastim.tga",
                            "down_image" : "d:/ymir work/efsun_gui2/offical_button_bastim.tga",
                        },                       
                    ),
                },
            ),
        },
    ),
}
 
Sadece textler gözüküyorsa uiscript dosyasını doğru düzenledin mi onu kontrol et
hocam dosyaları paylaştım butun dosyalara baktım devre dısı bıraktım ne yaptımsa bu kalkmadı ONAY 2 gorunen offlineshop_bankdialog.py düzenlemem tamm ama ONAY 1 olan moneyinputdialogshop.py işlem yapıyorum text olustuyorum bır turlu olmuyor anlamadım
 
yani
hocam dosyaları paylaştım butun dosyalara baktım devre dısı bıraktım ne yaptımsa bu kalkmadı ONAY 2 gorunen offlineshop_bankdialog.py düzenlemem tamm ama ONAY 1 olan moneyinputdialogshop.py işlem yapıyorum text olustuyorum bır turlu olmuyor anlamadım
en altta zaten value ısımlendırmelı text kodları mevcut 9999999 olarak onlarıda devre dısı bıraktım sıldım yaptım bıçtım ne yaptımsa bu tezgahı kurdugumuz zaman yang ve won olarak sekılde ayarlıyamadık banka bölümünde olan ONAY2 cok guzel ıslem yapıldı tam ıstedıgım duzen oldu rakamlarda sılındı fakat moneyinputdialogshop.py alt ust ettım bır turlu olmadı
 
Python:
Genişlet Daralt Kopyala
import uiScriptLocale

window = {
    "name" : "InputDialog",
    
    "x" : 0,
    "y" : 0,
    
    "style" : ("movable", "float",),
    
    "width" : 200,
    "height" : 255+20+20*8,
    
    "children" :
    (
        {
            "name" : "board",
            "type" : "board_with_titlebar",
            
            "x" : 0,
            "y" : 0,
            
            "width" : 200,
            "height" : 255+20+20*8,
            
            "title" : "",
            
            "children" :
            (
                ## Input Slot
                {
                    "name" : "InputSlot",
                    "type" : "slotbar",
                    
                    "x" : 0,
                    "y" : 34,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",
                    
                    "children" :
                    (
                        {
                            "name" : "InputValue",
                            "type" : "editline",
                            
                            "x" : 3,
                            "y" : 3,
                            
                            "width" : 90,
                            "height" : 18,
                            
                            "input_limit" : 12,
                        },
                        {
                            "name":"Coins_Icon",
                            "type":"image",
                            
                            "x":-18,
                            "y":2,
                            
                            "image":"d:/ymir work/ui/game/windows/money_icon.sub",
                        },
                    ),
                },

                ## Input Slot 7
                {
                    "name" : "InputSlot7",
                    "type" : "slotbar",
                    
                    "x" : 0,
                    "y" : 174,
                    "width" : 90,
                    "height" : 18,
                    "horizontal_align" : "center",
                    
                    "children" :
                    (
                        {
                            "name" : "InputValue7",
                            "type" : "editline",
                            
                            "x" : 3,
                            "y" : 3,
                            
                            "width" : 90,
                            "height" : 18,
                            
                            "input_limit" : 12,
                        },
                        {
                            "name":"Coins_Icon",
                            "type":"image",
                            
                            "x":-18,
                            "y": 4,
                            
                            "image":"d:/ymir work/ui/game/windows/cheque_icon.sub",
                        },
                    ),
                },
                
                ## Input Slot
                {
                    "name" : "MoneyValue",
                    "type" : "text",
                    
                    "x" : 0,
                    "y" : 194 + 20,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                
                
                ## Input Slot
                {
                    "name" : "MoneyValue7",
                    "type" : "text",
                    
                    "x" : 0,
                    "y" : 194 + 20 + 20*7,
                    "text" : "999999999",
                    "text_horizontal_align" : "center",
                    "horizontal_align" : "center",
                },
                
                ## Button
                {
                    "name" : "AcceptButton",
                    "type" : "button",
                    
                    "x" : - 61 - 5 + 30,
                    "y" : 215 + 20 + 20*8,
                    "horizontal_align" : "center",
                    
                    "text" : uiScriptLocale.OK,
                    
                    "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                    "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                    "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
                },
                {
                    "name" : "CancelButton",
                    "type" : "button",
                    
                    "x" : 5 + 30,
                    "y" : 215 + 20 + 20*8,
                    "horizontal_align" : "center",
                    
                    "text" : uiScriptLocale.CANCEL,
                    
                    "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                    "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                    "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
                },
            ),
        },
    ),
}

Bu kodu tamamen kopyalayıp moneyinputdialogshop.py içindekilerle değiştirip dener misin?
 
Linkleri görebilmek için giriş yap veya kayıt ol.
hocam normalde ıtem koydugum zaman yang ve won butuno tek kalması gerekıyordu suan ıtem koyuyorum pazar yanıt vermıyor bende valuelerı sılmeyı denedım bu sorunu almıştım karsıma cıktı
 
syserr.txt ne yazıyor
0316 19:35:15444 :: CreateFromMemoryFile: Cannot create texture
0316 19:35:15675 :: Unknown window flag a
0316 19:35:15675 :: Unknown window flag t
0316 19:35:15675 :: Unknown window flag t
0316 19:35:15675 :: Unknown window flag a
0316 19:35:15675 :: Unknown window flag c
0316 19:35:15675 :: Unknown window flag h sysr cıkan hatalar hocam
 
Root içindeki moneyinputdialogshop.py ile bağlantılı olan .py dosyasını ve moneyinputdialogshop.py dosyasını ekler misin
 
buyrun hocam yanlız hocam won ve yang butuno kalacak bılgınız olsun sıze zahmet hakınızı helal edın sızıde yoruyorum
 

Dosya Eklentileri

Hocam bu root icindeki uiden py dosyasıydı txt ben yaptım dosya yuklemede py olarak kabul etmedigi icin baskada varmı dosyası varsa bilemiyorum hemen bakayım
birde bu var hocam ıslem yaptıgım py dosyası benım bıldıgım eger varsa ısmını soyleyın ama gonderdıgım dosyala alakalı tek ısım uiden vardı
 

Dosya Eklentileri

Notepad++ ile root içerisinde moneyinputdialogshop.py bunu yazıp arat ve çıkan sonuç hangi py dosyasında ise onu buraya yükle
 
Durum
İçerik kilitlendiği için mesaj gönderimine kapatıldı.
Geri
Üst