• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

RIC0H

Well-Endowed Member
Modder
Game Compressor
Donor
Game Developer
Aug 8, 2020
1,877
10,785
Hmm, I was playing through the whole game, skipping through most everything and making the decisions to set up how I wanted it to be when I caught up to current content

But at the bowling alley, during the scene where Moon and Ruby are talking about interviewing you, right after Ruby talks about how the dog protects her, it crashes every time.

Code:
I'm sorry, but an uncaught exception occurred.

While processing the color property of anonymous style:
IndexError: string index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "script.rpyc", line 33844, in script
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\ast.py", line 708, in execute
    renpy.exports.say(who, what, *args, **kwargs)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\exports.py", line 1345, in say
    who(what, *args, **kwargs)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\character.py", line 1142, in __call__
    self.do_display(who, what, cb_args=self.cb_args, **display_args)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\character.py", line 842, in do_display
    **display_args)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\character.py", line 591, in display_say
    rv = renpy.ui.interact(mouse='say', type=type, roll_forward=roll_forward)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\ui.py", line 297, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 2702, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 3094, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\screen.py", line 434, in visit_all
    self.child.visit_all(callback, seen=None)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 543, in visit_all
    callback(self)
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\display\core.py", line 3094, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\text\text.py", line 1636, in per_interact
    if self.style.slow_abortable:
  File "gen/styleclass.pxi", line 757, in renpy.styledata.styleclass.Style.slow_abortable.__get__
  File "style.pyx", line 493, in renpy.style.StyleCore._get
  File "style.pyx", line 709, in renpy.style.build_style
  File "style.pyx", line 706, in renpy.style.build_style
  File "gen/style_functions.pyx", line 757, in style_functions.color_property
  File "C:\Users\dcloc\Desktop\WVM-0.9.5-pc\renpy\color.py", line 134, in __new__
    if c[0] == '#':
IndexError: string index out of range

Windows-8-6.2.9200
Ren'Py 7.3.5.606
WVM 0.9.5
Sat Jul 03 20:59:19 2021
It's because of the color="" as there is no such color as "" (blank), so it throws up an error.

So this:

Code:
#Pets
define mx = Character ("Max", color="", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
Should be this:

Code:
#Pets
define mx = Character ("Max", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
 
  • Like
Reactions: "CJ"

gpsywolf

Member
Sep 30, 2019
149
564
Dear Lord, that is a LOT of asses. Yeah you know what im talking about. Too many girls now. Cant keep them all straight anymore.
 

Anon4321

Conversation Conqueror
Jun 24, 2017
6,716
5,275
I'm currently running 3 saves based on the 3 choices of how how heavy the MCs social media presence is.
but so for there's been no difference in dialogue with each update between the 3 saves.
Should I keep to one or carry on with all 3 saves.
 

Hambo

Newbie
Aug 6, 2016
35
608


This was in progress when I originally reposted the links here.
 

OfficiallyGames

Active Member
Game Developer
May 23, 2020
893
2,821
Right I have just finished playing the update and here are my thoughts:
You don't have permission to view the spoiler content. Log in or register now.
And yes I am going to write up the WT straight away (the update took longer than I thought so WT anywhere between 1 to 3 hours)
 
  • Like
Reactions: asanoturna

Drewbie

Member
Oct 21, 2017
254
501
It's because of the color="" as there is no such color as "" (blank), so it throws up an error.

So this:

Code:
#Pets
define mx = Character ("Max", color="", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
Should be this:

Code:
#Pets
define mx = Character ("Max", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
Thanks for the info... though so far I still haven't narrowed down which file actually contains that line that needs to be changed. I'll keep searching >_>
 

Anon4321

Conversation Conqueror
Jun 24, 2017
6,716
5,275
I thought you could choose if she would be trans or cis. I don't think hermaphrodite is an option. Futa ≠ trans.
Futa/trans is a combined tag for two very different concepts. There may be transgender persons, but no hermaphrodite/intersexed characters.
Then you need to speak to F95 about it. All I did was mark it.

WVM has 3 Trans characters Shauna, Skye & Penelope
-Shauna - you came choose to have male parts
-Skye, while female, identifies herself as male, while I didn't see any direct choices, I think, if I recall right, depends on your interactions with him.
-Penelope - you came choose to have male parts

CORRECTION
My apologies for the error, Shauna is a transgender character not a futa character.
Screenshot 2021-07-04 044221.png
 
Last edited:

Drewbie

Member
Oct 21, 2017
254
501
Then you need to speak to F95 about it. All I did was mark it.

WVM does have both
A Futa character, Shauna, if you choose her to be
and
A Female Trans character, Skye, while female, does identify herself as male, while I didn't see any direct choice, I think, if I recall right, depends on your interactions with him.
Er... Shauna is trans. It's explicitly stated she transitioned and you were friends with her before she did.
 
3.70 star(s) 636 Votes