home *** CD-ROM | disk | FTP | other *** search
- function checkSupplies()
- {
- if(this.hitTest(_parent.hero.hitArea))
- {
- _parent._parent.functions.updateScore(10);
- gotoAndStop(10);
- s = new Sound(this);
- s.attachSound("pickUpSupply");
- s.start();
- _parent.hero.holdingSupplies = 1;
- _parent._parent.database.supplies += 1;
- _parent._parent.heroInfo.supplies = _parent._parent.database.supplies;
- }
- }
-