I just enabled ethics system i think, does this system work?
I type [I am evil incarnate
and it says
IRC connection is down

im i missing something
 
So it is , I should of searched more :)
using System;
2 using Server.Factions;
3
4 namespace Server.Ethics.Hero
5
 
i changed Core/Ethic.cs
false to true
Code:
 public abstract class Ethic
    {
        public static readonly bool Enabled = true;
        public static readonly Ethic Hero = new Hero.HeroEthic();
        public static readonly Ethic Evil = new Evil.EvilEthic();
        public static readonly Ethic[] Ethics = new Ethic[]
        {
            Hero,
            Evil
        };

tried this with test character

join faction go to shrine say [i will defend the virtues
but it still says

IRC connection is down
 
Back