HoS_PRC8/_mod/_module/nss/sound_holder_hb.nss

11 lines
193 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
void main()
{
int nCount=GetLocalInt(OBJECT_SELF,"nCount");
nCount++;
if (nCount<3)
{
DestroyObject(OBJECT_SELF);
}
else { SetLocalInt(OBJECT_SELF,"nCount",nCount); }
}