Skip to content
PizzaThatCodes edited this page Nov 28, 2023 · 2 revisions

Here are some commonly asked questions:

Why is there 3 schemas? And what does each of them do?

The reason I made it have three schemas is due to the fact that DailyShop has a lot of data to save, each item you add has to be saved, what items have a player bought so far, and the randomization of each item, So I created the option to either have all data inside one big database, or if the size of databases are small, you can split the load off!

Functionality of each Schema:

Schema 1: Schema 1 saves all item data, so for every item you have created, it will be saved there, switching this will not have your items transfer (You will need to manually transfer this!).

Schema 2: Schema 2 saves all player data, it saves the amount of items bought, and sold. This gets reset every time the shop itself gets reset to save on storage and reset the values.

Schema 3: Schema 3 saves all the randomization for the items, each time the shop resets it assigns a random number to every item from schema 1 depending on category which can be used in the gui's (So schema 3 will be roughly half the size of schema 1).

Why is it closed-source:

I made this closed source since it's a paid plugin, but don't worry! DailyShop will become open source once I stop maintaining the project to allow others to build on this! (As all software should do).

How do I get support?

You can get support on my discord server The Pizza Hut, here is the invite link: https://discord.gg/pj8auQEPJU

Clone this wiki locally