20 lines
427 B
Plaintext
20 lines
427 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Conversation Pack Animals
|
|
// opa_conv_give
|
|
// by Don Anderson
|
|
// dandersonru@msn.com
|
|
//
|
|
// Place the Pack Box on the Ground
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "opa_inc"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oAnimal = OBJECT_SELF;
|
|
AccessBox(oPC, oAnimal);
|
|
}
|