RebirthBoi
Member
- Jan 20, 2024
- 127
- 130
- 53
I can call out the console,but seems dont work when I put the code in the blank and Emter at once.dunno what keys you're pressing but CTRL+SHIFT+I does work with Edge
Or hold the "Fn" key while pressing a function key "F12" to get it to work. If your keyboard has an "F Lock" key, press it to enable your function keys.
View attachment 3603905
Valerie SteeleValerica Steele
I went FULL ON DETECTIVE MODE tryna find this woman too. lol. Searched comments on forums with this game, searched 4 credits, and after about 3 hours my stoned ass was like, "Wait just a mf minute now, can i find her by searching (Pornstar named VAL)? Sho' as fuck enough. lol. i gotchu fam.
Am I not allowed to not be sexually attracted to a certain fetish, I was just asking if it's avoidable so I could play the game without wasting timeNTR Hater troll alert.
AH,SO it is,really work now!!!thank you very much again!!!!!!!!!!In "Edge" after entering the code press "Enter", then click on any link in the game to update the variables.
View attachment 3604936
So is it avoidable or not?Am I not allowed to not be sexually attracted to a certain fetish, I was just asking if it's avoidable so I could play the game without wasting time
Technically it's not a paywall issue. Any reproduction of copyrighted material is prohibited unless it falls under fair use, regardless of monetization. The reason it's not pursued by most corporations is because the data's been in on reproduction and pirating for a long time - pirated IP (1) almost never represents a lost sale, (2) advertises the product, (3) generates whale consumers. And that's weighed against the (admittedly small) cost of billed hours in drafting a C&D in the first place.i always wonder, how do games like this, that have paywalls and paywalled content, get away with using obviously copywrite content?
Just hoping they never get noticed?
nice job bro.and If you don't mind, I'd like to ask how you know these console codes.I mean is it some kind of universal console code or you crack it using some html techniques.Just a little curiousHere are some console codes for everyone to enjoy :傻笑:
**: (confidence points)
SugarCube.State.metadata.set("**", 10000)
Money:
SugarCube.State.variables.cash += 1000000
Items:
item2 = Tool kit
item3 = Energy drink
item4 = Whisky
SugarCube.State.variables.item2 = 1
SugarCube.State.variables.item3 = 1
SugarCube.State.variables.item4 = 1
Gallery:
Needs both "Gallery " and "Scene" (Scene0 if there is 1 scene, Scene1 for second scene etc.) to unlock.
Just change the name of character and add "Scene" if needed.
SugarCube.State.metadata.set("KatrinaGallery", true)
SugarCube.State.metadata.set("KatrinaScene0", true)
To view the Patreon cheat code in the console enter this:
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
sorry sisIt's actually sis
Keep in mind I'm a beginner with HTML and Twine SugarCube...
Variables in a twine SugarCube game most always start with the$sigil e.g.$cashor$item1in this game, and are global. Temporary variables start with an underscore e.g._cashand will only be usable within the one passage.
Twinescript variables are javaScript variables,$cashis parsed intoState.variables.cashin order to be accessed (_tempintoState.temporary.temp). HTML as such does not have variables and need to be set using JavaScript.
This kind of parsing happens on multiple levels (in passage when printing naked variables ($cash), in macro arguments, inState.getVar()...). The<<set>>macro parses its contents this way. (e.g. how a variable is set,<<set $cash to 1000>>).
In this game for example the ** or (confidence points) are set usingdocument.getElementById('player_CP')and not the SugarCube<<set>>macro, hence the reasonState.metadata.set("**").
But yeah, most SugarCube games use$variables(can be found in a passage called "StoryInit", used for pre-story-start initialization tasks, like variable initialization (happens at the beginning of story initialization)).
Hence theSugarCube.State.variables....
If you look inside the game code you can find every variable, however, always have this at the back of your mind though;
Using the console command can break the game, so use them at your own risk!
Also, this may lead to;
1. Missing events
2. Triggering events that weren't supposed to happen at certain parts
3. An experience more buggy than it would without using the cheat
Reason: Sometimes a dev sets a max on a variable, meaning if you go over said maximum the game can't process the variable anymore and the player is stuck and can't level up or progress with the story for example.
Lets say the variable love is set to<<set $love to 0, maxLove to 100>>and triggers an event when$loveis at15, now the player uses the console and sets$love to 1000the game can't make sense of the value1000and the event that was suppossed to trigger at$love 15doesn't. Hence the reason player effing up games and think it's a bug...
...anyway, sorry for my lenghty rambling
Voilà:Anyone has the variable name to edit ** ?
can't seem to find it.
Confidence Points. You can get some of them a few times during the early game, but the supply is severely limited.
Console fuckery (all usual disclaimers apply):
Code:SugarCube.State.metadata.set("**", 14000)
Do you know how to not feel indebted towards Idris after asking for his help already ?Here are some console codes for everyone to enjoy
**: (confidence points)
SugarCube.State.metadata.set("**", 10000)
Money:
SugarCube.State.variables.cash += 1000000
Items:
item2 = Tool kit
item3 = Energy drink
item4 = Whisky
SugarCube.State.variables.item2 = 1
SugarCube.State.variables.item3 = 1
SugarCube.State.variables.item4 = 1
Gallery:
Needs both "Gallery " and "Scene" (Scene0 if there is 1 scene, Scene1 for second scene etc.) to unlock.
Just change the name of character and add "Scene" if needed.
SugarCube.State.metadata.set("KatrinaGallery", true)
SugarCube.State.metadata.set("KatrinaScene0", true)
To view the Patreon cheat code in the console enter this:
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.