Amon_PRC8/_module/nss/heijanpinedies.nss

19 lines
597 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
object oPC = GetLastAttacker();
int nDiceRoll2 = d100(1);
if(nDiceRoll2 == 50)
{
CreateObject(OBJECT_TYPE_ITEM, "RhetorSealRing", GetLocation(OBJECT_SELF));
DelayCommand(0.5, FloatingTextStringOnCreature("Something shiny falls from a bird's nest.", oPC));
2025-04-03 19:00:46 -04:00
}
if(nDiceRoll2 == 77)
2025-04-03 19:00:46 -04:00
{
CreateObject(OBJECT_TYPE_ITEM, "RhetorSealRing", GetLocation(OBJECT_SELF));
DelayCommand(0.5, FloatingTextStringOnCreature("Something shiny falls from a bird's nest.", oPC));
2025-04-03 19:00:46 -04:00
}
CreateObject(OBJECT_TYPE_PLACEABLE, "HeijanPineLog", GetLocation(OBJECT_SELF), TRUE);
}