I write mine dif than you maybe try this? i have no evo's so cant test it. base(name, 0x11C, 0x3E92, AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4)
I just ck in the admin "View all: Shared" i keep track of who I let have the extra Ip account. but my shard is small so i would know if anyone had other accounts. also only I can make 2nd or 3rd accounts.
Maybe let them have and alt account after they complete (quest, skills, or what ever you like) I did this on mine they get 2nd account after they gm all skills.
I think your cap may be too low to use the stat scroll. in Mobile.cs around line 10831 this was where i changed mine:
public void DefaultMobileInit()
{
m_StatCap = Config.Get("PlayerCaps.TotalStatCap", 355); ;
m_FollowersMax = 5;
In AOS.cs around line 1990 is:
SkillMod sk = new DefaultSkillMod(skill, true, bonus);
sk.ObeyCap = true;
m.AddSkillMod(sk);
this.m_Mods.Add(sk);
change it to :
SkillMod sk = new DefaultSkillMod(skill, true, bonus);
sk.ObeyCap...