night devil
Initiate
- ServUO Version
- Publish 58
- Ultima Expansion
- Third Dawn
Trying to make it when this Mob hits x HP it will spawn lets say zombies. so for example when HP hits 80 spawn 4 zombies and so on maybe 3 other spawns.
I looked at the Champions to see if i could get an idea but lets face it, i didn't lol. any help will be wonderfool.
I looked at the Champions to see if i could get an idea but lets face it, i didn't lol. any help will be wonderfool.
thought this would help get me started but again was wrong:
AddLoot(LootPack.Rich, 3);
AddLoot(LootPack.HighScrolls, 3);
// drop rare item at a % of a chance
}
public override void OnDamage(int amount, Mobile from, bool willKill)
{
if (Utility.RandomDouble() < 0.1)
Dropzombie();
base.OnDamage(amount, from, willKill);
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0);
}