Rune_PRC8/_module/nss/opa_conv_reassig.nss

20 lines
445 B
Plaintext
Raw Permalink Normal View History

2024-09-13 09:10:39 -04:00
////////////////////////////////////////////////////////////////////////////////
//
// 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);
}