13 lines
282 B
Plaintext
13 lines
282 B
Plaintext
|
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))));
|
||
|
}
|
||
|
}
|