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