123456789101112131415161718192021 |
- # kutuzka
- gs 'stat'
- 'You sit in a small cell, where there is no toilet, no shell, is only a wooden plank. All you have to sit <<kutime>> hours.'
- if kutime > 0:
- act 'sit':
- cls
- minut += 60
- kutime -= 1
- gs 'stat'
- 'You sit on hard wooden planks.'
- act 'further':gt $curloc
- end
- elseif kutime <= 0:
- 'Finally the time of his release over and you have been released.'
- act 'Leave':minut += 1 & gt $curloc
- end
- --- kutuzka ---------------------------------
|