You need to install the Fan patch that has all the images and gifs.Why is it only 2MB? where is the original?
Sometimes you get a false positive i get it all the time on my PC and Android you can download it no problem unless the Anti virus simply removes the file that case you need to temporary turn off.Is the file safe to download? i've tried downloading from Catbox, Datanodes and Gofiles all came with a virus warning
it's an html file. with the safety measures of the modern browsers, worst it can do is mining some crypto currency. and you can check if it's doing that by listening your computer's fans.Is the file safe to download? i've tried downloading from Catbox, Datanodes and Gofiles all came with a virus warning
Here is the list of all medalrewards initialized if you want to patch html file yourself like me:OranosDev
You did not initialize the medalrewards, so you can't claim your rewards in the achievements panel. They are undefined, not false.
The "StoryInit" should be perfect for that:
But since I remember it was ok a long time ago (so it's OK with previous saves), I would say... WTF Dev?Java:<<set $endingmedalreward to false>> <<set $lauramedalreward to false>> <<set $carmichaelmedalreward to false>> ...
Another one, in the passage "haley text":
should be <<set $Time to $Time + 1>>Java:<<set $Time to $Time - 1>>
<<set $endingmedalreward to false>>
<<set $lauramedalreward to false>>
<<set $carmichaelmedalreward to false>>
<<set $lunamedalreward to false>>
<<set $leximedalreward to false>>
<<set $ambermedalreward to false>>
<<set $candacemedalreward to false>>
<<set $lolamedalreward to false>>
<<set $sukimedalreward to false>>
<<set $brimedalreward to false>>
<<set $ellamedalreward to false>>
<<set $milamedalreward to false>>
<<set $alettamedalreward to false>>
<<set $marymedalreward to false>>
<<set $lisamedalreward to false>>
<<set $sophiemedalreward to false>>
<<set $ruemedalreward to false>>
<<set $rubymedalreward to false>>
<<set $twins2medalreward to false>>
<<set $twinsmedalreward to false>>
<<set $angelicamedalreward to false>>
<<set $emilymedalreward to false>>
<<set $saffronmedalreward to false>>
<<set $lilithmedalreward to false>>
<<set $carmenmedalreward to false>>
<<set $schoolmedalreward to false>>
<<set $reillymedalreward to false>>
<<set $haleymedalreward to false>>
<<set $penelopemedalreward to false>>
<<set $jademedalreward to false>>
<<set $moniquemedalreward to false>>
<<set $gabriellemedalreward to false>>
<<set $kimberlymedalreward to false>>
<<set $kelseymedalreward to false>>
<<set $amandamedalreward to false>>
<<set $phoebemedalreward to false>>
<<set $blossommedalreward to false>>
They do not have to be set to false in order to be set to true, which only happens at the point it's supposed to in each character's story.Here is the list of all medalrewards initialized if you want to patch html file yourself like me:
JavaScript:<<set $endingmedalreward to false>> <<set $lauramedalreward to false>> <<set $carmichaelmedalreward to false>> <<set $lunamedalreward to false>> <<set $leximedalreward to false>> <<set $ambermedalreward to false>> <<set $candacemedalreward to false>> <<set $lolamedalreward to false>> <<set $sukimedalreward to false>> <<set $brimedalreward to false>> <<set $ellamedalreward to false>> <<set $milamedalreward to false>> <<set $alettamedalreward to false>> <<set $marymedalreward to false>> <<set $lisamedalreward to false>> <<set $sophiemedalreward to false>> <<set $ruemedalreward to false>> <<set $rubymedalreward to false>> <<set $twins2medalreward to false>> <<set $twinsmedalreward to false>> <<set $angelicamedalreward to false>> <<set $emilymedalreward to false>> <<set $saffronmedalreward to false>> <<set $lilithmedalreward to false>> <<set $carmenmedalreward to false>> <<set $schoolmedalreward to false>> <<set $reillymedalreward to false>> <<set $haleymedalreward to false>> <<set $penelopemedalreward to false>> <<set $jademedalreward to false>> <<set $moniquemedalreward to false>> <<set $gabriellemedalreward to false>> <<set $kimberlymedalreward to false>> <<set $kelseymedalreward to false>> <<set $amandamedalreward to false>> <<set $phoebemedalreward to false>> <<set $blossommedalreward to false>>
Have you made sure by looking at her walkthrough?hi, i cant seem to find the solution. it says im not done with kimberly content to trigger christmas event but so far everything for kimberly is done. i think ?
yes i terms of story i done all. walkthrough literally says the story is linear so idk. i unlocked all options in the harem already as of now. even got the spoils of war acheivement alreadyHave you made sure by looking at her walkthrough?
I meant Kimberly's specific walkthrough. If you still can't make it work you can send me the save and I'll have a lookyes i terms of story i done all. walkthrough literally says the story is linear so idk. i unlocked all options in the harem already as of now. even got the spoils of war acheivement already
No, but they have to be set in order to be tested in the way you doThey do not have to be set to false in order to be set to true, which only happens at the point it's supposed to in each character's story.
<<if $lilithmedalreward is false>> can not be "true" since $lilithmedalreward is undefined.[[Claim reward!|lilithmedalreward]] can not appear, never, jamais, niemals, en ningún caso.<<if ! $lilithmedalreward>> or <<if $lilithmedalreward == false>> could work (I didn't test), but <<if $lilithmedalreward is false>> can't work without an initialization.Oh you're right lol, Missed that mistake. Thanks for notifying me of itNo, but they have to be set in order to be tested in the way you do
The trouble is that<<if $lilithmedalreward is false>>can not be "true" since $lilithmedalreward is undefined.
So[[Claim reward!|lilithmedalreward]]can not appear, never, jamais, niemals, en ningún caso.
Maybe the test<<if ! $lilithmedalreward>>or<<if $lilithmedalreward == false>>could work (I didn't test), but<<if $lilithmedalreward is false>>can't work without an initialization.