Amon_PRC8/_module/nss/ls_bison.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

26 lines
509 B
Plaintext

void main()
{
int nDiceRoll = d100(1);
if(nDiceRoll <= 10)
{
CreateItemOnObject("bisontongue", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 20)
{
CreateItemOnObject("bisonmeat", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 30)
{
CreateItemOnObject("bisonmeat", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 40)
{
CreateItemOnObject("bisonskin", OBJECT_SELF, 1);
}
else if(nDiceRoll <= 60)
{
CreateItemOnObject("bisonskin", OBJECT_SELF, 1);
}
}