Lundstrong / LundstrongOrders

A beautiful ordering system, designed for your Roblox Cafe.
Apache License 2.0
2 stars 3 forks source link

[LOR-13] Make Configuration More User-Friendly #10

Open Jqyden opened 3 years ago

Jqyden commented 3 years ago

I think lundstrong orders should be configured by the hub again, it was so much easier than having to do the script as the script can be confusing for adding items to the menu, for those who dont script.

sasial-dev commented 3 years ago

Thw downside of the hub is that it costs money to host a database etc. In 3.0 (The typescript rewrite), I plan to make it eaisier. What's the hardest part to config atm? Would a plugin help?

Jqyden commented 3 years ago

The hardest part currently, is setting up the menu. Tbh, the setup part is pretty easy, so I should have just said menu. lol. I think that if it was more like how you setup permissions for group ids like if there listed like

Coffees: Regular,Steamd,Decaf etc it'd be a bit easier, but just a suggestion!

sasial-dev commented 3 years ago

Ah, as the menu config is being re-done in 3.0 (typescript branch) It'll look exactly like you suggested (see #development in the discord) Here's an example.

--[[
This is where you can add menu items for LundstrongOrders. They are in categories.
]]
return {
    {
        ["categoryName"] = "Entree", -- You can change the name of that to say whatever you want it to say.
        ["items"] = {"Garlic Bread"},
    },
    {
        ["categoryName"] = "Mains",
        ["items"] = {"Steak & Chips", "Fried Shrimp"},
    },
    {
        ["categoryName"] = "Deserts",
        ["items"] = {"Chocolate Cake", "Cookies"},
    },
}