12345678910111213141516171819202122232425 |
- # annafrends2
- gs 'stat'
- 'Poltorashka beer was quickly drained and the guys got a new bottle.'
- if rand(0, 1) = 0:
- gennpc = rand(0, 2)
- if gennpc = 0:
- 'Anja came to you. "<<$name>>, go to the toilet."'
- elseif gennpc = 1:
- 'Lena came to you. "<<$name>>, you do not want the toilet?"'
- elseif gennpc = 2:
- 'Ira came to you. "<<$name>>, you do not want to go some where?"'
- end
- act 'Go together':gt 'annafrendtoilet'
- else
- 'Boys went around the corner of the club, to empty their bladder, leaving the girls alone.'
- end
- act 'Leave':gt 'gdk'
- if sisboyparty = 2 and sisboyparty_day + 1 = daystart and hour = 18:act 'Go to the party':gt 'sisterQW', 'sisboyQW_party', 'start'
- --- annafrends2 ---------------------------------
|