Amon_PRC8/_module/nss/loothealkits.nss

15 lines
313 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
int nCheck = d100(1);
if(nCheck <= 30)
{}
if(nCheck <= 75)
{
CreateItemOnObject("HealKit3", OBJECT_SELF, 1);
}
else if(nCheck <= 90)
{
CreateItemOnObject("HealKit4", OBJECT_SELF, 1);
}
}