Lankhmar_PRC8/_module/nss/cnv_tport_bhrbr1.nss

35 lines
561 B
Plaintext
Raw Normal View History

2025-04-03 12:54:47 -04:00
void main()
{
object oPC = GetPCSpeaker();
object oTarget;
location lTarget;
oTarget = GetWaypointByTag("WP_HarborShp1");
lTarget = GetLocation(oTarget);
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
oTarget=GetFirstFactionMember(oPC, FALSE);
while (GetIsObjectValid(oTarget))
{
AssignCommand(oTarget, ClearAllActions());
AssignCommand(oTarget, ActionJumpToLocation(lTarget));
oTarget=GetNextFactionMember(oPC, FALSE);
}
//AssignCommand(oPC, TakeGoldFromCreature(5, oPC, TRUE));
FadeToBlack(oPC);
FadeFromBlack(oPC);
}