function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(0) end
end
local sampev = require 'lib.samp.events'
function sampev.onSendChat(text)
if text:find("/.+") then
return
else
sampSendChat(text..".")
return false
end
end