18 lines
459 B
Plaintext
18 lines
459 B
Plaintext
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oTarget = GetWaypointByTag("WP_AscalonBoat");
|
|
location lDebark = GetLocation(oTarget);
|
|
string sTag=GetTag(OBJECT_SELF);
|
|
|
|
AssignCommand(oPC,ClearAllActions());
|
|
AssignCommand(oPC,DelayCommand(1.75,ActionJumpToLocation(lDebark)));
|
|
//This next line is intended to reset Kan's conversation for the next voyage
|
|
SetLocalInt(oPC,"sTag",0);
|
|
|
|
SetLocalInt(oPC, "iPirateAttack", 0);
|
|
|
|
}
|