11 lines
238 B
Plaintext
11 lines
238 B
Plaintext
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
object oPC = GetLastUsedBy();
|
||
|
object oTarget = GetWaypointByTag("DingDong");
|
||
|
AssignCommand(oPC, JumpToObject(oTarget));
|
||
|
DelayCommand(500.0, DestroyObject(OBJECT_SELF));
|
||
|
}
|
||
|
|