home *** CD-ROM | disk | FTP | other *** search
- // *Spellcaster slayer script
- // * Mar 22, 2000.
- // * Brent Knowles
- // * User of this script will target attacks against spell-casters first.
-
- //*Combat*
-
- //*target spell-casters first, first with ranged weapons (if at range)
- // * and then with melee weapons
- IF
- ActionListEmpty()
- OR(4)
- See(NearestEnemyOfType([0.0.0.MAGE_ALL]))
- See(NearestEnemyOfType([0.0.0.CLERIC_ALL]))
- See(NearestEnemyOfType([0.0.0.DRUID_ALL]))
- See(NearestEnemyOfType([0.0.0.BARD_ALL]))
- !Range(LastSeenBy(Myself),10)
- THEN
- RESPONSE #100
- EquipRanged()
- AttackReevaluate(LastSeenBy(Myself),30)
- END
-
- IF
- ActionListEmpty()
- OR(4)
- See(NearestEnemyOfType([0.0.0.MAGE_ALL]))
- See(NearestEnemyOfType([0.0.0.CLERIC_ALL]))
- See(NearestEnemyOfType([0.0.0.DRUID_ALL]))
- See(NearestEnemyOfType([0.0.0.BARD_ALL]))
- THEN
- RESPONSE #100
- EquipMostDamagingMelee()
- AttackReevaluate(LastSeenBy(Myself),30)
- END
-
- // * standard combat
-
- //*Combat*
-
- IF
- ActionListEmpty()
- Help([PC])
- THEN
- RESPONSE #100
- AttackReevaluate(LastAttackerOf(LastHelp(Myself)),60)
- END
-
- IF
- ActionListEmpty()
- See(NearestEnemyOf(Myself))
- !Range(NearestEnemyOf(Myself),10)
- THEN
- RESPONSE #100
- EquipRanged()
- AttackReevaluate(NearestEnemyOf(Myself),30)
- END
-
- IF
- ActionListEmpty()
- See(NearestEnemyOf(Myself))
- THEN
- RESPONSE #100
- EquipMostDamagingMelee()
- AttackReevaluate(NearestEnemyOf(Myself),30)
- END