Files
Elite-Gaming-FiveM/resources/Commands/client.lua
T
Jacob 3446af804d Bunch of QOL improvements
+ Re-wrote the commands script to actually register the commands.
+ Changed both the Hands-Up and Point-Finger script to use commands. Mostly had to re-write Hands-Up entirely and change up the point script alittle.
+ Fixed a car which had a ridiculous handling data file.
2023-05-28 23:45:43 +01:00

10 lines
729 B
Lua

Citizen.CreateThread(function()
TriggerEvent('chat:addSuggestion', '/ooc', 'Type in Out-Of-Character mode', { })
TriggerEvent('chat:addSuggestion', '/911', 'Submit a public 911 call', { })
TriggerEvent('chat:addSuggestion', '/ad', 'Send an ad into the chat', { })
TriggerEvent('chat:addSuggestion', '/atc', 'To be used for Air Trafic Control', { })
TriggerEvent('chat:addSuggestion', '/darkweb', 'Send sketchy ads in here :)', { })
TriggerEvent('chat:addSuggestion', '/dispatch', 'To be used by dispatch for first responders', { })
TriggerEvent('chat:addSuggestion', '/drugdeal', 'Used to ad your drugdeal', { })
TriggerEvent('chat:addSuggestion', '/me', 'Used to mention personal actions', { })
end)