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

20 lines
646 B
Plaintext

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