home *** CD-ROM | disk | FTP | other *** search
- if(_root.bisha_chen == false)
- {
- if(_root.fangxiang == 1 and _root.enemy_fangxiang == 1)
- {
- if(_root.enemy._x < 500)
- {
- _root.enemy._x += 15;
- }
- else
- {
- _root.chen._x -= 15;
- }
- }
- else if(_root.fangxiang == 2 and _root.enemy_fangxiang == 1)
- {
- if(_root.enemy._x > 50)
- {
- _root.enemy._x -= 15;
- }
- else
- {
- _root.chen._x += 15;
- }
- }
- else if(_root.fangxiang == 2 and _root.enemy_fangxiang == 2)
- {
- if(_root.enemy._x > 50)
- {
- _root.enemy._x -= 15;
- }
- else
- {
- _root.chen._x += 15;
- }
- }
- else if(_root.fangxiang == 1 and _root.enemy_fangxiang == 2)
- {
- if(_root.enemy._x < 500)
- {
- _root.enemy._x += 15;
- }
- else
- {
- _root.chen._x -= 15;
- }
- }
- }
-