Crawdaddy

Active Member
Aug 26, 2017
913
1,036
The problem with this game is that there are other males.

How can you have a game where you are the male protagonist, but there are other males. Unless gay shit is suppose go down.

Can anyone think of something more revolting than Dexter and Eric going at it, sexually?

So I would like to see at some point in which you play as a girl, maybe as the sister but younger and the brother/MC switches over being the older brother.
I... I don't even know where to start with this one.
 

sunday

Newbie
Sep 2, 2017
61
22
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/scripts/pier/fishing_minigame/fishing_minigame.rpy", line 74, in script
    call screen fishing_minigame(bait)
  File "renpy/common/000statements.rpy", line 471, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 380, in execute
    screen fishing_minigame(bait):
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 380, in execute
    screen fishing_minigame(bait):
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 381, in execute
    add Fishing(bait)
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 135, in __init__
    fish[name].reset()
TypeError: string indices must be integers

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

Full traceback:
  File "game/scripts/pier/fishing_minigame/fishing_minigame.rpy", line 74, in script
    call screen fishing_minigame(bait)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\ast.py", line 1706, in execute
    self.call("execute")
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\ast.py", line 1724, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\statements.py", line 145, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 471, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\exports.py", line 2526, in call_screen
    rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\ui.py", line 285, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\display\core.py", line 2538, in interact
    scene_lists.replace_transient()
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\display\core.py", line 822, in replace_transient
    self.remove(layer, tag)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\display\core.py", line 1107, in remove
    self.hide_or_replace(layer, remove_index, "hide")
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\display\core.py", line 1031, in hide_or_replace
    d = oldsle.displayable._hide(now - st, now - at, prefix)
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\display\screen.py", line 443, in _hide
    self.update()
  File "C:\Users\ujjijh\Downloads\SummertimeSaga-0.14.52-pc\SummertimeSaga-0.14.51-pc\renpy\display\screen.py", line 578, in update
    self.screen.function(**self.scope)
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 380, in execute
    screen fishing_minigame(bait):
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 380, in execute
    screen fishing_minigame(bait):
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 381, in execute
    add Fishing(bait)
  File "<screen language>", line 381, in <module>
  File "game/scripts/pier/fishing_minigame/screens.rpy", line 135, in __init__
    fish[name].reset()
TypeError: string indices must be integers

Windows-8-6.2.9200
Ren'Py 6.99.12.4.2187
SummertimeSaga 0.14.52
This is an error that is fixed in 0.14.5.2. Please update your game version if it is not the latest. FYI based on previous messages some have stated that the error also exists if you're using a save from 0.14.5.1 in 0.14.5.2. This may also be another cause.
 

kasso

New Member
May 7, 2017
14
3
Go to game\scripts\pier\fishing_minigame and open fishing_minigame.rpy in any text editor.

find this:
$ fishes = {}
$ fishes["Seatrout"] = Fish("buttons/fishing_fish01a.png", "Seatrout", 550, "worms", 11, -1.0)
$ fishes["Snapper"] = Fish("buttons/fishing_fish02a.png", "Snapper", 350, "standard lure", 16, -1.0)
$ fishes["Mackerel"] = Fish("buttons/fishing_fish03a.png", "Mackerel", 450, "fancy lure", 14)
$ fishes["Tiger Fish"] = Fish("buttons/fishing_fish04a.png", "Tiger Fish", 625, "golden lure", 10, variation = 2)


and replace with

$ fish = {}
$ fish["Seatrout"] = Fish("buttons/fishing_fish01a.png", "Seatrout", 550, "worms", 11, -1.0)
$ fish["Snapper"] = Fish("buttons/fishing_fish02a.png", "Snapper", 350, "standard lure", 16, -1.0)
$ fish["Mackerel"] = Fish("buttons/fishing_fish03a.png", "Mackerel", 450, "fancy lure", 14)
$ fish["Tiger Fish"] = Fish("buttons/fishing_fish04a.png", "Tiger Fish", 625, "golden lure", 10, variation = 2)
Thanks, that did the trick!
 

Greg956

New Member
Aug 26, 2017
12
1
Playing 0.14.5.2 version and I got stuck. I can't go to sleep because of "I still have something I need to do before I can sleep", but there's nothing I can do, mom sleeping, sis sleeping, and main character is tired to do everything. And I can't go to the city map. What to do?
 

McDevvo

New Member
Jun 19, 2017
1
0
Yo Guys how do i make progress with Eve I can only see her at night in the park i've maxed Every Skill and still gives me only two options to leave or to rap battle, what do i do ?
 

Trapezio

Engaged Member
Sep 28, 2017
2,226
3,229
Yo Guys how do i make progress with Eve I can only see her at night in the park i've maxed Every Skill and still gives me only two options to leave or to rap battle, what do i do ?
There's a hidden option: you have to put a finger in your ass and shout "abagawagga" 3 times to unlock it ;)
 

TS2016

Member
May 7, 2017
426
224
Go to game\scripts\pier\fishing_minigame and open fishing_minigame.rpy in any text editor.

find this:
$ fishes = {}
$ fishes["Seatrout"] = Fish("buttons/fishing_fish01a.png", "Seatrout", 550, "worms", 11, -1.0)
$ fishes["Snapper"] = Fish("buttons/fishing_fish02a.png", "Snapper", 350, "standard lure", 16, -1.0)
$ fishes["Mackerel"] = Fish("buttons/fishing_fish03a.png", "Mackerel", 450, "fancy lure", 14)
$ fishes["Tiger Fish"] = Fish("buttons/fishing_fish04a.png", "Tiger Fish", 625, "golden lure", 10, variation = 2)


and replace with

$ fish = {}
$ fish["Seatrout"] = Fish("buttons/fishing_fish01a.png", "Seatrout", 550, "worms", 11, -1.0)
$ fish["Snapper"] = Fish("buttons/fishing_fish02a.png", "Snapper", 350, "standard lure", 16, -1.0)
$ fish["Mackerel"] = Fish("buttons/fishing_fish03a.png", "Mackerel", 450, "fancy lure", 14)
$ fish["Tiger Fish"] = Fish("buttons/fishing_fish04a.png", "Tiger Fish", 625, "golden lure", 10, variation = 2)
Where is game\scripts\pier\fishing_minigame and open fishing_minigame.rpy?
 
4.10 star(s) 357 Votes