So I made a quest system, but I’m trying to find the best way to save it, do I make 100 bool values in the player and true them if they completed the quest and save that or put the quests in a table. pls help.
I would make a two dimensional table with quest ID and other data along with it.
Example:
local data = {{1, 2}, {2, 3}}
Here the the table goes like {Quest 1, Quest 2} and inside those tables it’s like {ID of the quest (use moduleScript to then retrieve further info on the quest), Stage of the quest (for example if player started it, but left after starting then it would be just 1)}
Im going to wait for some more ideas from people, but after that ill probably solution your reply.
Aye, there are always more ways to do basically anything in Programming, depends on with what method you are most chill with.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.