local timer = -1
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0)
if timer <= os.time() and sampIsLocalPlayerSpawned() then
sampSendChat("/meatbag")
timer = os.time() + 1800
end
end
end