-- *** Example rutine script ***
-- Since: v0.1a
-- This command print in MISI.log
-- Script always run in game frame and break if you key press ENTER.

while(true) do
	if (GetGameFrame() > 0) then
		if (IsKeyPress(13)) then
			WriteInLog("im braked. Goodbye...\n")
			break
		end
	end
	wait(200)
end


