RATDOG/_module/nss/at_spn_grn_slime.nss
Jaysyn904 84d583b489 Added Mine & Caverns raise & lower functionality
Added Mine & Caverns raise & lower functionality.  Revamped Level 1 events to match PnP.  Updated Level 1: Core.  Added new Footcatcher trap type. Added Underwater heartbeat to Glop Lake Underwater.  Full compile.
2023-09-16 09:04:37 -04:00

25 lines
683 B
Plaintext

//:: at_spn_grn_slime
//::
//:: Spawns a small green slime
#include "nw_i0_generic"
void main()
{
object oSpawn;
effect eVFX;
object oSelf = OBJECT_SELF;
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
string sName = GetName(oPC);
string sTag = GetTag(oSelf);
// Spawn Small Green Slime.
eVFX = EffectVisualEffect(VFX_COM_BLOOD_CRT_GREEN);
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "zep_greenslimes", GetLocation(oSelf));
AssignCommand(oSpawn, DetermineCombatRound(oPC));
DelayCommand(0.3f, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oSpawn));
SetLocalInt(oPC, "FoundSlime"+sTag, 1);
}