Added Daz's persistent NUI storage. Added instanced player room at the Inn of the Flying Monkey. Added PnP cockatrice & dire weasel. Full compile.
9 lines
193 B
Plaintext
9 lines
193 B
Plaintext
//Make PC read the description on a placeable when he interacts with it
|
|
void main()
|
|
{
|
|
object oPC=GetLastUsedBy();
|
|
object oExamine=OBJECT_SELF;
|
|
|
|
AssignCommand(oPC,ActionExamine(oExamine));
|
|
}
|