├── .DS_Store ├── .idea ├── .gitignore ├── NGCBot-master.iml ├── dataSources.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .wcf.lock ├── ApiServer ├── .DS_Store ├── AiServer │ ├── AiDialogue.py │ ├── AiDrawPicture.py │ ├── AiGraphicDialogue.py │ ├── AiLLMDialogue.py │ └── __pycache__ │ │ ├── AiDialogue.cpython-311.pyc │ │ ├── AiDialogue.cpython-38.pyc │ │ └── AiLLMDialogue.cpython-311.pyc ├── ApiMainServer.py ├── InterFaceServer │ ├── InterFaceApi.py │ ├── __init__.py │ └── __pycache__ │ │ ├── InterFaceApi.cpython-311.pyc │ │ └── __init__.cpython-311.pyc ├── __pycache__ │ ├── ApiMainServer.cpython-311.pyc │ └── ApiMainServer.cpython-38.pyc ├── gameServer │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── idiomGame.cpython-311.pyc │ ├── goFishingGame.py │ ├── idiomGame.py │ └── idiomSolitaireGame.py └── pluginServer │ ├── HappyApi.py │ ├── NewsApi.py │ ├── PointApi.py │ ├── __init__.py │ └── __pycache__ │ ├── HappyApi.cpython-311.pyc │ ├── HappyApi.cpython-38.pyc │ ├── NewsApi.cpython-311.pyc │ ├── NewsApi.cpython-38.pyc │ ├── PointApi.cpython-311.pyc │ ├── PointApi.cpython-38.pyc │ ├── __init__.cpython-311.pyc │ └── __init__.cpython-38.pyc ├── BotServer ├── BotFunction │ ├── AdminFunction.py │ ├── AdministratorFunction.py │ ├── GameFunction.py │ ├── HappyFunction.py │ ├── InterfaceFunction.py │ ├── JudgeFuncion.py │ ├── PointFunction.py │ ├── RoomMsgFunction.py │ └── __pycache__ │ │ ├── AdminFunction.cpython-311.pyc │ │ ├── AdminFunction.cpython-38.pyc │ │ ├── AdministratorFunction.cpython-311.pyc │ │ ├── AdministratorFunction.cpython-38.pyc │ │ ├── GameFunction.cpython-311.pyc │ │ ├── HappyFunction.cpython-311.pyc │ │ ├── HappyFunction.cpython-38.pyc │ │ ├── InterfaceFunction.cpython-311.pyc │ │ ├── InterfaceFunction.cpython-38.pyc │ │ ├── JudgeFuncion.cpython-311.pyc │ │ ├── JudgeFuncion.cpython-38.pyc │ │ ├── PointFunction.cpython-311.pyc │ │ ├── PointFunction.cpython-38.pyc │ │ ├── RoomMsgFunction.cpython-311.pyc │ │ └── RoomMsgFunction.cpython-38.pyc ├── MainServer.py ├── MsgHandleServer │ ├── FriendMsgHandle.py │ ├── GhMsgHandle.py │ ├── RoomMsgHandle.py │ └── __pycache__ │ │ ├── FriendMsgHandle.cpython-311.pyc │ │ ├── FriendMsgHandle.cpython-38.pyc │ │ ├── RoomMsgHandle.cpython-311.pyc │ │ └── RoomMsgHandle.cpython-38.pyc └── __pycache__ │ ├── MainServer.cpython-311.pyc │ └── MainServer.cpython-38.pyc ├── Config ├── Config.yaml ├── ConfigData.py ├── ConfigServer.py └── __pycache__ │ ├── ConfigServer.cpython-311.pyc │ └── ConfigServer.cpython-38.pyc ├── DbServer ├── DbDomServer.py ├── DbGhServer.py ├── DbInitServer.py ├── DbMainServer.py ├── DbPointServer.py ├── DbRoomMsgServer.py ├── DbRoomServer.py ├── DbSignServer.py ├── DbUserServer.py └── __pycache__ │ ├── DbDomServer.cpython-311.pyc │ ├── DbDomServer.cpython-38.pyc │ ├── DbGhServer.cpython-311.pyc │ ├── DbGhServer.cpython-38.pyc │ ├── DbInitServer.cpython-311.pyc │ ├── DbInitServer.cpython-38.pyc │ ├── DbMainServer.cpython-311.pyc │ ├── DbMainServer.cpython-38.pyc │ ├── DbPointServer.cpython-311.pyc │ ├── DbPointServer.cpython-38.pyc │ ├── DbRoomMsgServer.cpython-311.pyc │ ├── DbRoomMsgServer.cpython-38.pyc │ ├── DbRoomServer.cpython-311.pyc │ ├── DbRoomServer.cpython-38.pyc │ ├── DbSignServer.cpython-311.pyc │ ├── DbSignServer.cpython-38.pyc │ ├── DbUserServer.cpython-311.pyc │ └── DbUserServer.cpython-38.pyc ├── FileCache ├── FileCacheServer.py └── __pycache__ │ ├── FileCacheServer.cpython-311.pyc │ └── FileCacheServer.cpython-38.pyc ├── OutPut ├── __pycache__ │ ├── outPut.cpython-311.pyc │ └── outPut.cpython-38.pyc └── outPut.py ├── PushServer ├── PushMainServer.py └── __pycache__ │ ├── PushMainServer.cpython-311.pyc │ └── PushMainServer.cpython-38.pyc ├── README.assets ├── 113191704454837_.pic.jpg ├── Logo2.png ├── image-20240102114003272.png ├── image-20240102141225140.png ├── image-20240102141248781.png ├── image-20240102141340027.png ├── image-20240102141826989.png ├── image-20240102141926511.png ├── image-20240102142025194.png ├── image-20240102142326296.png ├── image-20240102142405384.png ├── image-20240102142435128.png ├── image-20240102142615234.png ├── image-20240102142632603.png ├── image-20240102143144061.png ├── image-20240102143451823.png ├── image-20240102143552170.png ├── image-20240102143657189.png ├── image-20240102143903435.png ├── image-20240102143921467.png ├── image-20240919091732039.png ├── image-20240919095140758.png ├── image-20240919095157747.png ├── image-20240919095238379.png ├── image-20240919095435318.png ├── image-20240919095708879.png ├── image-20240919095908708.png ├── image-20240919095930300.png ├── image-20240919100032259.png ├── image-20240919100543493.png ├── image-20240919100610338.png ├── image-20240919101647499.png ├── image-20240919101826912.png ├── image-20240919102350300.png ├── image-20240919102545023.png ├── image-20240919102630363.png ├── image-20240919102650476.png ├── image-20240919102709479.png ├── image-20240919105126694.png ├── image-20240919105653096.png ├── image-20241230145037139.png ├── image-20241230145726750.png ├── image-20241230145808876.png ├── image-20241230145810723.png ├── image-20250107095221278.png ├── image-20250107100431145.png ├── image-20250107100504390.png ├── image-20250107100658576.png ├── image-20250107100811722.png ├── image-20250107100823446.png ├── image-20250227134830237.png ├── image-20250227135033444.png ├── image-20250227135133234.png ├── image-20250227135245949.png ├── image-20250227135317178.png ├── image-20250227135453137.png ├── image-20250227135530109.png ├── image-20250227135604396.png ├── image-20250227135847756.png ├── image-20250227140007644.png ├── image-20250227140019164.png ├── image-20250227140042023.png ├── image-20250227140211919.png ├── image-20250227140306952.png ├── image-20250227140318457.png ├── image-20250227161550928.png ├── image-20250411211134811.png ├── image-20250414133949788.png ├── img_v3_02h8_1f93bcd8-0880-40b0-aeef-c21c77e7910g.jpg ├── img_v3_02h8_7ea23767-38c1-41e9-8b06-3a0743a5559g.jpg ├── img_v3_02h8_a1c2e430-6fe2-4af9-a0fc-22a0af86c41g.jpg ├── img_v3_02h8_bae897a8-e165-4051-9a52-f0187c5c236g.png ├── 公众号.jpg ├── 关注-4177997.gif ├── 关注.gif └── 赞赏码.jpg ├── README.md ├── WebServer ├── WebServer.py ├── __init__.py ├── botCore.py ├── wcfCore.py └── webRoute.py ├── logs └── wcf.txt ├── main.py ├── requirements.txt └── test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/NGCBot-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/NGCBot-master.iml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.wcf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/.wcf.lock -------------------------------------------------------------------------------- /ApiServer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/.DS_Store -------------------------------------------------------------------------------- /ApiServer/AiServer/AiDialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/AiDialogue.py -------------------------------------------------------------------------------- /ApiServer/AiServer/AiDrawPicture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/AiDrawPicture.py -------------------------------------------------------------------------------- /ApiServer/AiServer/AiGraphicDialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/AiGraphicDialogue.py -------------------------------------------------------------------------------- /ApiServer/AiServer/AiLLMDialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/AiLLMDialogue.py -------------------------------------------------------------------------------- /ApiServer/AiServer/__pycache__/AiDialogue.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/__pycache__/AiDialogue.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/AiServer/__pycache__/AiDialogue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/__pycache__/AiDialogue.cpython-38.pyc -------------------------------------------------------------------------------- /ApiServer/AiServer/__pycache__/AiLLMDialogue.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/AiServer/__pycache__/AiLLMDialogue.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/ApiMainServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/ApiMainServer.py -------------------------------------------------------------------------------- /ApiServer/InterFaceServer/InterFaceApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/InterFaceServer/InterFaceApi.py -------------------------------------------------------------------------------- /ApiServer/InterFaceServer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/InterFaceServer/__init__.py -------------------------------------------------------------------------------- /ApiServer/InterFaceServer/__pycache__/InterFaceApi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/InterFaceServer/__pycache__/InterFaceApi.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/InterFaceServer/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/InterFaceServer/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/__pycache__/ApiMainServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/__pycache__/ApiMainServer.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/__pycache__/ApiMainServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/__pycache__/ApiMainServer.cpython-38.pyc -------------------------------------------------------------------------------- /ApiServer/gameServer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/gameServer/__init__.py -------------------------------------------------------------------------------- /ApiServer/gameServer/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/gameServer/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/gameServer/__pycache__/idiomGame.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/gameServer/__pycache__/idiomGame.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/gameServer/goFishingGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/gameServer/goFishingGame.py -------------------------------------------------------------------------------- /ApiServer/gameServer/idiomGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/gameServer/idiomGame.py -------------------------------------------------------------------------------- /ApiServer/gameServer/idiomSolitaireGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/gameServer/idiomSolitaireGame.py -------------------------------------------------------------------------------- /ApiServer/pluginServer/HappyApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/HappyApi.py -------------------------------------------------------------------------------- /ApiServer/pluginServer/NewsApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/NewsApi.py -------------------------------------------------------------------------------- /ApiServer/pluginServer/PointApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/PointApi.py -------------------------------------------------------------------------------- /ApiServer/pluginServer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__init__.py -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/HappyApi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/HappyApi.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/HappyApi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/HappyApi.cpython-38.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/NewsApi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/NewsApi.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/NewsApi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/NewsApi.cpython-38.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/PointApi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/PointApi.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/PointApi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/PointApi.cpython-38.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /ApiServer/pluginServer/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/ApiServer/pluginServer/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/AdminFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/AdminFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/AdministratorFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/AdministratorFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/GameFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/GameFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/HappyFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/HappyFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/InterfaceFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/InterfaceFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/JudgeFuncion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/JudgeFuncion.py -------------------------------------------------------------------------------- /BotServer/BotFunction/PointFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/PointFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/RoomMsgFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/RoomMsgFunction.py -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/AdminFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/AdminFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/AdminFunction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/AdminFunction.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/AdministratorFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/AdministratorFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/AdministratorFunction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/AdministratorFunction.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/GameFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/GameFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/HappyFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/HappyFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/HappyFunction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/HappyFunction.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/InterfaceFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/InterfaceFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/InterfaceFunction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/InterfaceFunction.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/JudgeFuncion.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/JudgeFuncion.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/JudgeFuncion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/JudgeFuncion.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/PointFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/PointFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/PointFunction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/PointFunction.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/RoomMsgFunction.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/RoomMsgFunction.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/BotFunction/__pycache__/RoomMsgFunction.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/BotFunction/__pycache__/RoomMsgFunction.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/MainServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MainServer.py -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/FriendMsgHandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/FriendMsgHandle.py -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/GhMsgHandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/GhMsgHandle.py -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/RoomMsgHandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/RoomMsgHandle.py -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/__pycache__/FriendMsgHandle.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/__pycache__/FriendMsgHandle.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/__pycache__/FriendMsgHandle.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/__pycache__/FriendMsgHandle.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/__pycache__/RoomMsgHandle.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/__pycache__/RoomMsgHandle.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/MsgHandleServer/__pycache__/RoomMsgHandle.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/MsgHandleServer/__pycache__/RoomMsgHandle.cpython-38.pyc -------------------------------------------------------------------------------- /BotServer/__pycache__/MainServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/__pycache__/MainServer.cpython-311.pyc -------------------------------------------------------------------------------- /BotServer/__pycache__/MainServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/BotServer/__pycache__/MainServer.cpython-38.pyc -------------------------------------------------------------------------------- /Config/Config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/Config/Config.yaml -------------------------------------------------------------------------------- /Config/ConfigData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/Config/ConfigData.py -------------------------------------------------------------------------------- /Config/ConfigServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/Config/ConfigServer.py -------------------------------------------------------------------------------- /Config/__pycache__/ConfigServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/Config/__pycache__/ConfigServer.cpython-311.pyc -------------------------------------------------------------------------------- /Config/__pycache__/ConfigServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/Config/__pycache__/ConfigServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/DbDomServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbDomServer.py -------------------------------------------------------------------------------- /DbServer/DbGhServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbGhServer.py -------------------------------------------------------------------------------- /DbServer/DbInitServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbInitServer.py -------------------------------------------------------------------------------- /DbServer/DbMainServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbMainServer.py -------------------------------------------------------------------------------- /DbServer/DbPointServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbPointServer.py -------------------------------------------------------------------------------- /DbServer/DbRoomMsgServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbRoomMsgServer.py -------------------------------------------------------------------------------- /DbServer/DbRoomServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbRoomServer.py -------------------------------------------------------------------------------- /DbServer/DbSignServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbSignServer.py -------------------------------------------------------------------------------- /DbServer/DbUserServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/DbUserServer.py -------------------------------------------------------------------------------- /DbServer/__pycache__/DbDomServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbDomServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbDomServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbDomServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbGhServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbGhServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbGhServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbGhServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbInitServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbInitServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbInitServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbInitServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbMainServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbMainServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbMainServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbMainServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbPointServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbPointServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbPointServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbPointServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbRoomMsgServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbRoomMsgServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbRoomMsgServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbRoomMsgServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbRoomServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbRoomServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbRoomServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbRoomServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbSignServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbSignServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbSignServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbSignServer.cpython-38.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbUserServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbUserServer.cpython-311.pyc -------------------------------------------------------------------------------- /DbServer/__pycache__/DbUserServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/DbServer/__pycache__/DbUserServer.cpython-38.pyc -------------------------------------------------------------------------------- /FileCache/FileCacheServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/FileCache/FileCacheServer.py -------------------------------------------------------------------------------- /FileCache/__pycache__/FileCacheServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/FileCache/__pycache__/FileCacheServer.cpython-311.pyc -------------------------------------------------------------------------------- /FileCache/__pycache__/FileCacheServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/FileCache/__pycache__/FileCacheServer.cpython-38.pyc -------------------------------------------------------------------------------- /OutPut/__pycache__/outPut.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/OutPut/__pycache__/outPut.cpython-311.pyc -------------------------------------------------------------------------------- /OutPut/__pycache__/outPut.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/OutPut/__pycache__/outPut.cpython-38.pyc -------------------------------------------------------------------------------- /OutPut/outPut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/OutPut/outPut.py -------------------------------------------------------------------------------- /PushServer/PushMainServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/PushServer/PushMainServer.py -------------------------------------------------------------------------------- /PushServer/__pycache__/PushMainServer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/PushServer/__pycache__/PushMainServer.cpython-311.pyc -------------------------------------------------------------------------------- /PushServer/__pycache__/PushMainServer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/PushServer/__pycache__/PushMainServer.cpython-38.pyc -------------------------------------------------------------------------------- /README.assets/113191704454837_.pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/113191704454837_.pic.jpg -------------------------------------------------------------------------------- /README.assets/Logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/Logo2.png -------------------------------------------------------------------------------- /README.assets/image-20240102114003272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102114003272.png -------------------------------------------------------------------------------- /README.assets/image-20240102141225140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102141225140.png -------------------------------------------------------------------------------- /README.assets/image-20240102141248781.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102141248781.png -------------------------------------------------------------------------------- /README.assets/image-20240102141340027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102141340027.png -------------------------------------------------------------------------------- /README.assets/image-20240102141826989.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102141826989.png -------------------------------------------------------------------------------- /README.assets/image-20240102141926511.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102141926511.png -------------------------------------------------------------------------------- /README.assets/image-20240102142025194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102142025194.png -------------------------------------------------------------------------------- /README.assets/image-20240102142326296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102142326296.png -------------------------------------------------------------------------------- /README.assets/image-20240102142405384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102142405384.png -------------------------------------------------------------------------------- /README.assets/image-20240102142435128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102142435128.png -------------------------------------------------------------------------------- /README.assets/image-20240102142615234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102142615234.png -------------------------------------------------------------------------------- /README.assets/image-20240102142632603.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102142632603.png -------------------------------------------------------------------------------- /README.assets/image-20240102143144061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102143144061.png -------------------------------------------------------------------------------- /README.assets/image-20240102143451823.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102143451823.png -------------------------------------------------------------------------------- /README.assets/image-20240102143552170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102143552170.png -------------------------------------------------------------------------------- /README.assets/image-20240102143657189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102143657189.png -------------------------------------------------------------------------------- /README.assets/image-20240102143903435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102143903435.png -------------------------------------------------------------------------------- /README.assets/image-20240102143921467.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240102143921467.png -------------------------------------------------------------------------------- /README.assets/image-20240919091732039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919091732039.png -------------------------------------------------------------------------------- /README.assets/image-20240919095140758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095140758.png -------------------------------------------------------------------------------- /README.assets/image-20240919095157747.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095157747.png -------------------------------------------------------------------------------- /README.assets/image-20240919095238379.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095238379.png -------------------------------------------------------------------------------- /README.assets/image-20240919095435318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095435318.png -------------------------------------------------------------------------------- /README.assets/image-20240919095708879.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095708879.png -------------------------------------------------------------------------------- /README.assets/image-20240919095908708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095908708.png -------------------------------------------------------------------------------- /README.assets/image-20240919095930300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919095930300.png -------------------------------------------------------------------------------- /README.assets/image-20240919100032259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919100032259.png -------------------------------------------------------------------------------- /README.assets/image-20240919100543493.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919100543493.png -------------------------------------------------------------------------------- /README.assets/image-20240919100610338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919100610338.png -------------------------------------------------------------------------------- /README.assets/image-20240919101647499.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919101647499.png -------------------------------------------------------------------------------- /README.assets/image-20240919101826912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919101826912.png -------------------------------------------------------------------------------- /README.assets/image-20240919102350300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919102350300.png -------------------------------------------------------------------------------- /README.assets/image-20240919102545023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919102545023.png -------------------------------------------------------------------------------- /README.assets/image-20240919102630363.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919102630363.png -------------------------------------------------------------------------------- /README.assets/image-20240919102650476.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919102650476.png -------------------------------------------------------------------------------- /README.assets/image-20240919102709479.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919102709479.png -------------------------------------------------------------------------------- /README.assets/image-20240919105126694.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919105126694.png -------------------------------------------------------------------------------- /README.assets/image-20240919105653096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20240919105653096.png -------------------------------------------------------------------------------- /README.assets/image-20241230145037139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20241230145037139.png -------------------------------------------------------------------------------- /README.assets/image-20241230145726750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20241230145726750.png -------------------------------------------------------------------------------- /README.assets/image-20241230145808876.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20241230145808876.png -------------------------------------------------------------------------------- /README.assets/image-20241230145810723.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20241230145810723.png -------------------------------------------------------------------------------- /README.assets/image-20250107095221278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250107095221278.png -------------------------------------------------------------------------------- /README.assets/image-20250107100431145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250107100431145.png -------------------------------------------------------------------------------- /README.assets/image-20250107100504390.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250107100504390.png -------------------------------------------------------------------------------- /README.assets/image-20250107100658576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250107100658576.png -------------------------------------------------------------------------------- /README.assets/image-20250107100811722.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250107100811722.png -------------------------------------------------------------------------------- /README.assets/image-20250107100823446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250107100823446.png -------------------------------------------------------------------------------- /README.assets/image-20250227134830237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227134830237.png -------------------------------------------------------------------------------- /README.assets/image-20250227135033444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135033444.png -------------------------------------------------------------------------------- /README.assets/image-20250227135133234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135133234.png -------------------------------------------------------------------------------- /README.assets/image-20250227135245949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135245949.png -------------------------------------------------------------------------------- /README.assets/image-20250227135317178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135317178.png -------------------------------------------------------------------------------- /README.assets/image-20250227135453137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135453137.png -------------------------------------------------------------------------------- /README.assets/image-20250227135530109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135530109.png -------------------------------------------------------------------------------- /README.assets/image-20250227135604396.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135604396.png -------------------------------------------------------------------------------- /README.assets/image-20250227135847756.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227135847756.png -------------------------------------------------------------------------------- /README.assets/image-20250227140007644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227140007644.png -------------------------------------------------------------------------------- /README.assets/image-20250227140019164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227140019164.png -------------------------------------------------------------------------------- /README.assets/image-20250227140042023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227140042023.png -------------------------------------------------------------------------------- /README.assets/image-20250227140211919.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227140211919.png -------------------------------------------------------------------------------- /README.assets/image-20250227140306952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227140306952.png -------------------------------------------------------------------------------- /README.assets/image-20250227140318457.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227140318457.png -------------------------------------------------------------------------------- /README.assets/image-20250227161550928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250227161550928.png -------------------------------------------------------------------------------- /README.assets/image-20250411211134811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250411211134811.png -------------------------------------------------------------------------------- /README.assets/image-20250414133949788.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/image-20250414133949788.png -------------------------------------------------------------------------------- /README.assets/img_v3_02h8_1f93bcd8-0880-40b0-aeef-c21c77e7910g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/img_v3_02h8_1f93bcd8-0880-40b0-aeef-c21c77e7910g.jpg -------------------------------------------------------------------------------- /README.assets/img_v3_02h8_7ea23767-38c1-41e9-8b06-3a0743a5559g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/img_v3_02h8_7ea23767-38c1-41e9-8b06-3a0743a5559g.jpg -------------------------------------------------------------------------------- /README.assets/img_v3_02h8_a1c2e430-6fe2-4af9-a0fc-22a0af86c41g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/img_v3_02h8_a1c2e430-6fe2-4af9-a0fc-22a0af86c41g.jpg -------------------------------------------------------------------------------- /README.assets/img_v3_02h8_bae897a8-e165-4051-9a52-f0187c5c236g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/img_v3_02h8_bae897a8-e165-4051-9a52-f0187c5c236g.png -------------------------------------------------------------------------------- /README.assets/公众号.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/公众号.jpg -------------------------------------------------------------------------------- /README.assets/关注-4177997.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/关注-4177997.gif -------------------------------------------------------------------------------- /README.assets/关注.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/关注.gif -------------------------------------------------------------------------------- /README.assets/赞赏码.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.assets/赞赏码.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/README.md -------------------------------------------------------------------------------- /WebServer/WebServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/WebServer/WebServer.py -------------------------------------------------------------------------------- /WebServer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebServer/botCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/WebServer/botCore.py -------------------------------------------------------------------------------- /WebServer/wcfCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/WebServer/wcfCore.py -------------------------------------------------------------------------------- /WebServer/webRoute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/WebServer/webRoute.py -------------------------------------------------------------------------------- /logs/wcf.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aabyss-Team/NGCBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------