local cmds = {'/q', '/q', '/q', '/q', '/q', '/q', '/q', '/q', '/q', '/q'}
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('pame', function()
for i = 1, #cmds do
sampProcessChatInput(cmds[i])
end
end)
while true do
wait(0)
end
end