42 lines
810 B
Plaintext
42 lines
810 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
CreateItemOnObject("kumalsnote", oPC);
|
|
|
|
//AddJournalQuestEntry("The Secret of Urgaan of Angarngi", 1, oPC, TRUE, FALSE);
|
|
|
|
AddJournalQuestEntry("CA1 - Swords of the Undercity", 1, oPC, TRUE, FALSE);
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("ent_st_ctscne2b");
|
|
|
|
DestroyObject(oTarget, 0.0);
|
|
|
|
location lTarget;
|
|
oTarget = GetWaypointByTag("wp_ho_entry");
|
|
|
|
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);
|
|
}
|
|
|
|
oTarget = GetObjectByTag("enter_srt_game2");
|
|
|
|
DestroyObject(oTarget, 0.0);
|
|
|
|
}
|
|
|