cooldevo

Active Member
Jan 30, 2021
895
1,068
211
For the chokers, the "if" to see if you own the chokers is looking for the wrong matches. On line 45202 it's doing an 'if' statement:

HTML:
if $wardrobe.hasAny('choker1', 'choker2', 'choker3', 'choker4', 'choker5', 'chokerdiamond', 'collar1', 'collar2')
But the items listed in the wardrobe are actually called:
  • toy-choker1
  • toy-choker2
  • toy-choker3
  • toy-collar1
  • toy-collar2
so they will never match. If you replace all of line 45202 with the below, then it will work, at least until a future bugfix clears it up.

HTML:
<<if $wardrobe.hasAny('toy-choker1', 'toy-choker2', 'toy-choker3', 'toy-choker4', 'toy-collar1', 'toy-collar2') or $access.hasAny('toy-choker1', 'toy-choker2', 'toy-choker3', 'toy-choker4', 'toy-collar1', 'toy-collar2')>><<link "Show off my choker">><<less "subdom" 1>><<add "open" 1>><<add "goodgirl" 2>><<pickup $mail "Slifire Mission 4 Option 1" 1>><<pickup $mail "Slifire Mission 4 Choice" 1>><<script>>
 

youraccount69

I'm like a karate chop
Donor
Dec 30, 2020
9,066
4,157
436
BecomingPromQueen-0.7
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Malorn

Newbie
Mar 9, 2018
28
45
157
For the chokers, the "if" to see if you own the chokers is looking for the wrong matches. On line 45202 it's doing an 'if' statement:

HTML:
if $wardrobe.hasAny('choker1', 'choker2', 'choker3', 'choker4', 'choker5', 'chokerdiamond', 'collar1', 'collar2')
But the items listed in the wardrobe are actually called:
  • toy-choker1
  • toy-choker2
  • toy-choker3
  • toy-collar1
  • toy-collar2
so they will never match. If you replace all of line 45202 with the below, then it will work, at least until a future bugfix clears it up.

HTML:
<<if $wardrobe.hasAny('toy-choker1', 'toy-choker2', 'toy-choker3', 'toy-choker4', 'toy-collar1', 'toy-collar2') or $access.hasAny('toy-choker1', 'toy-choker2', 'toy-choker3', 'toy-choker4', 'toy-collar1', 'toy-collar2')>><<link "Show off my choker">><<less "subdom" 1>><<add "open" 1>><<add "goodgirl" 2>><<pickup $mail "Slifire Mission 4 Option 1" 1>><<pickup $mail "Slifire Mission 4 Choice" 1>><<script>>
Yep, similar issues with underwear and other sex toys, I think.
 
May 15, 2018
15
12
138
Is there any content with Eric's stepdad? i am kinda looking around for it same with Jasmine's dad is there content with him? considering we meet him early on in the game, my favorite html game is condemned town so i am looking for content similar to it, or just ugly white bastards.
Eric's stepdad is not white but there is alot of content with him in the cafe and Eric's route. So far I don't think there is content with Jasmine's dad (he is more a pure side charachter) but if you are interested in the mc sleeping with"bastard" style charachters then there are some in the game as there are options with the teacher mr bekham.
 

cooldevo

Active Member
Jan 30, 2021
895
1,068
211
Yep, similar issues with underwear and other sex toys, I think.
As far as I can tell, the IF is setup correctly to check what underwear is being worn. It's not looking in the wardrobe, it's looking into sugarcube.state.variables.bra ($bra) and .panties ($panties). That is where the actually worn underwear is stored. The red lingerie is actually called 'redsexy' so it's looking for the right string.

JavaScript:
<<if $mail.has("Slifire Mission 7 Option 1")>><<mecon>>I can't believe I'm doing this...<</mecon>><<me>><img src='images/events/slifireevents/mission7-1.jpg' width='100%'><</me>>
    <<if visited("Slifire Scene 7") is 0>>//Waiting for his message is a <<link "thrilling anticipation" "Slifire Scene 7">><</link>>...//    <<else>>//This whole encounter is engraved in my thoughts...//<</if>>
<<elseif $mail.has("Slifire Mission 7 Option 2")>>//I have chosen to actively ignore the man.//
<<else>><<if $panties.has("redsexy") and $bra.has("redsexy")>><<link "Model the lingerie I am wearing">><<add "goodgirl" 1>><<add "open" 1>><<pickup $mail "Slifire Mission 7 Option 1" 1>><<pickup $mail "Slifire Mission 7 Choice" 1>><<script>>

It seems to be something else that is not causing it to trigger. I think it's a bigger problem with that whole arc/scene in the code, as there looks to be a way to send a picture wearing the wrong underwear that also doesn't trigger. A few lines down in the code:

JavaScript:
Dialog.open();
<</script>><</link>><<else>><<dark "Model the lingerie for him" "Not wearing the right kind">><</if>>
    <<link "Actively choose to ignore him. I'm not doing this.">><<add "badgirl" 1>><<pickup $mail "Slifire Mission 7 Option 2" 1>><<pickup $mail "Slifire Mission 7 Choice" 1>><<script>>
Dialog.setup("", "messenger");
Dialog.wiki(Story.get("SlifireMessages").processText());

Edit: The problem I had was that I could not get into the phone. There was no quest quicklink on the right-menu to take you into the phone, or you can't open the phone without a pending message. I noticed when I had a message and could open the phone, that if I had the 'redsexy' underwear equipped, I could open the phone and instead of reading the new message go into Slifire's contact first and it worked. then I could go back into the phone and read the other message.
 
Last edited:
  • Like
Reactions: Sabberlot23

cooldevo

Active Member
Jan 30, 2021
895
1,068
211
Yep, similar issues with underwear and other sex toys, I think.
Yeah the vibrator toy is broken as well, with the same issue. If you replace line 45263 with the below it'll work. Just adds 'toy-' in front of 'vibrator' in the wardrobe check.

JavaScript:
&lt;&lt;else&gt;&gt;&lt;&lt;if $wardrobe.has(&quot;toy-vibrator&quot;)&gt;&gt;&lt;&lt;link &quot;Show off the new toy&quot; &quot;Slifire Scene 8&quot;&gt;&gt;&lt;&lt;add &quot;goodgirl&quot; 1&gt;&gt;&lt;&lt;add &quot;open&quot; 1&gt;&gt;&lt;&lt;pickup $mail &quot;Slifire Mission 8 Option 1&quot; 1&gt;&gt;&lt;&lt;pickup $mail &quot;Slifire Mission 8 Choice&quot; 1&gt;&gt;&lt;&lt;/link&gt;&gt;&lt;&lt;else&gt;&gt;&lt;&lt;dark &quot;Show off the new toy&quot; &quot;I don&#39;t have what he&#39;s asked for. Better check Nexus Toys.&quot;&gt;&gt;&lt;&lt;/if&gt;&gt;
 
  • Like
Reactions: Sabberlot23

Birdnman993

Well-Known Member
Dec 6, 2021
1,940
3,250
397
Definetly need multiple saves to see everything. Characters can end up submissive or dominant, masculine or feminine, smart or bimbo. Then there's also relationships and allegiances. All mutually exclusive.
Thanks, although I mean, can you have multiple relationships or should I just focus on one character?

And is there a time limit too or can I do whatever I want without thinking too much about it?
 

gregers

Forum Fanatic
Dec 9, 2018
5,437
7,124
767
Thanks, although I mean, can you have multiple relationships or should I just focus on one character?

And is there a time limit too or can I do whatever I want without thinking too much about it?
Some external time limits, e.g. Valentine's Day happening on a specific date (you'll never guess which one) and the MC's options depending on stat unlocks before then.

Some limits intrinsic to a character, e.g. specific options during one event with a character will depend on having raised another stat with that character.

The MC can pursue several characters at the same time, but some events are mutually exclusive (e.g. group projects for classes, Valentine's hook-up, etc.).
 
  • Like
Reactions: Birdnman993

Sheryl60

Newbie
Oct 27, 2021
29
13
78
How do you unlock the other options when you hang out with Eric in the library? Many options were locked out because "stats not met"
 

was435

Newbie
Jul 11, 2019
50
101
174
Yeah the vibrator toy is broken as well, with the same issue. If you replace line 45263 with the below it'll work. Just adds 'toy-' in front of 'vibrator' in the wardrobe check.

JavaScript:
&lt;&lt;else&gt;&gt;&lt;&lt;if $wardrobe.has(&quot;toy-vibrator&quot;)&gt;&gt;&lt;&lt;link &quot;Show off the new toy&quot; &quot;Slifire Scene 8&quot;&gt;&gt;&lt;&lt;add &quot;goodgirl&quot; 1&gt;&gt;&lt;&lt;add &quot;open&quot; 1&gt;&gt;&lt;&lt;pickup $mail &quot;Slifire Mission 8 Option 1&quot; 1&gt;&gt;&lt;&lt;pickup $mail &quot;Slifire Mission 8 Choice&quot; 1&gt;&gt;&lt;&lt;/link&gt;&gt;&lt;&lt;else&gt;&gt;&lt;&lt;dark &quot;Show off the new toy&quot; &quot;I don&#39;t have what he&#39;s asked for. Better check Nexus Toys.&quot;&gt;&gt;&lt;&lt;/if&gt;&gt;
If the problems are coming up when there is the phrase "toy-" would removing the certain instances of prefix fix anything? Or rather is there some way to locate the root these are referring to and modify them?
 
Last edited:

L7Bear

Well-Known Member
May 29, 2017
1,275
2,151
498
I think I made a mistake.
You don't have permission to view the spoiler content. Log in or register now.

ETA:
You don't have permission to view the spoiler content. Log in or register now.
ETA - Beyond that:
You don't have permission to view the spoiler content. Log in or register now.

for reference (at the start of Spring Break):
1745197826759.png
 
Last edited:
  • Like
Reactions: angelroxane

Meiri

Well-Known Member
Nov 1, 2019
1,316
2,394
397
I liked the Matthew / Angela route start, hopefully it gets more development in the future on par with the most common ones.
 

Birdnman993

Well-Known Member
Dec 6, 2021
1,940
3,250
397
How do I go to Valentine's Day with Yara? I've only been invited by Eric and Eva. I was hoping to go with Yara, or Yara and Eva.
 

Meiri

Well-Known Member
Nov 1, 2019
1,316
2,394
397
How do I go to Valentine's Day with Yara? I've only been invited by Eric and Eva. I was hoping to go with Yara, or Yara and Eva.
You cannot be invited by Yara afaik, but can hook up with her at the event by going with Eva as a date, then approaching Yara and listening to her plan to hit on Eva, at this point you can either help her so you end with both of them or if you have bisexuality above 3 and Submissiveness above -7 you get the option to ask her if she wants to be with you alone.
 
  • Like
Reactions: Birdnman993
Sep 4, 2022
69
58
100
This is a piracy forum. All of the games on here are people's livelihoods. Why engage with the site if it threatens your livelihood?
veryyyyy good question... i would ask the same...and this wording... a hero would yada yada yada pffff what for heroes? heroes dont exist in IRL only in television and games XD
 

cooldevo

Active Member
Jan 30, 2021
895
1,068
211
If the problems are coming up when there is the phrase "toy-" would removing the certain instances of prefix fix anything? Or rather is there some way to locate the root these are referring to and modify them?
You can try doing a search and replace, but there may be other places where 'toy-' is used that could break something else.

If you want to try to fix it, make sure to backup the game's index.html file first. If you look at the two posts I made (lingerie and vibrator quests), find the second code block for each. You want that, as well as the line number just before it. Find the line number in the index.html file and replace what's there with what's in the code block. Save it, and it should work. If you did something wrong, delete the index.html and replace it with the backup one you did at the start.

If I recall correctly, the dev started doing the naming one way and then switched to another way. During the process not all references were updated to the newer convention.
 
4.30 star(s) 28 Votes