HoS_PRC8/_mod/_module/nss/npcact_pl_byo.nss
Jaysyn904 e2f4ba74d5 Merged redundant hak files
Merged redundant hak files.  Moved hak scripts into module.  Updated gitignore.  Full Compile.  Added release folder & archive.
2024-12-12 15:02:17 -05:00

24 lines
774 B
Plaintext

///////////////////////////////////////////////////////////////
// npcact_pl_byo - NPC ACTIVITIES 6.0 Profession Merchant
// Merchant Store OnOpen script
// By Deva Bryson Winblood. 7/09/2005
///////////////////////////////////////////////////////////////
#include "npcact_h_merch"
void main()
{
object oMe=OBJECT_SELF;
object oPC=GetLastOpenedBy();
object oPlayer=GetLocalObject(oMe,"oPlayer");
AssignCommand(oPC,fnPurgeInvalids());
//SendMessageToPC(oPlayer,"OPENED by "+GetName(oPC));
if (oPC!=oPlayer)
{ // not a valid opener
AssignCommand(oPC,ClearAllActions(TRUE));
DelayCommand(0.3,DestroyStore(oMe));
SendMessageToPC(oPC,"You were not the one that object was intended for!");
} // not a valid opener
}