Shargast_PRC8/_module/Chapter 2/nss/npc_onxdestroy.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

17 lines
423 B
Plaintext

void main()
{
object oEntered = GetEnteringObject();
int nGetIsPC = GetIsPC(oEntered);
if(nGetIsPC == FALSE) //Checks if it's a creature or a PC
{
DestroyObject(oEntered); //If it's a creature, it will destroy it
//You can put something else here (ie:visual effect)
}
else
{
//if(nGetIsPC == TRUE)
//In case you want to have it speak a string like "approved" or something
}
}