- Requirements
- 57+
Premade Hero's
This system comes in the form of a Hero's Deed!
Give them out, Sell them on a vendor or add to loot!
The deed allows the user to convert to a Hero Build!
21 Hero Builds to choose from!
There are 2 Staff Commands Included!
[SelectHero - will bring up menu for staff without deed!
[GiveHero - will allow staff to target a player to send them menu without a deed!
Easy to Edit Hero Builds : Example Below
This system comes in the form of a Hero's Deed!
Give them out, Sell them on a vendor or add to loot!
The deed allows the user to convert to a Hero Build!
21 Hero Builds to choose from!
There are 2 Staff Commands Included!
[SelectHero - will bring up menu for staff without deed!
[GiveHero - will allow staff to target a player to send them menu without a deed!
Easy to Edit Hero Builds : Example Below
Mage Tamer:
using System.Collections.Generic;
using Server.Mobiles;
namespace Server.Custom.PreMadeHeros
{
internal class MageTamer : IHero
{
public string Title => "Mage/Tamer";
public int Str => 50;
public int Int => 100;
public int Dex => 75;
public List<(SkillName Name, int Val)> SkillList => new List<(SkillName, int)>
{
(SkillName.Magery, 100),
(SkillName.EvalInt, 100),
(SkillName.Meditation, 100),
(SkillName.AnimalTaming, 100),
(SkillName.AnimalLore, 100),
(SkillName.Veterinary, 100)
};
public void ApplyHero(PlayerMobile pm)
{
HeroUtility.ConvertPlayer(pm, this);
}
}
}