Implement NPC memory and interaction system with SQLite database; add NPC data structure and dynamic NPC handling; integrate LLM for NPC conversations and quest generation.

This commit is contained in:
2025-10-02 11:05:33 +02:00
parent 7e76353c6a
commit a34ba3e6f6
21 changed files with 12669 additions and 37790 deletions
+2 -1
View File
@@ -24,7 +24,7 @@ class MyNewHelp(commands.MinimalHelpCommand):
class Client(commands.Bot):
def __init__(self):
super().__init__(
command_prefix=self.iterate_prefix("py"),
command_prefix=self.iterate_prefix("Vamoc")+self.iterate_prefix("!V"),
strip_after_prefix=True,
case_insensitive=True,
intents=discord.Intents.all(),
@@ -52,6 +52,7 @@ def main():
load_dotenv()
client = Client()
token = os.getenv("TOKEN")
print(token)
if token is not None:
threading.Thread(target=run_web, daemon=True).start()
client.run(token)