eluna-scripts/Example Scripts/example_player_chat_command.lua
2014-01-25 22:13:18 +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)