Installations
Guide to installations and basic concepts of Frozen Scratch Ticket
1. Before starting
2. Items and database
Items in the database
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('money_ticket', 'Money Ticket', 0.2, 0, 1),
('item_ticket', 'Item Ticket', 0.2, 0, 1);Items in ox_inventory
["money_ticket"] = {
label = "Money Ticket",
weight = 0.2,
stack = true,
close = true,
},
["item_ticket"] = {
label = "Item Ticket",
weight = 0.2,
stack = true,
close = true,
}Items in QB
Last updated