WoR_PRC8/_module/nss/ruins_teleport_1.nss

11 lines
172 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
void main()
{
object oPC = GetEnteringObject();
if(GetIsPC(oPC)) {
AssignCommand(oPC, JumpToObject(GetWaypointByTag("RUINS_3RD_1")));
}
else {
//Do Nothing
}
}