Initial commit
Initial commit. Updated release archive.
This commit is contained in:
19
_module/nss/en5_loading.nss
Normal file
19
_module/nss/en5_loading.nss
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "en5_treasure"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC;
|
||||
object oSpawnPoint;
|
||||
string sDestTag;
|
||||
|
||||
oPC = GetEnteringObject();
|
||||
|
||||
if (GetIsPC(oPC))
|
||||
{
|
||||
sDestTag = GetLocalString(oPC,"Respawn");
|
||||
oSpawnPoint = GetObjectByTag(sDestTag);
|
||||
AssignCommand(oPC,JumpToLocation(GetLocation(oSpawnPoint)));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user