update code

This commit is contained in:
Jonas Ornfelt 2024-09-23 07:59:23 +02:00
parent 4635e9e301
commit c23003c4df
3454 changed files with 80746 additions and 1860 deletions

View file

@ -0,0 +1,9 @@
local ChatPrefix = "#example"
local function ChatSystem(event, player, msg, _, lang)
if (msg:find(ChatPrefix) == 1) then
player:SendNotification("Example Chat Command Works")
end
end
RegisterPlayerEvent(18, ChatSystem)