Amon_PRC8/_module/nss/summ_rab.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

16 lines
506 B
Plaintext

// Summon Wand
void main()
{
// Define Participants
object oPC = GetItemActivator();
object oTarget = GetItemActivatedTarget();
location lTarget = GetLocation(oTarget);
AssignCommand(oPC, PlaySound("as_hr_x2ghost8"));
object oSpawn1 = CreateObject(OBJECT_TYPE_CREATURE, "thekillerrabbito", lTarget);
AssignCommand(oPC, ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectCutsceneDominated(), oSpawn1));
// ChangeFaction(oTarget, oPC);
}