Jump to content

Frozen

Member
  • Posts

    199
  • Joined

  • Last visited

  • Days Won

    7
  • Feedback

    0%

Community Answers

  1. Frozen's post in [CLIENT] Interface bug. was marked as the answer   
    You have some errors there:
    Failed to load image (filename: locale/tr/ui/login/status/DOWN.tga) Means you dont have DOWN.tga file in that location so you need to put it there or change the path. inconsistent use of tabs and spaces in indentation Means you are messing around with tabs and spaces (use 4 spaces and use tab) 'NoneType' object has no attribute 'SetToolTipText' That error apears because some previous error is blocking it from loading taskbar
  2. Frozen's post in [Python]Unrecognized function was marked as the answer   
    I think the problem is that you didnt define the :
    self.wndMyDialog so when you do this:
    self.interface.RefreshMyDialog()   The code dont run the:   __MakeMessengerWindow So try putting the self.wndMyDialog defined in the init function, like this: def __init__(self): self.wndMyDialog = uiMyDialog.MyDialog() Sorry for my bad english,...
     
    #Edit 
    Oh and if isnt that i think it is because the function has __ in the name, and i think that is only for functions that are not going to be called by another class..
     
    So try to rename the funtion to 
    def OnRefresh(self): Kind Regards,
    Frozen
     
  3. Frozen's post in kill GUI system was marked as the answer   
    It Will be something like this:
    def __showkillgui(self): if KillGuiBg.IsShow(): self.KillGuiBg.Hide() self.KillBlauReich.Hide() self.KillGelbReich.Hide() self.KillRotReich.Hide() self.KillMob.Hide() else: self.KillGuiBg.Show() self.KillBlauReich.Show() self.KillGelbReich.Show() self.KillRotReich.Show() self.KillMob.Show()
×
×
  • 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.