The easy way to cheat / modify slaves in 0.8.3.0+
1. Press F12 in Google Chrome
2. Select Console tab
3. Paste this blob of code
Code:
cheatgirlname = "zahira"
for (const [key, value] of Object.entries(SugarCube.State.active.variables.npc)) {
if (value.hasOwnProperty("girlname")) {
if (value.girlname.toLowerCase() == cheatgirlname.toLowerCase()) {
console.log(value.girlname+' identified as SugarCube.State.active.variables.npc.'+key);
console.log('Modify like this: SugarCube.State.active.variables.npc.'+key+'.age = 40');
}
}
}
4. Replace name on top row of the blob and press enter
5. Read instruction on-screen how to change value.
6. Press key up on keyboard a few times instead of pasting code blob when you want to select a different girl.
The code blob is a simplified version of Milambus similar code shared on Discord.
Edit: Removed cheatgirl shortcut / reference which stopped working for unknown reason.