Battledale_PRC8/_module/nss/idcust_ifempty.nss
Jaysyn904 4dba880acb Added ACP v4.1
Added ACP v4.1. Full compile.  Updated module name.  Updated release archive.
2024-09-08 18:23:43 -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;
}