[HELP!]Engineer does not work well![HELP!]

Jenova

New Member
I chose the core of engineers
But, however, it does not work it is shown as N / A!
Help me!

There was another question!
I want to build a server!
Please tell me how to write the configuration file!
 
Last edited by a moderator:

Fixious

Test Lead
The Engineer core is unfortunately not enabled at the moment. It was disabled to make some improvements and I really don't expect to see it again anytime soon (unless Volt comes back). The Engineer core is enabled/disabled in each mission file:

Code:
  new SimGroup(MissionItemBans) {
      canSaveDynamicFields = "1";
      Enabled = "1";  // change this to 0 to enable Engineer //
        banEngineerCore = "1";
};

   new SimGroup(EngyLimit) {
      canSaveDynamicFields = "1";
      Enabled = "1";
      limit[0] = 3;// turrets
      limit[1] = 3;// utilities
      limit[2] = 4;// reactors
      limit[3] = 2;// guardians
      limit[4] = 2;// defensive
      limit[5] = 2;// sensors
   };

The first block is already in each Mission file , just set banEngineerCore to 0. The second part you will need to add to each Mission you enable the core on ( except Elegiac , it already has it ) if you want to just mess around with it.
 
Last edited by a moderator:
Top