10 lines
264 B
Plaintext
10 lines
264 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oEmbark = GetWaypointByTag("ArcadiaBoardingPoint");
|
||
|
location lEmbark = GetLocation(oEmbark);
|
||
|
|
||
|
TakeGoldFromCreature(100, oPC, TRUE);
|
||
|
AssignCommand(oPC,DelayCommand(1.5,ActionJumpToLocation(lEmbark)));
|
||
|
}
|