PoA_PRC8/_module/nss/idcust_ifempty.nss

14 lines
241 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
int StartingConditional()
{
object oPlayer = GetPCSpeaker();
int iSlot = GetLocalInt( OBJECT_SELF, "iSlot");
object oItem = GetItemInSlot( iSlot, oPlayer);
if( GetIsObjectValid( oItem))
return FALSE;
else
return TRUE;
}