2025-04-03 13:38:45 -04:00
|
|
|
void main()
|
|
|
|
{
|
|
|
|
object oPC;
|
|
|
|
|
|
|
|
oPC = GetEnteringObject();
|
|
|
|
if (GetIsPC(oPC) && GetLocalInt(oPC,"Monstrous") == 1)
|
|
|
|
{
|
|
|
|
object oSpawnPoint;
|
|
|
|
oSpawnPoint = GetObjectByTag("EN4_MERespawn");
|
|
|
|
DelayCommand(0.1f,AssignCommand(oPC,JumpToLocation(GetLocation(oSpawnPoint))));
|
|
|
|
}
|
2025-09-05 21:48:32 -04:00
|
|
|
}
|