Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/29/2021 in all areas

  1. Ir até ao ficheiro game.py (root): Procurar por: from _weakref import proxy Adicionar por baixo: from switchbot import Bot Procurar por: self.quickSlotPageIndex = 0 Adicionar por baixo: self.switchbit = Bot() self.switchbot.hide() Procurar por: onPressKeyDict[app.DIK_F4] =lambda : self.__PressQuickSlot(7) Adicionar por baixo: onPressKeyDict[app.DIK_F6] =lambda : self.__toogleSwitchbot() Adicionar no fim do ficheiro: def __toggleSwitchbot(self): if self.switchbot.bot_shown == 1: self.switchbot.Hide() else: self.switchbot.Show() Colocar o ficheiro switchbot.py dentro da pasta root. switchbot.py
    1 point
  2. Fix crash core: Open input_main.cpp and search: PCHARACTER m_pkChrTarget = CHARACTER_MANAGER::instance().Find(p->dwVID); Add under that function this: if (!ch || !m_pkChrTarget) return; Need looks like this: Download 1 : http://www.mediafire.com/file/rbbzy0t8c4d0s8b/Target_Information_System.rar Download 2 : http://www.girlshare.ro/3489671292.8 Good luck
    1 point
  3. Correr os seguintes comandos (cada linha = 1 comando): cd location gdb set gnutarget i386-marcel-freebsd file game core game.core bt full Onde: cd location = localização do ficheiro game e game.core. O meu por exemplo é cd /server/chs/channel1/ game = nome do vosso ficheiro game. O meu por exemplo é ch1-core1 game.core = nome do ficheiro core. O meu por exemplo é game.core
    1 point
  4. Obrigado por compartilhares com a comunidade
    1 point
×
×
  • Create New...