Initial commit
Initial commit [v9.7]
This commit is contained in:
21
_module/nss/opn_crpt_spn_sbt.nss
Normal file
21
_module/nss/opn_crpt_spn_sbt.nss
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
#include "nw_i0_generic"
|
||||
|
||||
void main()
|
||||
|
||||
{
|
||||
object oSpawn;
|
||||
|
||||
// Get the creature who triggered this event.
|
||||
object oPC = GetLastOpenedBy();
|
||||
|
||||
// Only fire once.
|
||||
if ( GetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF)) )
|
||||
return;
|
||||
SetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
|
||||
|
||||
// Spawn "skeletalbat".
|
||||
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "skeletalbat", GetLocation(oPC));
|
||||
AssignCommand(oSpawn, DetermineCombatRound(oPC));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user