sc4
Version:
A command line utility for automating SimCity 4 modding tasks & modifying savegames
12 lines (11 loc) • 321 B
JavaScript
// # pipes-flow.js
import * as prompts from '#cli/prompts';
// # pipes()
// Asks the questions needed to generate an optimal pipe layout.
export async function pipes() {
let city = await prompts.city({
argv: true,
message: 'Select the city to generate a pipe layout for',
});
return [city];
}