Shargast_PRC8/_module/Chapter 2/nss/idcust_ifempty.nss

14 lines
241 B
Plaintext
Raw Normal View History

2024-08-03 14:13:18 -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;
}