Mod Cheat Mod Ren'Py Completed Callisto Multi-Mod [ShaddyModda]

5.00 star(s) 1 Vote

Wills747

Engaged Member
Dec 14, 2018
2,279
4,687
Hi all, my compressed unofficial Android port of Callisto v 1.00 with ShaddyModda walkthrough, cheats and gallery mod.
Usual gestures, save name/delete, seethru textbox, resizeable game and dialogue text.

Scrollable textbox - no more text off the bottom of your screen
Alternative persistent saves/log location
Grant storage permissions on first run!


PC compressed version 1.00 with Shaddy's mod incl
Updated my Android port and PC Compresed incl ShaddyModda's Mod to v1.00
 

parceload

Member
Nov 14, 2017
101
147
bug report:
Python:
screen choice(items):
    style_prefix "choice"
    vbox spacing 5:
        for n, i in enumerate(items, 1):
            if n < 10:
                key str(n) action i.action
                key "K_KP" + str(n) action i.action
                textbutton str(n) + ") " + i.caption action i.action
this causes screens with more than 9 options to not properly show up, which exist in this game (label tiff_bond, if config.menu_include_disabled = True)

simple fix:
Python:
screen choice(items):
    style_prefix "choice"
    vbox spacing 5:
        for n, i in enumerate(items, 1):
            if n < 10:
                key str(n) action i.action
                key "K_KP" + str(n) action i.action
                textbutton str(n) + ") " + i.caption action i.action
            else:
                textbutton i.caption action i.action
 

circuitarity

Active Member
Jul 3, 2019
565
497
bug report:
Python:
screen choice(items):
    style_prefix "choice"
    vbox spacing 5:
        for n, i in enumerate(items, 1):
            if n < 10:
                key str(n) action i.action
                key "K_KP" + str(n) action i.action
                textbutton str(n) + ") " + i.caption action i.action
this causes screens with more than 9 options to not properly show up, which exist in this game (label tiff_bond, if config.menu_include_disabled = True)

simple fix:
Python:
screen choice(items):
    style_prefix "choice"
    vbox spacing 5:
        for n, i in enumerate(items, 1):
            if n < 10:
                key str(n) action i.action
                key "K_KP" + str(n) action i.action
                textbutton str(n) + ") " + i.caption action i.action
            else:
                textbutton i.caption action i.action
How about uploading a fixed copy for those of us who don't speak Monty's native language? (if you have to ask who Monty Python is just google for some hilarious videos)

@ShaddyModda Other option would be could you please fix the mod?
 

ShaddyGames

Engaged Member
Modder
Donor
Game Developer
Jan 19, 2020
2,366
11,511
bug report:
Python:
screen choice(items):
    style_prefix "choice"
    vbox spacing 5:
        for n, i in enumerate(items, 1):
            if n < 10:
                key str(n) action i.action
                key "K_KP" + str(n) action i.action
                textbutton str(n) + ") " + i.caption action i.action
this causes screens with more than 9 options to not properly show up, which exist in this game (label tiff_bond, if config.menu_include_disabled = True)

simple fix:
Python:
screen choice(items):
    style_prefix "choice"
    vbox spacing 5:
        for n, i in enumerate(items, 1):
            if n < 10:
                key str(n) action i.action
                key "K_KP" + str(n) action i.action
                textbutton str(n) + ") " + i.caption action i.action
            else:
                textbutton i.caption action i.action
How about uploading a fixed copy for those of us who don't speak Monty's native language? (if you have to ask who Monty Python is just google for some hilarious videos)

@ShaddyModda Other option would be could you please fix the mod?
uh. it's supposed to have the else, must have missed it, when I copied from one of my other scripts. I was in a bit of a hurry to update this, given I didn't have a lot of time. I'll fix it and throw up an update after the holiday. Soo Tuesday, unless I can find some time, before then.
 
  • Like
Reactions: parceload

circuitarity

Active Member
Jul 3, 2019
565
497
uh. it's supposed to have the else, must have missed it, when I copied from one of my other scripts. I was in a bit of a hurry to update this, given I didn't have a lot of time. I'll fix it and throw up an update after the holiday. Soo Tuesday, unless I can find some time, before then.
As a fan of your work in general I place a humble thank you at your feet for taking any time at all on this even if I have to wait.... Hey wait a minute 2 and a half days... !$@% is this? J/K You're fantastic :D
 

ShaddyGames

Engaged Member
Modder
Donor
Game Developer
Jan 19, 2020
2,366
11,511
Just a heads up guys. Gonna be working on this today to fix any bugs, but I'll be going from the start of the game, so it'll take a few hours. Once I upload it the new mod version will have bugfixed or revised, haven't decided yet, but it'll be one or the other. And for those using Android, I'll be sure to pass it to Wills747 myself so he can update the port again with the fixes. Pending no RL interruptions, I should have it up tonight.
 

Wills747

Engaged Member
Dec 14, 2018
2,279
4,687
Hi all, my compressed unofficial Android port of Callisto v 1.00 with ShaddyModda walkthrough, cheats and gallery mod.(revised)
Usual gestures, save name/delete, seethru textbox, resizeable game and dialogue text.

Scrollable textbox - no more text off the bottom of your screen
Alternative persistent saves/log location
Grant storage permissions on first run!


PC compressed version 1.00 with Shaddy's mod incl {revised}
Updated Android port and compressed PC to 1.00 Revised
 
Jul 16, 2018
219
194
I don't quite understand how to use this mod.
I use the overview/ship map to see whether there are any silver/blue/gold stars. But, the same scenes keep repeating (the blue girl training/fighting and the doctor helping the MC).
I already somehow missed/skipped some scenes (they are marked red). I clearly don't understand how to trigger more/other scenes. Is there a walkthrough on how to trigger the green scenes?
 
5.00 star(s) 1 Vote