I have a test environment and want to max out the skills of the accounts I create there. I know how to do this through properties but I'm wondering if there is a saved file on my server that I can edit directly to improve character?
 
[global setallskills 120 where playermobile
should do it as a ingame command I think
 
Ahh ok glad you got it to work, since it didnt really want to work for myself as I tested it quickly lol

So yea I altered a small script, should work fine just in case I will leave it here still
C#:
using Server.Mobiles;

namespace Server.Custom.SkillLevelOnLogin
{
    public static class SkillLevelOnLogin
    {
        private static double skilllevel = 120d;
        public static void Configure()
        {
            EventSink.Login += OnLogin;
        }

        private static void OnLogin(LoginEventArgs e)
        {
            foreach(var skill in e.Mobile.Skills)
                skill.Base = skilllevel;
        }
    }
}
 
Back