23 lines
329 B
Plaintext
23 lines
329 B
Plaintext
#include "nw_i0_plot"
|
|
|
|
|
|
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
oTarget = GetWaypointByTag("WP_Balkan_Beach");
|
|
|
|
AssignCommand(oPC, ClearAllActions());
|
|
|
|
oTarget = GetWaypointByTag("WP_Balkan_Beach");
|
|
|
|
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToObject(oTarget)));
|
|
|
|
SetPLocalInt(oPC, "BoxQuest", 2);
|
|
|
|
}
|
|
|