13 lines
371 B
Plaintext
13 lines
371 B
Plaintext
void main()
|
|
{
|
|
object oPC=GetEnteringObject();
|
|
location lDest=GetLocation(GetObjectByTag("pc110204aa"));
|
|
object oDevice=GetObjectByTag("place_pc110204a");
|
|
if(GetTag(GetFirstItemInInventory(oDevice))=="pcitem110204a")
|
|
AssignCommand(oPC,ActionJumpToLocation(lDest));
|
|
|
|
else
|
|
lDest=GetLocation(GetObjectByTag("wp_pc110204a"));
|
|
AssignCommand(oPC,ActionJumpToLocation(lDest));
|
|
}
|