9 lines
261 B
Plaintext
9 lines
261 B
Plaintext
void main()
|
|
{
|
|
TakeGoldFromCreature(1000, GetPCSpeaker(), TRUE);
|
|
object oPC = GetLastSpeaker();
|
|
object oTarget = GetWaypointByTag("BirkaDock"); //or whatever the tag is for your destination waypoint
|
|
AssignCommand(oPC, JumpToObject(oTarget));
|
|
}
|
|
|