12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # gargazel
- $metka = $ARGS[0]
- $loc = $CURLOC
- fatherdrunk=0
- clr
- gs 'stat'
- '<center><h4>Garage</h4></center>'
- if father_go = 1 and hour >= 16 and hour < 21:
- '<center><img src="images/pic/gargazel.jpg"></center>'
- 'Large garage in which your stepfather keeps his beloved car, a Gazelle.'
- else
- '<center><img src="images/pic/gargazel_empty.jpg"></center>'
- 'Large garage in which your stepfather keeps his beloved car, a Gazelle. Right now the garage is closed and locked with a huge padlock.'
- end
- act 'Leave':minut += 5 & gt 'garmassiv'
- if father_go = 1 and hour >= 16 and hour < 20:
- 'Right now your <a href="exec:GT ''garfather''">stepfather</a> is in the garage, doing car repairs.'
- end
- if father_go=1 and hour>=20 and hour<21:
- 'Right now your <a href="exec:GT ''garfather''">stepfather and Uncle Misha</a> is in the garage, drinking vodka.'
- set fatherdrunk=1
- end
- if YouCanGar > 0:
- 'In the garage there is stored <<GarTorgItem>> One unit of product, with a total capacity 100 One_unit. To, that would be able to sell the product out of the garage, you have to transfer it to your room.'
- if tovarL >= 30:
- 'Home and so all culled product, transfer nowhere.'
- elseif tovarL < 30:
- perenGarTov = 30-tovarL
- 'I could move out of the garage <<perenGarTov>> One unit of the goods in the room.'
- if GarTorgItem > 0:
- if GarTorgItem >= perenGarTov:
- act 'move <<perenGarTov>> One unit of product':
- cls
- minut += 60
- tovarL += perenGarTov
- GarTorgItem -= perenGarTov
- gs 'stat'
- 'You hour dealt with the goods, and transferred it from the garage to the apartment.'
- act 'further':gt $curloc
- end
- end
- if GarTorgItem < perenGarTov:
- act 'move <<GarTorgItem>> One unit of product':
- cls
- minut += 60
- tovarL += GarTorgItem
- GarTorgItem = 0
- gs 'stat'
- 'You hour dealt with the goods, and transferred it from the garage to the apartment.'
- act 'further':gt $curloc
- end
- end
- end
- end
- end
- --- gargazel ---------------------------------
|