20 lines
646 B
Plaintext
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);
|
||
|
}
|