Jump to content

z35

Member
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by z35

  1. 5 hours ago, kingking said:

    I want a detailed explanation to resolve this problem

    Make inside your locale a folder named es, there make a folder named offlineshop and put the file icon.tga inside it. 

    Method 2: You change the code for the offlineshop to read from your arab locale (ae) and not from spain locale (es). The file with this code can be found in uiscript files.

  2. Watch your tabs. Also, not sure if you have it but make it like this.

        def Close(self):
            self.Hide()
           
        if app.ENABLE_HIGHLIGHT_SYSTEM:
            def HighlightSlot(self, slot):
            	if not slot in self.listHighlightedSlot:
              		self.listHighlightedSlot.append(slot)
    
        def SetInventoryPage(self, page):
            self.inventoryTab[self.inventoryPageIndex].SetUp()
            self.inventoryPageIndex = page
            self.RefreshBagSlotWindow()

     

    • Love 1
  3. Introloading.py

    Search:

    self.loadingImage.SetScale(width, height)

    Add under it:

    self.loadingGage.SetPercentage(2, 100) 

     Now search:

    self.loadingGage=self.GetChild("FullGage")  

    And add under it:

    self.loadingLoadingPercent=self.GetChild("LoadingPercent_Text")  

    Now search:

    self.loadingGage.SetPercentage(2+98*p/100, 100)  

    And add under it:

    self.loadingLoadingPercent.SetText(str(2+98*p/100)+"%") 

     

    Open your loadingwindow.py file
    Search:

                        "name" : "FullGage",  

    And add under this section:

                    {
                        "name" : "LoadingPercent_Text",
                        "type" : "text",
    
                        "x" : 190,
                        "y" : -20,
    
                        "text" : "", 
                        "vertical_align" : "center",                    
                    },

     

    Hope i helped.

    • Love 2
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.