require 'lib.moonloader'
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(200) end
sampRegisterChatCommand('go', function()
printStringNow('Go', 3000) -- 3000ms = 3sec
end)
while true do
wait(0)
end
end