Alangara_PRC8/_module/nss/mn_std_tele_plc.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

21 lines
438 B
Plaintext

#include "mn_i_pwfunctions"
void main()
{
object oPC = GetLastUsedBy();
string teleport2 = GetLocalString(OBJECT_SELF, TeleportVar(OBJ_TELEPORT_DESTINATION, 2) );
if (teleport2 == "")
{
// Only one destination
DoTeleport(oPC, OBJECT_SELF);
}
else
{
// Multiple destinations, so should be handled by teleportation portal.
ActionStartConversation( oPC, "", TRUE, FALSE );
}
}