10 lines
192 B
Plaintext
10 lines
192 B
Plaintext
|
void main()
|
||
|
{
|
||
|
// Remove some gold from the player
|
||
|
|
||
|
object oPC = GetLastUsedBy();
|
||
|
object oTarget = GetWaypointByTag("Dank_LEAVE");
|
||
|
AssignCommand(oPC, JumpToObject(oTarget));
|
||
|
}
|
||
|
|