Problem with MDA Bogie Box Wagon

alexl102

Learning... slowly!
I've got an issue with eldavo's MDA Bogie Box Wagon - it keeps flagging up the lines in the config that refer to the numberit and chameleon livery system as being not permitted in a container of type 'traincar'.

How do I resolve this? In the past with certain things I've just deleted the offending parts but this is about liveries & numbering so not really an option.

Cheers
 
In the config.txt change the entries for numberit and chameleon to look like this
Code:
bluestar_coupler                        "60"
bluestar_brake                          "4"

extensions
{
  numberit-75134
  {
    numberit_prefix                     500
    numberit_min                        201
    numberit_max                        300
  }
  
  chameleon-75134
  {
    chameleon_default_liveries          "EWS_ex-works$1#EWS_weathered$4#EWS_dirty$4"
  }
  x_script_debugging                    "OFF"
}

max_permitted_speed                     "75mph"
don't forget to delete the line starting with x-script-debugging near the end of the config.

In the file mda.gs search for the following part, and add the part marked in red.
Code:
    void Init(void) {
        inherited();

        string s = GetAsset().GetConfigSoup()[COLOR=#ff0000].GetNamedSoup("extensions")[/COLOR].GetNamedTag(MDAConstants.DEBUG_SWITCH);
        if (s == MDAConstants.DEBUG_SWITCH_TRUE) MDAConstants.debug = true;

        if (!MDAConstants.copyrightDone) {
Peter
 
Back
Top