Mod Ren'Py Abandoned SummertimeSaga 0.17.5 - Ikarumod V1

5.00 star(s) 1 Vote

GAB

Salty Montrealer
Donor
May 10, 2017
2,345
17,551
oh yeah and fast forward on dialogue I've never seen doesn't work on the intro so i had to unren that shit
 

Jpo

New Member
Jul 8, 2017
1
5
i also still have the fishing error, before never had problems
You can fix this yourself.
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)
 
Last edited:

ikaruga

Well-Known Member
Modder
Respected User
Donor
Aug 11, 2016
1,191
2,502
You can fix this yourself.
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 a lot, will look at that !
I'll make a whole repass to my mod
 

Alauddins

New Member
Aug 14, 2017
8
2
You can fix this yourself.
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)
Tried this and all I got was another error
File "game/scripts/pier/fishing_minigame/fishing_minigame.rpy", line 75: indentation mismatch.

The Script Line 68-79 (Line 75 is "else:"):
$ 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)

call screen fishing_minigame(bait)
else:

show player 234 at Position(xpos=0.6635,ypos=0.9289) with dissolve
player_name "( I can’t fish without bait. )"
player_name "( I should look around the town and see what I can find. )"
$ callScreen(location_count)
 

GAB

Salty Montrealer
Donor
May 10, 2017
2,345
17,551
so i've commented before and I've found 2 conclusions
1 - I've incorrectly applied the mod
2 - The mod is not completely working

now idk which theory is more plausible cause the clean game mode doesn't let me skip intro scene and cheat game mode has missing image on the broken sink scene with the wet tshirt on sis
 

Masq87

New Member
May 19, 2017
5
0
FYI if you have the console enabled you can overcome that error by typing in the following. I just tried it myself (wanted to bone a mermaid :heartcoveredeyes:).

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)
thank you so much
 

carlitos69

New Member
Aug 24, 2016
6
3
You can fix this yourself.
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)

That works just fine
 
  • Like
Reactions: _jms

Grecco

Newbie
Jul 4, 2017
30
3
Ikarumod For SummertimeSaga-0.14.5.2 Version 1

This mod alter the way game works by allowing player play faster than normal.
This mod don't break game mechanics, as you won't be able to get some scene before game allows it, you just get it faster.

Installation :
Just place the "script" directory into SummertimeSaga's "game" directory
\SummertimeSaga-0.14.00-pc\game\scripts\


WARNING
With this new version, you'll need to rename the script.rpa to script.rpa.bak to allow mod to be applied.

Mod Features
  • Cheat mode enabled without having to start with cheat mode
  • You get money instead of spend them
  • You can't choose wrong donut
  • You get stats bonuses when doing stats related activities
  • Game get faster as you can skip things
  • Game start faster because no loading screen
  • Debug mode + rollback activated
Changelog
  • v1 : Original Release - 14.5.2 compatible
  • Allow fast forward even if never played
  • Removed lunch game screens


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\jr_gr\Downloads\SummertimeSaga-14.5.2-pc\SummertimeSaga-0.14.51-pc\renpy\ast.py", line 1706, in execute
self.call("execute")
File "C:\Users\jr_gr\Downloads\SummertimeSaga-14.5.2-pc\SummertimeSaga-0.14.51-pc\renpy\ast.py", line 1724, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "C:\Users\jr_gr\Downloads\SummertimeSaga-14.5.2-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\jr_gr\Downloads\SummertimeSaga-14.5.2-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\jr_gr\Downloads\SummertimeSaga-14.5.2-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\jr_gr\Downloads\SummertimeSaga-14.5.2-pc\SummertimeSaga-0.14.51-pc\renpy\display\core.py", line 2538, in interact
scene_lists.replace_transient()
File "C:\Users\jr_gr\Downloads\SummertimeSaga-14.5.2-pc\SummertimeSaga-0.14.51-pc\renpy\display\core.py", line 822, in replace_transient
self.remove(layer, tag)
File "C:\Users\jr_gr\Downloads\SummertimeSaga-14.5.2-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\jr_gr\Downloads\SummertimeSaga-14.5.2-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\jr_gr\Downloads\SummertimeSaga-14.5.2-pc\SummertimeSaga-0.14.51-pc\renpy\display\screen.py", line 443, in _hide
self.update()
File "C:\Users\jr_gr\Downloads\SummertimeSaga-14.5.2-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



FIX PLEASE DUDE
 

atvlongjump

Newbie
May 27, 2017
32
35
So I done everything in the description, but none of the mods are working. When I spend money it actually spends the money.
 

ikaruga

Well-Known Member
Modder
Respected User
Donor
Aug 11, 2016
1,191
2,502
I'm actually redl the last version of game and mod to redo the whole job.
 

ikaruga

Well-Known Member
Modder
Respected User
Donor
Aug 11, 2016
1,191
2,502
Hello everyone
I just updated a fixed version of the script.
I needed to merge from the last version, seems that i worked from a bugged one.
Have fun !
 

ikaruga

Well-Known Member
Modder
Respected User
Donor
Aug 11, 2016
1,191
2,502
You can fix this yourself.
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)
Sorry it won't work anymore.
Bug is elsewhere, but is about theses fish variable names.
All is cleaned now, sorry for the waiting, i'll try to work for other mods for this game as a compensation :)
 

Grecco

Newbie
Jul 4, 2017
30
3
Sorry it won't work anymore.
Bug is elsewhere, but is about theses fish variable names.
All is cleaned now, sorry for the waiting, i'll try to work for other mods for this game as a compensation :)

As I change the language of this folder "scripts" when I open it with the editor everything is messed up lol, I can not read this.


 

ikaruga

Well-Known Member
Modder
Respected User
Donor
Aug 11, 2016
1,191
2,502
As I change the language of this folder "scripts" when I open it with the editor everything is messed up lol, I can not read this.


If you use my mod, you need to rename this scripts.rpa, it's the archive of original scrips
 

KiesAgent

New Member
Oct 14, 2017
6
0
I also got the fishing error from the v1 version of the mod, so I backed up my original files (THANK GOD), copied and pasted the v2 version into a copy of my game. But then when i tried to load a save file it says that I'm loading a save file from an older version of the game and kicked me out. Anyway to fix this problem?


EDIT:
- So I fixed this problem myself. If you're having the same problem as I did, just copy and paste ONLY the screens.rpy file from game\scripts\pier\fishing_minigame in the downloaded v2 mod to the existing game\scripts\pier\fishing_minigame folder.
- I don't know why if you copy and paste the ENTIRE v2 mod into the game folder, the game would "think" that it is upgraded and "old" saves wouldn't work.
 

ikaruga

Well-Known Member
Modder
Respected User
Donor
Aug 11, 2016
1,191
2,502
I also got the fishing error from the v1 version of the mod, so I backed up my original files (THANK GOD), copied and pasted the v2 version into a copy of my game. But then when i tried to load a save file it says that I'm loading a save file from an older version of the game and kicked me out. Anyway to fix this problem?


EDIT:
- So I fixed this problem myself. If you're having the same problem as I did, just copy and paste ONLY the screens.rpy file from game\scripts\pier\fishing_minigame in the downloaded v2 mod to the existing game\scripts\pier\fishing_minigame folder.
- I don't know why if you copy and paste the ENTIRE v2 mod into the game folder, the game would "think" that it is upgraded and "old" saves wouldn't work.
It's because version in config files are incremented, that's why i knew i created my mod from a bastard version of the game.

You did right bro ;)

Hope all will go smooth next time :)
Sorry for all the bugs friends
 
5.00 star(s) 1 Vote