RATDOG/_module/nss/spawnfiilaar.nss
Jaysyn904 c248874bbc Update to PRC8
Update to PRC8.  Updated tooling (not done).
2024-02-14 10:02:51 -05:00

25 lines
491 B
Plaintext

//:: Sets up Fiilaar for the wererat ambush
void main()
{
//:: Delcare major variables
object oPC = GetPCSpeaker();
object oTarget;
object oSpawn;
location lTarget;
oTarget = GetWaypointByTag("FIILAAR_TURN");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "npc_fiilaar01", lTarget);
//:: Set PC to enemy
SetIsTemporaryEnemy(oPC, oSpawn);
//:: Equip shortbow
DelayCommand(0.0f, ActionEquipMostDamagingRanged());
}