eluna-scripts-ornfelt/lua/Scripts/Example Scripts/example_player_chat_command.lua
2024-09-23 07:59:23 +02:00

9 lines
No EOL
236 B
Lua

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)