Amon_PRC8/_module/nss/heijanpinedies3.nss
Jaysyn904 67bb78d085 Added 60 lvl class.2da
Added 60 lvl class.2da.  Associated PoA Expanded spells & ability haks.  Full compile.
2025-04-14 07:12:46 -04:00

20 lines
599 B
Plaintext

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));
}
if(nDiceRoll2 == 77)
{
CreateObject(OBJECT_TYPE_ITEM, "RhetorSealRing", GetLocation(OBJECT_SELF));
DelayCommand(0.5, FloatingTextStringOnCreature("Something shiny falls from a bird's nest.", oPC));
}
CreateObject(OBJECT_TYPE_PLACEABLE, "HeijanPineLog2", GetLocation(OBJECT_SELF), TRUE);
}