5 Sekmeli Hızlı Ekipman sistemi
5 Sekmeli Hızlı Ekipman sistemi
F5 EKLEME
Root game.py aratılır
onPressKeyDict[app.DIK_F4] = lambda : self.__PressQuickSlot(7)
Altına eklenir
onPressKeyDict[app.DIK_F5] = lambda : self._VectorsHzl()
Game.py sonuna eklenir
def _VectorsHzl(self):
import uiVectorsHzl
self.VectorsHzl = uiVectorsHzl.VectorsKSK()
self.VectorsHzl.Show()
ENVANTER İÇİNE BUTON OLARAK EKLEME
root uiinventory.py aratılır
self.costumeButton = self.GetChild2("CostumeButton")
altına eklenir
self.VectorsHzl = self.GetChild2("VectorsHzl")
aratılır
# Costume Button
if self.costumeButton:
self.costumeButton.SetEvent(ui.__mem_func__(self.ClickCostumeButton))
self.wndCostume = None
altına eklenir
# Hzl Ekpmn
if self.VectorsHzl:
self.VectorsHzl.SetEvent(ui.__mem_func__(self._VectorsHzl))
self.wndCostume = None
aratılır
def ClickCostumeButton(self):
print "Click Costume Button"
if self.wndCostume:
if self.wndCostume.IsShow():
self.wndCostume.Hide()
else:
self.wndCostume.Show()
else:
self.wndCostume = CostumeWindow(self)
self.wndCostume.Show()
altına eklenir
def _VectorsHzl(self):
import uiVectorsHzl
self.VectorsHzl = uiVectorsHzl.VectorsKSK()
self.VectorsHzl.Show()
locale inventorywindow.py açılır aratılır
## 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",
},
altına eklenir
{
"name" : "VectorsHzl",
"type" : "button",
"x" : 118,
"y" : 107,
"tooltip_text" : uiScriptLocale.HZL,
"default_image" : "costume_01.tga",
"over_image" : "costume_02.tga",
"down_image" : "costume_03.tga",
},
locale/de & locale/tr (hangisini kullanıyorsanız.)
locale_interface.txt açılır en alta eklenir
HZL Hızlı Ekipman
TASKBARA BUTON OLARAK EKLEME
Root uitaskbar.py aratılır
toggleButtonDict[TaskBar.BUTTON_CHAT]=self.GetChild("ChatButton")
altına eklenir
toggleButtonDict[TaskBar.BUTTON_HZL]=self.GetChild("VectorsHzl")
aratılır
BUTTON_CHAT = 4
altına eklenir
BUTTON_HZL = 5
interfacemodule.py aratılır
self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_CHAT, ui.__mem_func__(self.ToggleChat))
altına eklenir
self.wndTaskBar.SetToggleButtonEvent(uiTaskBar.TaskBar.BUTTON_HZL, ui.__mem_func__(self.ToggleVectorsHzl))
aratılır
def ToggleChat(self):
altına eklenir
def ToggleVectorsHzl(self):
import uiVectorsHzl
self.VectorsHzl = uiVectorsHzl.VectorsKSK()
self.VectorsHzl.Show()
locale taskbar.py aratılır
{
"name" : "MessengerButton",
"type" : "button",
"x" : SCREEN_WIDTH - 76,
"y" : 3 + Y_ADD_POSITION,
"tooltip_text" : uiScriptLocale.TASKBAR_MESSENGER,
"default_image" : ROOT + "TaskBar/Community_Button_01.sub",
"over_image" : ROOT + "TaskBar/Community_Button_02.sub",
"down_image" : ROOT + "TaskBar/Community_Button_03.sub",
},
altına eklenir
{
"name" : "VectorsHzl",
"type" : "button",
"x" : SCREEN_WIDTH - 178,
"y" : 3 + Y_ADD_POSITION,
"tooltip_text" : uiScriptLocale.HZL,
"default_image" : "costume_01.tga",
"over_image" : "costume_02.tga",
"down_image" : "costume_03.tga",
},
locale/de & locale/tr (hangisini kullanıyorsanız.)
locale_interface.txt açılır en alta eklenir
HZL Hızlı Ekipman
Taskbara ekleyenler burada ki siteden alt kısımdan kopyalasın yada down. edip eklesin.
Alternatif
.Rar içerisinde ki dosyalar root içine atılır.Kodları .Rar içerisinden kopyalayın.
Diğer Konularımız