HERAKLES Otomatik Avlı kalıcı sunucu. 19 Haziran'da açılıyor. Atius & Wizard güvencesiyle hemen kayıt ol, ön kayıt ödülleri aktif. HEMEN TIKLA!
market açıp yürüyünce kapanmıyor fixi mevcut mu
+market açıp yürüyünce kapanmıyor fixi mevcut mu
Marketlerde animasyon hatası alanlar bunu uygulayabilir. çözülür diye düşünüyorum
//Ara
self.itemBuyQuestionDialog = None
//ALTINA EKLE
self.isOpenFix = False
//Ara
def Open(self, vid, points=0, curLimit=0, maxLimit=0,count=0):
//ALTINA EKLE
self.isOpenFix = True
//Ara class ShopDialog içinde olması önemli
def Close(self):
//ALTINA EKLE
self.isOpenFix = False
//Ara def OnUpdate(self): içinde
if abs(x - self.xShopStart) > USE_SHOP_LIMIT_RANGE or abs(y - self.yShopStart) > USE_SHOP_LIMIT_RANGE:
//DEĞİŞTİR
if abs(x - self.xShopStart) > USE_SHOP_LIMIT_RANGE or abs(y - self.yShopStart) > USE_SHOP_LIMIT_RANGE and self.isOpenFix:
self.isOpenFix = False
//Ara
self.itemBuyQuestionDialog = None
//ALTINA EKLE
self.isOpenFix = False
//Ara
def Open(self, vid, points=0, curLimit=0, maxLimit=0,count=0):
//ALTINA EKLE
self.isOpenFix = True
//Ara class ShopDialog içinde olması önemli
def Close(self):
//ALTINA EKLE
self.isOpenFix = False
//Ara def OnUpdate(self): içinde
if abs(x - self.xShopStart) > USE_SHOP_LIMIT_RANGE or abs(y - self.yShopStart) > USE_SHOP_LIMIT_RANGE:
//DEĞİŞTİR
if abs(x - self.xShopStart) > USE_SHOP_LIMIT_RANGE or abs(y - self.yShopStart) > USE_SHOP_LIMIT_RANGE and self.isOpenFix:
self.isOpenFix = False
If anybody need the fix, there is how to
uishop.py
after the last import add:
ANIM_FIX = 0.2 (u have to change the time)
search self.tooltipItem = 0 twice and add under:
self.animfix = 0
and in def Close() search self.Hide()
replace with:
#ANIMFIX
if app.GetTime() >= self.animfix:
self.animfix = app.GetTime() + ANIM_FIX
self.Hide()
after the last import add:
ANIM_FIX = 0.2 (u have to change the time)
search self.tooltipItem = 0 twice and add under:
self.animfix = 0
and in def Close() search self.Hide()
replace with:
#ANIMFIX
if app.GetTime() >= self.animfix:
self.animfix = app.GetTime() + ANIM_FIX
self.Hide()
Son düzenleme:
