home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 61 / CDPowerplay61Disc2.iso / data1.cab / hd0_scripts / Text / generic1.baf < prev    next >
Encoding:
Text File  |  2000-10-12  |  253 b   |  16 lines

  1. // * Attack enemies.
  2.  
  3. //*Combat*
  4. IF
  5.     AttackedBy([ANYONE],DEFAULT)
  6. THEN
  7.     RESPONSE #100
  8.         AttackReevaluate(LastAttackerOf(Myself),30)
  9. END
  10.  
  11. IF
  12.     See(NearestEnemyOf(Myself))
  13. THEN
  14.     RESPONSE #100
  15.         AttackReevaluate(NearestEnemyOf(Myself),30)
  16. END