(include "sci.sh")
(use "Main")
(use "Game")
(use "User")
(use "Obj")
(script 700)



(instance public Room700 of Rm
    (properties)

    (method (init)
        (send global2:drawPic(700 6))
        (self:setScript(wait))
        (User:canInput(0))
        = global22 global23
        (super:init())
    )


    (method (dispose)
        (User:canInput(1))
        (super:dispose())
    )

)
(instance wait of Script
    (properties)

    (method (changeState newState)
        (switch (= state newState)
            (case 0
                (Display(700 0 100 70 170 102 0 103 7) = seconds 3  )
            )
            (case 1
                ((send global2:newRoom(699)) )
            )
        )
    )

)
