home *** CD-ROM | disk | FTP | other *** search
- function checkCrocAction()
- {
- if(100 >= actionSpeed)
- {
- gotoAndStop(35);
- }
- else if(100 < actionSpeed and actionSpeed < 200)
- {
- gotoAndStop(196);
- }
- else if(200 < actionSpeed and actionSpeed < 300)
- {
- gotoAndStop(229);
- }
- else if(actionSpeed < 300)
- {
- gotoAndStop(35);
- actionSpeed = _parent._parent.database.crocSpeed / 3;
- }
- }
-