Create Database at runtime
Posted: Fri Mar 14, 2025 4:56 am
Hello there!
I currently have the following setup:
I use a database with all actors/conversation/quests/variables..., and a second database which syncs the quests/items and variables from this database, which I want to call on the server, for every user connecting to the game, so I can achieve server authority for the quests and variabless.
I do this that because I want to save and load data on the server with:
string s = PersistentDataManager.GetSaveData(); // Save state.
PersistentDataManager.ApplySaveData(s); // Restore state.
because i can easily save the string in my db for the user.
Right now it works, but only if I use the dialogue manager which calls the database.
How excactly would I call the database at runtime, without creating too much overhead?
If I want to call the database instance ready to save and load, what would i need to do here?
I already tried to use .AddDatase, which loads the database, but I cant save and load then.
What am I missing?
Thank you for your help, I really appreciate this forum!
I currently have the following setup:
I use a database with all actors/conversation/quests/variables..., and a second database which syncs the quests/items and variables from this database, which I want to call on the server, for every user connecting to the game, so I can achieve server authority for the quests and variabless.
I do this that because I want to save and load data on the server with:
string s = PersistentDataManager.GetSaveData(); // Save state.
PersistentDataManager.ApplySaveData(s); // Restore state.
because i can easily save the string in my db for the user.
Right now it works, but only if I use the dialogue manager which calls the database.
How excactly would I call the database at runtime, without creating too much overhead?
If I want to call the database instance ready to save and load, what would i need to do here?
I already tried to use .AddDatase, which loads the database, but I cant save and load then.
What am I missing?
Thank you for your help, I really appreciate this forum!