20 lines
445 B
Plaintext
20 lines
445 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Conversation Pack Animals
|
||
|
// opa_conv_reassig
|
||
|
// by Don Anderson
|
||
|
// dandersonru@msn.com
|
||
|
//
|
||
|
// Reassigns the Pack Box to Another Pack Animal
|
||
|
//
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#include "opa_inc"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oAnimal = OBJECT_SELF;
|
||
|
ReassignBox(oPC, oAnimal);
|
||
|
}
|