UW2_PRC8/_module/nss/idcust_ifempty.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

14 lines
241 B
Plaintext

int StartingConditional()
{
object oPlayer = GetPCSpeaker();
int iSlot = GetLocalInt( OBJECT_SELF, "iSlot");
object oItem = GetItemInSlot( iSlot, oPlayer);
if( GetIsObjectValid( oItem))
return FALSE;
else
return TRUE;
}