Files
Elite-Gaming-FiveM/resources/Custom-Commands/client.lua
T
Jacob 3bd8365ca5 feat: overall QOL improvements
+ Updated to latest server artifacts
+ Updated vMenu to the latest v3.6
+ Replaced Discord Weapon restrictions with a better fork of the repository.
+ Restructured the server config, and updated the dlc build to the latest San Andreas Mercenaries dlc.
+ Attempted to fix missing radios in the wheel.
2023-12-02 02:40:09 +00:00

45 lines
2.6 KiB
Lua

-----------------------------------------------------------------
-----------------------------------------------------------------
--------------------Made by ServerCopMug#0392--------------------
----------------Customizable-Response-Commands-------------------
-----------------------------------------------------------------
--------**To add more links copy and paste the lines below**--------
--------**To change the colors of the message follow this page: https://forum.cfx.re/t/chat-formatting-colors-bold-underline/67641**--------
--------------------RESPONSE COMMANDS--------------------------
RegisterCommand("discord", function(source, args, rawCommand) -------- replace "discord" with any other command you want **DON'T INCLUDE /**
TriggerEvent("chatMessage", "^*^8[Our Discord:] ^7discord.elite-gaming.gg") ------- change message in the ""
end)
--RegisterCommand("cad", function(source, args, rawCommand) ------- replace "cad" with any other command you want DON'T INCLUDE /
-- TriggerEvent("chatMessage", "^*^8[Our CAD:] ^7https://cad.elite-gaming.co.uk/") ------- change message in the ""
--end)
RegisterCommand("website", function(source, args, rawCommand) ------- replace "website" with any other command you want DON'T INCLUDE /
TriggerEvent("chatMessage", "^*^8[Our Website:] ^7elite-gaming.gg") ------- change message in the ""
end)
RegisterCommand("forum", function(source, args, rawCommand) ------- replace "website" with any other command you want DON'T INCLUDE /
TriggerEvent("chatMessage", "^*^8[Our Forum:] ^7forum.elite-gaming.gg") ------- change message in the ""
end)
--RegisterCommand("commands", function(source, args, rawCommand) ------- replace "commands" with any other command you want DON'T INCLUDE /
-- TriggerEvent("chatMessage", "^*^8[Commands:] ^7/website, /cad, /discord, /cars, /info, /help") ------- change message in the ""
--end)
--RegisterCommand("cars", function(source, args, rawCommand) ------- replace "cars" with any other command you want DON'T INCLUDE /
-- TriggerEvent("chatMessage", "^*^8[Custom Car Spawn Codes:] ^7CAR1, CAR2, CAR3, CAR4, CAR5") ------- change message in the ""
--end)
--RegisterCommand("info", function(source, args, rawCommand) ------- replace "info" with any other command you want DON'T INCLUDE /
-- TriggerEvent("chatMessage", "^*^8[Server Info:] ^7Some server info...") ------- change message in the ""
--end)
--RegisterCommand("help", function(source, args, rawCommand) ------- replace "help" with any other command you want DON'T INCLUDE /
-- TriggerEvent("chatMessage", "^*^8[Help:] ^7Some help...") ------- change message in the ""
--end)