Configuration
change the needs in config.lua
config.lua
Config = {}
Config.command = 'pvp'
Config.KeyBind = 'F3'
Config.Menutitle = 'PVP MENU'
Config.MenuLocation = 'top-left'
Config.VehicleCooldown = 60 -- 1 minute
Config.TeleportCooldown = 15 -- 15 seconds
Config.PassiveModeDuration = 5 ---passivemode in sec
Config.HealCooldown = 10 ---in seconds
Config.ArmorCooldown = 15 --- in seconds
Config.HelmetCooldown = 20 ---in seconds
-- Teleport locations
Config.Teleports = {
{ label = 'π Spawn', coords = vector3(288.4805, -1601.3655, 31.2659) },
{ label = 'π Dress Shop', coords = vector3(73.9530, -1398.9939, 29.3762) }
}
-- Vehicles
Config.Vehicles = {
{ label = 'π Super Car', model = 'adder' },
{ label = 'π Bike', model = 'bati' },
{ label = 'π Offroad', model = 'sandking' }
}
Config.revive ={
Title = '[E] Press to Revive',
Position = 'bottom-center',
icon = 'π©Ί',
rvMssg = 'You have been revived',
pmMssg = 'Passive Mode Enabled',
pmDesc = 'You are safe for ' .. Config.PassiveModeDuration .. ' seconds',
pmEnd = 'Passive Mode Disabled'
}sv_utils.lua
Last updated