8 lines
198 B
Plaintext
8 lines
198 B
Plaintext
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
object oBox = CreateObject(OBJECT_TYPE_PLACEABLE,"bankbox",GetLocation(oPC),FALSE);
|
|
AssignCommand(oPC,DelayCommand(2.0,ActionInteractObject(oBox)));
|
|
|
|
}
|