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

  1. // * aggressive attack, always trying to hide
  2.  
  3. //*Combat*
  4.  
  5. IF
  6.     Delay(10)
  7.     !StateCheck(Myself,STATE_INVISIBLE)
  8. THEN
  9.     RESPONSE #100
  10.         Hide()
  11. END
  12.  
  13. IF
  14.     ActionListEmpty()
  15.     See(NearestEnemyOf(Myself))
  16. THEN
  17.     RESPONSE #100
  18.         AttackReevaluate(NearestEnemyOf(Myself),30)
  19. END