Files
Anphillia_PRC8/_module/nss/plc_link_onused.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

15 lines
392 B
Plaintext

#include "color_inc"
void main()
{
object oOther = GetLocalObject(OBJECT_SELF, "PLC_LINK_OTHER");
if (!GetIsObjectValid(oOther))
{
SendMessageToAllDMs(COLOR_CODE_RED + "Link " + GetName(OBJECT_SELF) + " in " + GetName(GetArea(OBJECT_SELF))+ " has no other end."+ COLOR_CODE_END);
}
else
{
AssignCommand(GetLastUsedBy(), JumpToObject(oOther));
}
}