├── .gitignore ├── README.md ├── gensdk.bat ├── gensdk.sh ├── guiconsole.bat ├── kill_server.bat ├── kill_server.sh ├── res └── server │ ├── kbengine.xml │ └── server_errors.xml ├── safe_kill.bat ├── safe_kill.sh ├── scripts ├── base │ ├── Account.py │ ├── Hotfix_Ent.py │ ├── kbemain.py │ └── parent │ │ ├── C1.py │ │ └── C2.py ├── bots │ ├── Account.py │ └── kbemain.py ├── cell │ └── kbemain.py ├── common │ ├── CustomClass.py │ ├── Functor.py │ ├── Hotfix.py │ └── KBEDebug.py ├── db │ └── kbemain.py ├── entities.xml ├── entity_defs │ ├── Account.def │ ├── Hotfix_Ent.def │ └── types.xml ├── interface │ ├── Poller.py │ └── kbemain.py ├── logger │ └── kbemain.py └── login │ └── kbemain.py ├── start_bots.bat ├── start_bots.sh ├── start_server.bat ├── start_server.sh └── start_server_background.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/README.md -------------------------------------------------------------------------------- /gensdk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/gensdk.bat -------------------------------------------------------------------------------- /gensdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/gensdk.sh -------------------------------------------------------------------------------- /guiconsole.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/guiconsole.bat -------------------------------------------------------------------------------- /kill_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/kill_server.bat -------------------------------------------------------------------------------- /kill_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/kill_server.sh -------------------------------------------------------------------------------- /res/server/kbengine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/res/server/kbengine.xml -------------------------------------------------------------------------------- /res/server/server_errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/res/server/server_errors.xml -------------------------------------------------------------------------------- /safe_kill.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/safe_kill.bat -------------------------------------------------------------------------------- /safe_kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/safe_kill.sh -------------------------------------------------------------------------------- /scripts/base/Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/base/Account.py -------------------------------------------------------------------------------- /scripts/base/Hotfix_Ent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/base/Hotfix_Ent.py -------------------------------------------------------------------------------- /scripts/base/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/base/kbemain.py -------------------------------------------------------------------------------- /scripts/base/parent/C1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/base/parent/C1.py -------------------------------------------------------------------------------- /scripts/base/parent/C2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/base/parent/C2.py -------------------------------------------------------------------------------- /scripts/bots/Account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/bots/Account.py -------------------------------------------------------------------------------- /scripts/bots/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/bots/kbemain.py -------------------------------------------------------------------------------- /scripts/cell/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/cell/kbemain.py -------------------------------------------------------------------------------- /scripts/common/CustomClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/common/CustomClass.py -------------------------------------------------------------------------------- /scripts/common/Functor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/common/Functor.py -------------------------------------------------------------------------------- /scripts/common/Hotfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/common/Hotfix.py -------------------------------------------------------------------------------- /scripts/common/KBEDebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/common/KBEDebug.py -------------------------------------------------------------------------------- /scripts/db/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/db/kbemain.py -------------------------------------------------------------------------------- /scripts/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/entities.xml -------------------------------------------------------------------------------- /scripts/entity_defs/Account.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/entity_defs/Account.def -------------------------------------------------------------------------------- /scripts/entity_defs/Hotfix_Ent.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/entity_defs/Hotfix_Ent.def -------------------------------------------------------------------------------- /scripts/entity_defs/types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/entity_defs/types.xml -------------------------------------------------------------------------------- /scripts/interface/Poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/interface/Poller.py -------------------------------------------------------------------------------- /scripts/interface/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/interface/kbemain.py -------------------------------------------------------------------------------- /scripts/logger/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/logger/kbemain.py -------------------------------------------------------------------------------- /scripts/login/kbemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/scripts/login/kbemain.py -------------------------------------------------------------------------------- /start_bots.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/start_bots.bat -------------------------------------------------------------------------------- /start_bots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/start_bots.sh -------------------------------------------------------------------------------- /start_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/start_server.bat -------------------------------------------------------------------------------- /start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/start_server.sh -------------------------------------------------------------------------------- /start_server_background.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahffffffff/kbengine_hotfix/HEAD/start_server_background.bat --------------------------------------------------------------------------------