12 lines
288 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
// npcact_cms_tplac
int StartingConditional()
{
object oPC=GetPCSpeaker();
object oTarget=GetLocalObject(oPC,"oCMSTarget");
if (GetObjectType(oTarget)==OBJECT_TYPE_PLACEABLE)
{ // test 1
if (GetHasInventory(oTarget)) return TRUE;
} // test 1
return FALSE;
}