f69plop

New Member
May 22, 2020
10
14
there is also 2 others things that are broken : one of the store in the market store (anvil restraints) and one in the pangolin pharma if the shop owner (Ciara/Ciar) is a male...
the code for shop is like shop(id), but it is used as shop(name). Changing the name with the console command (type F12 in firefox choose cosole and type)
window.saveData.characters['Ciara'].name='Ciara'
fix it
for the anvil restraints, editing the code by replacing
"shop(trestrains)npc[npc1][rels]:addl:jobknown",
to
"shop(trestrains)",
make it work again,

also there is tons of deobfuscator online, some works better than other, my bests shots were by extracting the javascript to a file (grep var "Debasing Grounds v0480.html" > one.js) then put it on online deobfuscator (don't remember which )


Still a great game, and many thanks to the author
 

f69plop

New Member
May 22, 2020
10
14
how did you do this? exactly?
If you just want the quick result, just download the 7z in the post, but if you're curious :
I extracted the javascript to a js file (in a linux console, you can have on in windows just install WSL (windows subsystem linux) or WSL2 via the microsoft store, shift right click in directory (Open linux shell here then I typed the command )
grep var "Debasing Grounds v0480.html" | head 1 > script480.js

command explain
-> grep: search pattern or string in file
-> var: is the pattern i search
-> "Debasing Grounds v0480.html": is the file i seach (I can give more than one, or even do a recursive search in directories with the good options)
-> |, by default grep print its result to the standard output of the console, i tell the shell to put that into the input of the next command
-> head -1, I only keep the first line (all the js is in only one file), tail -1 would keep the last
-> > script480.js, like grep head output to the standard ouput, the visible one, i tell the shell to write it to script480_obs.js instead

then I putted the javascript to an oneline deobfuscator, don't remember witch, then i saved the 'clean' javascript to script480.js
then I modified the html to take the script and style to external file, it's easier to work on separated files, notably the layout
then I used firefox profiler to see where the code was loosing time, go to an option you know it will take abonormal time (strip for an npc) F12 -> performance, start recording, click on strip seductively, stop recording when the screen has updated, check where it take too much time (JSON.parse)
then I studied the code
then I patched it with a thing i don't like in code : using a global variable to store the state (the 2 function setSave/getSave).
then I coded a little perl program to do the search & replace
so using the previous linux shell
$./patch.pl script480.js > script480_patched.js
command explain :
./, by default current directory is not in the path where the shell seach command, . is the current directory, / the directory separator
patch.pl, the name of the script program I call
script480.js, the file i want the patcher to work on,
> script480_patched.js, the script print to the standard output, i tell the shell to redirect that to the file

here is the final result, it's 4 file, my patcher for the curious (not needed), the javascript patched for the faster game, and some corrections (shop not working in the original 480), and the html with a different layout (date left of button, the npc just right of the PC)
I was thinking of moving the logo to the right to keep the date maximum left, but i'm happy with it.
there is also my submiss function, i reverted it to the original behaviour, but for my play I put it to 150, to allow more submission; by default the total submission the pc can have, is 100 if you have 50 holder, 50 Ed, if you gain 1 David, it goes 49.5 Holder, 49.5 Ed, 1 David. If you change var maxTotalSubmission = 100; to 150, the max per npc is still 100, but you can have 75 Holder 25 David 50 Ed. Be warned, by changing this value some "bad end" are more likely to be difficult to get out than the vanilla value.
 

f69plop

New Member
May 22, 2020
10
14
Is the Arena broken for anybody else? Can't sign up for fights because Raze always already has enough fighters.
it's not completely broken, the time is not the morning but just after the fight :p, you can watch it, then you can participate. You will have some time to prepare.
 
  • Like
Reactions: aaabbbpriv24

CuddlyTeddy

New Member
Apr 11, 2023
4
0
Having issues even getting started. When I pick my attributes, on the bottom it claims to assign 10. Then when I pick one, it goes to assign 11, up to 15. Then it just stops with no sign on how to continue. No matter how many or how few attribute points I assign, it never gives an option to continue. I should mention I am playing on my phone browser on the online option, haven't run into this problem on any other online html game
 

CuddlyTeddy

New Member
Apr 11, 2023
4
0
there should be a button at the bottom of the screen, maybe you'll have to scroll down.
That's what I'm referring to. The button at the bottom of the screen is not giving me an option to continue. I could name my character and pick their height and stuff, continue from there, then on the fetish page, it's grayed out, saying assign 10 points, then when I click one, it goes up to eleven, if I pick 5, it goes up to 15. But clicking 6, it stays at 15. No matter how many i pick, 0-all of them, the continue button is grayed out and I can't get past the fetish page
 

CuddlyTeddy

New Member
Apr 11, 2023
4
0
the fetish add to the total you can spend in attractiveness, strength, vigor, intelligence... just take 5 fetishes, and boost your starting stat with the slider :)
Ahhhh omg I feel dumb now haha. I was picking not enough on the sliders, I see now, thank you!!!
 

KORJ666

New Member
Dec 30, 2017
11
15
I encountered this problem.
Versions of the game 470-480 work with errors on Google Chrome and normally in Firefox. (Examples: blank screen when exiting to the save menu)
I'm not sure if the problem is in the game itself.

Has anyone encountered something similar?
P.S.: version 450 works correctly in both browsers.

P.s.s: who has contact with the author, hint to him that it would be nice if next to the names of the characters, it would be convenient to see an icon of their gender, or make the color of the names depending on it. Because I don’t know about others, but for me the list of names of characters in the location is just a set of letters. In order to immediately remember those with whom the character has contacted, you need a super memory. So the presence of hints would be preferable, as is done in other similar projects.
 
Last edited:

poplan

Member
Jan 24, 2019
252
527
The image files are not included with all of the 0.4.8 downloads. I'd prefer to have all the images local to me, earlier versions included them in the archive.
 
3.80 star(s) 29 Votes