Amon_PRC8/_module/nss/ls_platedarustet.nss

20 lines
382 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
ExecuteScript ("uberloot", OBJECT_SELF);
int nDiceRoll = d100(1);
if(nDiceRoll <= 03)
{
CreateItemOnObject("platedarusteth1", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 06)
{
CreateItemOnObject("platedarusteth2", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 09)
{
CreateItemOnObject("platedarusteth3", OBJECT_SELF, 1);
}
}