hello
how can i enable elf and gargoyle on preaos server?
been checking charactercreation.cs playermobile.cs but i couldnt find
thanks
 
ok thx
[doublepost=1531143856][/doublepost]is it possible to do it other way? i dont understand anything there :d
 
Create a new cs file in your Scripts/Misc/ directory: Features.cs
Code:
namespace Server.Network
{
   public static class Features
   {
      public static void Configure( )
      {
         SupportedFeatures.Value |= FeatureFlags.AOS | FeatureFlags.SA;
      }
   }
}

This is the only way to tell the client to enable those races, it may also enable other unwanted features like the weapon ability book on the paperdoll, etc (though weapon abilities will remain not functional when requested).
 
Back