Ah... right. You would do it in a javascript repl or console, or wherever you run code. It will print the values and then you paste that text into... imagesPersistent.txt. Or translate it to your language of choice. I just prefer javascript because it's simple and easy to run anywhere. I believe copy is browser-only though. If from node, you could presumably just do an await writeFile with the results. Matter of fact I think I'll write a script to do just that so I don't lose it again.
- copy just copies to clipboard.
- Create an Array of n items (let's say 156, for example).
- Concat the string value, current position + 1 and string "s"
- Convert the list of n items into a comma separated string.
- This will give you n items of the format "Mtr_P1s" with incrementing numbers.
JavaScript:
const n = 156;
copy(
Array(n)
.fill(`Mtr_P`)
.map((m, i) => {
return `${m}${i + 1}s`;
})
.join(",")
)
You could do the same (remove trailing "s") with "Liz_P" (1-111), "SC_P", "Sec_P", "EX_P"... But I originally put this in a spoiler because it does ruin some of the fun of the game. I just can't get over the wack interface.
Once the file is updated and game restarted (maybe required), images are in pic album if you click the star icon. Not sure why the star icon, but whatever.
AppData/LocalLow/NosyFellow/NTRMobile/imagesPersistent.txt