2025-04-03 19:00:46 -04:00
|
|
|
void main()
|
|
|
|
{
|
2025-04-14 07:12:46 -04:00
|
|
|
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
|
|
|
}
|
2025-04-14 07:12:46 -04:00
|
|
|
if(nDiceRoll2 == 77)
|
2025-04-03 19:00:46 -04:00
|
|
|
{
|
2025-04-14 07:12: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
|
|
|
}
|
2025-04-14 07:12:46 -04:00
|
|
|
|
|
|
|
CreateObject(OBJECT_TYPE_PLACEABLE, "HeijanPineLog", GetLocation(OBJECT_SELF), TRUE);
|
|
|
|
}
|