Hello guys, i'm add Minigame Jigsaw but not work.
i have 2 problem
1) the puzzle not work and the grid doesn't appears
2) switch the page of the guide and text moves down
Can you help me?
This is video
Syserr
interfece.py
if app.ENABLE_FISH_EVENT:
def MiniGameFishUse(self, shape, useCount):
if self.wndEvent:
self.wndEvent.MiniGameFishUse(shape, useCount)
def MiniGameFishAdd(self, pos, shape):
if self.wndEvent:
self.wndEvent.MiniGameFishAdd(pos, shape)
def MiniGameFishReward(self, vnum):
if self.wndEvent:
self.wndEvent.MiniGameFishReward(vnum)
def MiniGameFishCount(self, count):
if self.wndEvent:
self.wndEvent.MiniGameFishCount(count)
def SetFishEventStatus(self, isEnable):
if isEnable:
if not self.wndEvent:
self.wndEvent = uiMiniGame.MiniGameWindow()
if self.tooltipItem:
if self.wndEvent:
self.wndEvent.SetItemToolTip(self.tooltipItem)
if app.WJ_ENABLE_TRADABLE_ICON:
if self.wndEvent:
self.wndEvent.BindInterface(self)
if self.wndInventory:
if self.wndEvent:
self.wndEvent.BindInventory(self.wndInventory)
self.wndEvent.IntegrationMiniGame(True)
else:
if self.wndEvent:
self.wndEvent.IntegrationMiniGame(False)
ui.py
if app.ENABLE_FISH_EVENT:
def SetOverInItemEvent(self, event, window = None):
self.eventOverInItem = event
self.eventOverInItemWindow = window
else:
def SetOverInItemEvent(self, event):
self.eventOverInItem = event