Rune_PRC8/_module/nss/runeoregemdeath.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

19 lines
247 B
Plaintext

//Put this OnDeath
void main()
{
object oPC = GetLastKiller();
if (!GetIsPC(oPC)) return;
if (d100()<=10)
{
CreateItemOnObject("runeore", OBJECT_SELF);
if (d100()<=50)
{
CreateItemOnObject("runegem", OBJECT_SELF);
}
}
}