Amon_PRC8/_module/nss/ls_undeadhraski.nss

11 lines
333 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
int nDiceRoll2 = d100(1);
if(nDiceRoll2 == 50)
{
object oPC = GetLastAttacker();
CreateObject(OBJECT_TYPE_ITEM, "HBSword", GetLocation(OBJECT_SELF));
DelayCommand(0.5, FloatingTextStringOnCreature("The burial sword slips from the Undead Hraski's Deathgrip, and falls to the ground.", oPC));
}
}