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

23 lines
481 B
Plaintext

#include "faction_inc"
void main()
{
object oPC = GetEnteringObject();
if (GetMaster(oPC) != OBJECT_INVALID || !GetIsPC(oPC))
return;
int nFaction = fctn_GetFaction(oPC);
location lJump;
if (nFaction == ANPH_FACTION_NONE)
lJump = GetLocation(GetObjectByTag("ChooseSideLocation"));
else
lJump = fctn_GetFactionDreamLocation(nFaction);
AssignCommand(oPC, ClearAllActions());
AssignCommand(oPC, JumpToLocation(lJump));
}