F A Q of YAPS:
==============


=========================================================
	cybergothi - Yet Another Pet Simulation 1.0
		(single player)

	by Sascha 'CyberTeddy' Schroeder
	www.cyber-inside.de 

		NO need of MYSQL
	    NO WARRANTY - use of own risk :-P

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
tested on
Safari, Firefox

- LOCALHOST: Mac Os 10.4.11, MAMP server, Apache/2.0.59 (Unix), PHP/4.4.4
- LOCALHOST: Win XP, AppServ, Apache/2.0.59 (Win32), PHP/4.4.7
- ONLINE SERVER: kontent.de, Linux, Apache/2.0, PHP/4.4.4
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_


FURTHER NOTES:

* you need the rights to write into some files:
  - set chmod 775 or chmod 777 to following files:
   	+ bladder
	+ energie
	+ fun
	+ hungry
	+ hygien
	+ social
	+ nameofpet

=========================================================


Q: how do I start the cybergotchi .. YAPS?
A: upload the folder 'cybergotchi' to your webspace
   and type: http://www.your-server.xy/cybergotchi


Q: whats with the mood?
A: the mood reflects the energy bar.

Q: whats with the 5 bars (6 with energy)?
A: you have (a energy,) a hungy, a fun, a bladder, a hygien and a social 
   bar. the blue color indicates the 'fullnes' of the bars. 
   the more blue you have, the better it is.

Q: are the actions depending on each other?
A: yes. for e.g. the mood reflects the energy bar. to get energy you have
   to feed the little fellow. but if you feed to much, the pet must go to 
   the toilett (bladder). yeah, the pet gets dirty as well (hygien). to 
   bladder costs energy as well. if you bladder to much, the pet gets 
   hungry again.. and so on, and so on...

Q: how do i turn on the energy bar?
A: have a look into the status_show.php at the comment: 
        " // the energy bar is NOT showing. "

Q: I just can feed snacks, whats with the other stuff?
A: yeah.. i didn't implement the other food-things..yet,
   but its easy to do so:
   have a look into action.php and search for:
   
        "// HUNGRY -begin
         case "hungry": "

   there U can choose the food to feed. 
   make a link for e.g pizza: 
        <a href='action.php?action=hungry_pizza'>Pizza</a>

  further down there is a case called " case 'hungry_pizza' ".
  copy all from " case 'hungry_snack' " to case 'hungry_pizza'.
  BUT : add or sub more 'points': 
	example: bcmath-action($status_old[$x],YOUR-NUMBER-HERE);
	(how bcsub or bcadd works, please look into the php manual.)

   e.g.: 
   a pizza gives MORE energy: bcadd($energie_old[$x],15);  
   a pizza makes MORE fully: bcadd($hungry_old[$x],15); 
   if you eat to much pizza U must shit MORE: bcsub($bladder_old[$x],15); 
         - remember: FULL bar: good - EMPTY bar critical , therefore BCSUB!
   if you shit much U get more dirty: bcsub($hygien_old[$x],10); 
         - remember: FULL bar: good - EMPTY bar critical , therefore BCSUB!
   

 



