bitburner-src/utils/IPAddress.ts

12 lines
334 B
TypeScript
Raw Normal View History

2021-09-05 01:09:30 +02:00
import { getRandomByte } from "./helpers/getRandomByte";
2019-03-03 04:15:10 +01:00
/**
* Generate a random IP address
* Does not check to see if the IP already exists in the game
*/
2019-03-03 04:15:10 +01:00
export function createRandomIp(): string {
2021-09-09 05:47:34 +02:00
const ip: string = getRandomByte(99) + "." + getRandomByte(9) + "." + getRandomByte(9) + "." + getRandomByte(9);
2019-03-03 04:15:10 +01:00
2021-09-05 01:09:30 +02:00
return ip;
2019-03-03 04:15:10 +01:00
}