Fixed random hang at log on for single player. Fixed class title function in Markshire Nomenclature script. Fixed faction melee that ensued if player was killed by defender faction in town. Updated most humanoids to use new class title function. Full compile.
12 lines
281 B
Plaintext
12 lines
281 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))));
|
|
}
|
|
} |