Configuration
Config = {}
Config.Laungage = "en" -- en, es, fr, hu, ja, ru ,zh
Config.UpdateInterval = 5 -- in minutes to update the playtime
Config.PointsToAdd = 5 -- if updateInterval = 5, that means every 5 minutes you get 5 points because PointsToAdd = 5.
-- Command
Config.UseCommand = true -- Enable or disable the command
Config.Command = "playtime" -- Command to use for the playtime shop
-- Basic
Config.AFKInSeconds = 60 -- Time in seconds to consider the player AFK
Config.UseOXInventoryImages = false -- Enable or disable the OX inventory images (Requires OX inventory system)
-- Add your items here
Config.Items = {
{
label = "NINEF", -- Label for the vehicle
img = "ninef", -- Image for the vehicle
price = 15000, -- Price for the vehicle
vehicle = {
vehName = "ninef", -- Vehicle model for the item
},
},
{
label = "Candy", -- Label for the item
img = "candy", -- Image for the item
price = 15000, -- Price for the item
item = {
itemName = "weapon_candycane", -- Item spawn name
count = 1, -- Count of items to spawn
},
},
}
Config.UseEvents = false
Config.UseExports = false
Last updated
Was this helpful?