Configuration

Config = {}

Config.language ='en' -- Select langauge: 'en', 'your language name'
Config.botToken = '' -- Discord bot token (to get discord pfp if not then it will use Config.serverLogo)

-- Webhooks
Config.webhook_buyItem = ''
Config.webhook_buyVehicle = ''
Config.webhook_addPP = ''

Config.dashboardCommand = 'dash' -- Command Name
Config.dashboardOpenKey = 'F9' -- Quick open button
Config.serverName = 'Infinity' -- Your Server Name
Config.serverType = 'Roleplay' -- Your Server Type (Roleplay, DM)
Config.serverLogo = 'https://cdn.discordapp.com/attachments/805801546461610004/1202360944672657489/infinityLogo.png?ex=65cd2ce3&is=65bab7e3&hm=771e9a7dcce3973dd72712279845ca88ae26ed5a91a8bac000fac09f2a2b64f4&'
Config.heightType = 'cm' -- The character height type

-- The salary time for the jobs
Config.salaryTimes = {
    ['police'] = '7min',
    ['ambulance'] = '15min',
    ['taxi'] = '10min',
    ['unemployed'] = '20min',
}

Config.currency = '$' -- The currency of your server
Config.hour = 'h' -- Time Type
Config.refreshPlayTime = 1 -- Refresh playtime (in minute)

-- Vehicle Test
Config.testTime = 10 -- Test ride time (in sec)
Config.spawnVehicle = { 
    coords = vector3(-1729.6676, -2903.6140, 13.9443), 
    heading = 330.0,
}

-- Settings
Config.hud = true -- Starting value in the settings
Config.minimap = true -- Starting value in the settings

Config.customNotify = false -- Enable/Disable custom notify

-- Staff Permissions (if false it won't appear in the staff menu)
Config.staffs = {
    ['user'] = false,
    ['member'] = false,
    ['admin'] = true,
    ['superadmin'] = true,
    ['cizizen'] = false,
}

-- Premium Point Permissions (if false it won't appear in the staff menu)
Config.ppPermissions = {
    ['admin'] = true,
    ['mod'] = true,
    ['god'] = true,
}

Last updated

Was this helpful?