
ποΈOrder Kiosks
You can set restaurants to have order kiosks so players can interact with the kiosk and submit and order for items if the location is busy in the orderKiosks.lua file
The coords must be a
vector4
value and you can have multiple locations or just oneYou can define tables for the order kiosk input dialogue these are
food
,side
,drinks
,dessert
If the restaurant you create does not have those options you can remove them for example Hookies is just
food, side and drinks it does not have the dessert option
--order kiosk locations and inventory per restaurant
Config.OrderPoints = {
['Up & Atom'] = { -- the key is the restaurant name
{
enabled = true, -- set to true to enable this prop
Model = 'bzzz_prop_selfordering_screen_01', -- prop model to spawn
Coords = { -- coords for props to spawn can be single vector4 or multiple
vector4(91.76, 282.5, 110.21, 70),
vector4(91.4, 281.5, 110.21, 70),
vector4(92.18, 283.5, 110.21, 70),
vector4(93.56, 280.49, 110.21, 262.24),
},
Icon = 'fa-solid fa-hand-point-up', -- target icon
Label = 'Use Order Point', -- target label
Distance = 2.0, -- target distance
food = { -- define food items available to order below
{label = 'Meat Free Burger'},
{label = 'Ham Burger'},
{label = 'Cheese Burger'},
{label = 'Double Cheese Burger'},
{label = 'Triple Cheese Burger'},
{label = 'Chicken Burger'},
{label = 'Double Chicken Burger'},
{label = 'Triple Chicken Burger'},
},
side = { -- define side items available to order below
{label = 'Chicken Nuggets'},
{label = 'Chicken Strips'},
{label = 'Fries'},
},
drinks = { -- define drink items available to order below
{label = 'E Cola'},
{label = 'E Cola Light'},
{label = 'Orange Soda'},
{label = 'Sprunk'},
{label = 'Coffee'},
{label = 'Tea'},
{label = 'Hot Chocolate'},
{label = 'Apple Smoothie'},
{label = 'Blueberry Smoothie'},
{label = 'Lemon Smoothie'},
{label = 'Orange Smoothie'},
{label = 'Chocolate Milkshake'},
{label = 'Vanilla Milkshake'},
{label = 'Strawberry Milkshake'},
},
dessert = { -- define dessert items available to order below
{label = 'Rim Job'},
{label = 'Gelato'},
{label = 'Cream Pie'},
{label = 'Brownie'},
},
},
},
}
Last updated