Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

View File

@@ -0,0 +1,54 @@
#include "x0_i0_partywide"
void main()
{
object oTarget;
int nInt;
object oPC = GetPCSpeaker();
// Give 350 experience (to party) to the PC.
GiveXPToAll(oPC, 10);
oTarget = GetObjectByTag("Black");
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Black")));
oTarget = GetObjectByTag("Black");
nInt = GetObjectType(oTarget);
oTarget = GetObjectByTag("Black");
DestroyObject(oTarget, 3.0);
oTarget = GetObjectByTag("Cohort1");
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Black")));
oTarget = GetObjectByTag("Cohort1");
nInt = GetObjectType(oTarget);
oTarget = GetObjectByTag("Cohort1");
DestroyObject(oTarget, 3.0);
oTarget = GetObjectByTag("Cohort2");
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Black")));
oTarget = GetObjectByTag("Cohort2");
nInt = GetObjectType(oTarget);
oTarget = GetObjectByTag("Cohort2");
DestroyObject(oTarget, 3.0);
oTarget = GetObjectByTag("Cohort3");
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Black")));
oTarget = GetObjectByTag("Cohort3");
nInt = GetObjectType(oTarget);
oTarget = GetObjectByTag("Cohort3");
DestroyObject(oTarget, 3.0);
oTarget = GetObjectByTag("ropecoil");
DestroyObject(oTarget, 0.1);
}