38 lines
1.7 KiB
Lua
38 lines
1.7 KiB
Lua
Menu = {
|
|
Command = 'weapons',
|
|
Keybind = 'f10', -- This is only used for the first time somebody joins the server. After they have joined they will have to change the keybind through their GTA5 Keybind Settings.
|
|
BottomText = "WEAPONS MENU",
|
|
Position = "topright",
|
|
DefaultWeapons = true, -- Change this to false to remove the ability to spawn default weapons from the menu
|
|
SaveDefaultWeaponsToLoadouts = true, -- This allows for default GTA weapons to be saved to your loadouts
|
|
Language = {
|
|
SpawnText = 'Get {weapon}', -- {weapon} Shows the Weapon Name
|
|
SpawnWeaponNotification = 'Spawned {weapon}',
|
|
RemovWeaponNotification = 'Removed {weapon}',
|
|
AmmoRefillText = 'Refill Ammo',
|
|
AmmoRefillNotification = 'Refilled Ammo!',
|
|
RemovedAllWeapons = "Removed All Weapons",
|
|
LoadoutSpawnNotifiction = 'Spawned All Weapons',
|
|
NoPermissionToOpenMenu = "You do not have permission to open the menu.",
|
|
SpawnedLoadout = "Spawned Loadout",
|
|
DeletedLoadout = "Deleted Loadout",
|
|
},
|
|
Color = { -- https://rgbcolorpicker.com/
|
|
r = 24,
|
|
g = 165,
|
|
b = 221
|
|
},
|
|
AmmoRefill = {
|
|
Enabled = true,
|
|
Amount = 160
|
|
}
|
|
}
|
|
|
|
DiscordPermissions = { -- For a more detailed explanation of how to set up the Discord Permissions read the guide in our Discord Server.
|
|
useDiscordPermissionsToOpenMenu = false,
|
|
Roles = {
|
|
["Role Name"] = "Role ID",
|
|
},
|
|
useDiscordPermissionsForWeapons = false,
|
|
-- "discordRoles": ["Role ID", "Role ID #2"], -- Add this line under the weapon you want to lock behind a Discord Role. For a more detailed explanation look at the guide in our Discord Server.
|
|
} |