Advertisement
Guest User

Vectors Taskbar

a guest
Dec 8th, 2014
982
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.48 KB | None | 0 0
  1. Root uitaskbar.py aratılır
  2. toggleButtonDict[TaskBar.BUTTON_CHAT]=self.GetChild("ChatButton")
  3. altına eklenir
  4. toggleButtonDict[TaskBar.BUTTON_HZL]=self.GetChild("VectorsHzl")
  5. aratılır
  6. BUTTON_CHAT = 4
  7. altına eklenir
  8. BUTTON_HZL = 5
  9. interfacemodule.py aratılır
  10. self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_CHAT, ui.__mem_func__(self.ToggleChat))
  11. altına eklenir
  12. self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_HZL, ui.__mem_func__(self.ToggleVectorsHzl))
  13. aratılır
  14.     def ToggleChat(self):
  15. altına eklenir
  16.     def ToggleVectorsHzl(self):
  17.         import uiVectorsHzl
  18.         self.VectorsHzl = uiVectorsHzl.VectorsKSK()
  19.         self.VectorsHzl.Show()
  20.        
  21. locale taskbar.py aratılır
  22.         {
  23.             "name" : "MessengerButton",
  24.             "type" : "button",
  25.  
  26.             "x" : SCREEN_WIDTH - 76,
  27.             "y" : 3 + Y_ADD_POSITION,
  28.  
  29.             "tooltip_text" : uiScriptLocale.TASKBAR_MESSENGER,
  30.  
  31.             "default_image" : ROOT + "TaskBar/Community_Button_01.sub",
  32.             "over_image" : ROOT + "TaskBar/Community_Button_02.sub",
  33.             "down_image" : ROOT + "TaskBar/Community_Button_03.sub",
  34.         },
  35. altına eklenir
  36.         {
  37.             "name" : "VectorsHzl",
  38.             "type" : "button",
  39.  
  40.             "x" : SCREEN_WIDTH - 178,
  41.             "y" : 3 + Y_ADD_POSITION,
  42.  
  43.             "tooltip_text" : uiScriptLocale.HZL,
  44.  
  45.             "default_image" : "costume_01.tga",
  46.             "over_image" : "costume_02.tga",
  47.             "down_image" : "costume_03.tga",
  48.         },
  49.        
  50. locale/de & locale/tr (hangisini kullanıyorsanız.)
  51. locale_interface.txt açılır en alta eklenir
  52. HZL Hızlı Ekipman
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement