Amon_PRC8/_module/nss/ls_earanis.nss

24 lines
531 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
//:://////////////////////////////////////////////
//::// Earanis LEWT
//:://///////////////////////////////////////////
void main()
{
int nDiceRoll = d100(1);
if(nDiceRoll <= 10)
{
CreateItemOnObject("Earanis1", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 20)
{
CreateItemOnObject("Earanis2", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 30)
{
CreateItemOnObject("Earanis3", OBJECT_SELF, 1);
}
ExecuteScript("prc_npc_death", OBJECT_SELF);
ExecuteScript("prc_pwondeath", OBJECT_SELF);
}