Add and remove scripts. Tidy and update scripts

This commit is contained in:
Rochet2 2014-01-25 21:55:47 +02:00
parent 43750702f4
commit 3c51ed2371
21 changed files with 319 additions and 270 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)