HoS_PRC8/_mod/_module/nss/npcact_cms_cthf.nss

15 lines
409 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
// npcact_cms_cthf - Thieving
#include "npcact_h_money"
int StartingConditional()
{
object oPC=GetPCSpeaker();
object oTarget=GetLocalObject(oPC,"oCMSTarget");
object oItem=GetLocalObject(oPC,"oCMSItem");
if (GetObjectType(oTarget)==OBJECT_TYPE_CREATURE&&oTarget!=oPC)
{ // self target
if (GetLocalInt(oPC,"bCMSDoThief")==TRUE) return TRUE;
} // self target
return FALSE;
}