9 lines
192 B
Plaintext
9 lines
192 B
Plaintext
|
//Make PC read the description on a door when he interacts with it
|
||
|
void main()
|
||
|
{
|
||
|
object oPC=GetClickingObject();
|
||
|
object oExamine=OBJECT_SELF;
|
||
|
|
||
|
AssignCommand(oPC,ActionExamine(oExamine));
|
||
|
}
|