23 lines
423 B
JavaScript
23 lines
423 B
JavaScript
/** @param {import(".").NS } ns */
|
|
// import { EXCLUDE_SERVERS } from "./constants.js";
|
|
|
|
export const EXCLUDE_SERVERS = [
|
|
'home',
|
|
'CSEC',
|
|
'avmnite-02h',
|
|
'I.I.I.I',
|
|
'run4theh111z'
|
|
];
|
|
|
|
for (let index = 0; index < 25; index++) {
|
|
EXCLUDE_SERVERS.push(`home-${index}`);
|
|
}
|
|
|
|
const COMPLETED_FACTIONS = [
|
|
'CyberSec',
|
|
'Netburners',
|
|
'NiteSec',
|
|
'The Black Hand',
|
|
'Aevum',
|
|
'Sector-12'
|
|
]; |