Order Config Set (price/exp/recipe)
Change price information
Find the recipe you want to change in the Recipes table (e.g., pizza_margherita)
Example of changing the recipe's monetary gain and experience gain;
RECIPES = {
pizza_margherita = {
type = "pizza",
name = "Margherita Pizza",
label = "Margherita Pizza",
----
----
price = 25, -- The change you make in this section will apply if any order contains this recipe. If the order delivered to the customer is correct, the amount will be added to the preparer's earnings.
----
----
exp = 15, -- Any changes made in this section will apply to orders containing this recipe. If the order is correct when delivered to the customer, the preparer will receive additional experience.
----
----
image = "./pizza.png",
category = "pizza",
recipe = {
sos = 1,
peynir = 1,
}
},
}Example of changing the requirements of the recipe;
Add new ingredients to the recipe;
Modify the contents of the recipe book in the game
Last updated