Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-08-08 16:22:17 -04:00
parent 51a2a1286e
commit 22947ad4b6
6511 changed files with 6765205 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
void main()
{
object oPC = GetPCSpeaker();
object oTarget = GetObjectByTag("mob_statue");
location lTarget = GetLocation(oTarget);
object oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "witchammy");
SetLocalInt(OBJECT_SELF, "drowking", 2);
DestroyObject(oItemToTake);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_POLYMORPH), GetLocation(oTarget));
DestroyObject(oTarget, 0.5);
object oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "drowprincess", lTarget);
DelayCommand(2.0,AssignCommand(oSpawn, ActionStartConversation(oPC, "drow_princess")));
}