Advertisement
Guest User

Untitled

a guest
Jul 15th, 2024
363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.03 KB | None | 0 0
  1. {
  2.     general: {
  3.         enabled: true,
  4.  
  5.         // Enables verbose logging for debugging. And I mean *verbose*... It will log *everything*; raid times, train
  6.         // schedules, and every existing and newly created bot spawn wave in the system.
  7.         debug: false,
  8.     },
  9.  
  10.     raidTimes: {
  11.         // Override raid times for all locations, ignoring custom times set for individual locations.
  12.         overrideAll: true,
  13.  
  14.         // Override raid times options. Used for all maps, but only when the above `overrideAll` is set to `true`.
  15.         //
  16.         // These are examples of how to use the various options. If more than one option is provided, the weights are
  17.         // used to determine how often each object is used. The higher the weight, the more often it is used relative to
  18.         // the others.
  19.         //
  20.         // The minutes and weight options can be a single number, or an object with min and max values which will be
  21.         // used to generate a random number between the two.
  22.         //
  23.         override: [
  24.             // { minutes: 60, weight: 10 }, // 60 minute raid, used 10 times more often than a weight of 1.
  25.             // { minutes: 30, weight: { min: 2, max: 5 } }, // 30 minute raid, used 2-5 times more often than a weight of 1.
  26.             // { minutes: { min: 15, max: 20 }, weight: 1 }, // 15-20 minute raid, used as often as any other weight of 1.
  27.  
  28.             // If all you want is a single long raid time, you can uncomment the following line and comment out or
  29.             // delete the three other lines above.
  30.             { minutes: 360, weight: 1 }, // 6 hour raid (360 minutes).
  31.         ],
  32.  
  33.         // Custom raid times for specific locations. Used when `overrideAll` is set to `false`.
  34.         // The option can be a number, or an object containing minutes and weight options as described above.
  35.         customTimes: {
  36.             customs: 40,
  37.             factoryDay: 19,
  38.             factoryNight: 25,
  39.             interchange: 40,
  40.             laboratory: 35,
  41.             lighthouse: 40,
  42.             reserve: 40,
  43.             groundZero: 27,
  44.             shoreline: 35,
  45.             streets: 50,
  46.             woods: 40,
  47.         },
  48.  
  49.         // Override scav raid times?
  50.         overrideScav: true,
  51.     },
  52.  
  53.     trainSchedule: {
  54.         // Enables the automatic train schedule feature. This automatically generates a schedule for the train that fits
  55.         // within the raid time, and ensures the train arrives with enough time for players to extract. It's *highly*
  56.         // recommended to leave this enabled.
  57.         auto: true,
  58.  
  59.         static: {
  60.             // All of the following train schedule options are only used when `auto` is set to `false`.
  61.             //
  62.             // WARNING:
  63.             // - If you don't know what you're doing, don't touch these options. Use the auto schedule feature instead.
  64.             // - If the sum of the latest arrival time, wait time, train amimation time, and extraction time is greater
  65.             //   than the resolved raid time, the train will not arrive in time for you to exit the raid.
  66.             // - ABSOLUTLY NO SUPPORT WILL BE PROVIDED FOR USING THIS FEATURE. YOU ARE ON YOUR OWN. ¯\_(ツ)_/¯
  67.             //
  68.             // NOTES:
  69.             // - Setting `arriveEarliestMinutes` to 20 will have the train arrive (at earliest) 20 minutes into raid.
  70.             // - Setting `trainWaitSeconds` to 120 will have the train wait 120 seconds after arriving before departing.
  71.             // - The mod will do it's best to ensure that the latest arrival time lands within the raid time if it's
  72.             //   been set to a time later than the raid time, but I make no guarantee it will work.
  73.             // - To have the train arrive at a specific time, every time, set `arriveEarliestMinutes` and
  74.             //   `arriveLatestMinutes` to the same value.
  75.             // - The defaults are the same as live; 20, 25, 420.
  76.             arriveEarliestMinutes: 20,
  77.             arriveLatestMinutes: 25,
  78.             trainWaitSeconds: 420,
  79.         },
  80.     },
  81. }
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement