Mod Ren'Py Midnight Paradise - Shawn's Walkthrough + Improvements [0.24] [Shawnchapp]

Shawnchapp

Well-Known Member
Modder
Feb 13, 2018
1,886
4,928
march 4th aka today. still has plenty of hrs left.
Updated (was at the dentist Lol)


Change Logs:
  • Guides updated
  • fixed bug with Harem King and typos
  • fixed "bug" with "changed name" and text with "Co-Connor" showing as "Co-<insertplayername>" should show first 2 characters of your name now (let me know if there was others i missed)
 

Trminator

Member
May 3, 2017
241
596
Updated (was at the dentist Lol)


Change Logs:
  • Guides updated
  • fixed bug with Harem King and typos
  • fixed "bug" with "changed name" and text with "Co-Connor" showing as "Co-<insertplayername>" should show first 2 characters of your name now (let me know if there was others i missed)
Hi Shawnchapp ,
one small "bug" with an easy fix:

Python:
define gallery_version_new = "0.24"
should be
Python:
define gallery_version_new ={ "0.24" }
(or similarly as an Array/List with [])
so the
Python:
if sce.version in gallery_version_new:
check in the gallery definition doesn't match on partial strings (i.e. your current code would/does match on sce.version = "0.2", while with gallery_version_new = { "0.24" }, it will only match on 0.24, unless you would add other versions to the dict/list/array. ;) )
 

batmantitties

Member
Sep 17, 2017
138
385
I used the mod to open up Eliana's path in a save I have and it works fine but to progress with her I need to visit the "streets" and it doesn't show up on the map.
 

Shawnchapp

Well-Known Member
Modder
Feb 13, 2018
1,886
4,928
Hi Shawnchapp ,
one small "bug" with an easy fix:

Python:
define gallery_version_new = "0.24"
should be
Python:
define gallery_version_new ={ "0.24" }
(or similarly as an Array/List with [])
so the
Python:
if sce.version in gallery_version_new:
check in the gallery definition doesn't match on partial strings (i.e. your current code would/does match on sce.version = "0.2", while with gallery_version_new = { "0.24" }, it will only match on 0.24, unless you would add other versions to the dict/list/array. ;) )

i don't "define gallery_version_new" any where

thats part of the base game file "gallery" i don't edit that file at all
 

batmantitties

Member
Sep 17, 2017
138
385
hmm weird can you send me you save please
At this point I think I had done most if not all of the content on the previous version, I'm pretty sure the game itself disabled the "streets" button on the map but I'm not sure if your mod is meant to enable it.
 

Shawnchapp

Well-Known Member
Modder
Feb 13, 2018
1,886
4,928
At this point I think I had done most if not all of the content on the previous version, I'm pretty sure the game itself disabled the "streets" button on the map but I'm not sure if your mod is meant to enable it.

as it says "text eliana"

1709752095396.png

wait until you can text her and text her its on a delay, sleep until tomorrow then you should be able to text

added an extra for next version saying "wait to text eliana"
 

batmantitties

Member
Sep 17, 2017
138
385
as it says "text eliana"

View attachment 3417000

wait until you can text her and text her its on a delay, sleep until tomorrow then you should be able to text

added an extra for next version saying "wait to text eliana"
Ah! I couldn't text her anymore and there was no indication that I had to wait some days to message her again so I assumed something was wrong, like I said, I had done everything else so I had nothing else to do that would make me spend more days, maybe I would have noticed otherwise.
 

Shawnchapp

Well-Known Member
Modder
Feb 13, 2018
1,886
4,928
Ah! I couldn't text her anymore and there was no indication that I had to wait some days to message her again so I assumed something was wrong, like I said, I had done everything else so I had nothing else to do that would make me spend more days, maybe I would have noticed otherwise.

huh says you still had some main story left... but ya for that part for the step her texts gos into a long delay for like 1 week or 2 its kinda random based on the chatstacks and what else your currently doing so i can't actually but a "wait for x day(s)" like i do with other steps

but i have changed it for next version to just say "wait to text" followed by with "text her" when your actually able to do it.
 

Daisies

Newbie
Jun 12, 2017
54
52
For some reason I'm getting this error when I try checking messages on the phone with this mod. Works fine without the mod.

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

While running game code:
  File "renpy/common/000statements.rpy", line 670, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/scripts/phone.rpy", line 918, in execute
  File "game/scripts/phone.rpy", line 918, in execute
  File "game/scripts/phone.rpy", line 953, in execute
  File "game/scripts/phone.rpy", line 968, in execute
  File "game/scripts/phone.rpy", line 1078, in execute
  File "game/scripts/phone.rpy", line 1086, in execute
  File "game/scripts/phone.rpy", line 1100, in execute
  File "game/scripts/phone.rpy", line 1100, in <module>
  File "game/scripts/phone.rpy", line 1100, in <lambda>
  File "game/scripts/phone.rpy", line 404, in phone_order
NameError: name 'PHONE_ORDER' is not defined
 

Shawnchapp

Well-Known Member
Modder
Feb 13, 2018
1,886
4,928
For some reason I'm getting this error when I try checking messages on the phone with this mod. Works fine without the mod.

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

While running game code:
  File "renpy/common/000statements.rpy", line 670, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/scripts/phone.rpy", line 918, in execute
  File "game/scripts/phone.rpy", line 918, in execute
  File "game/scripts/phone.rpy", line 953, in execute
  File "game/scripts/phone.rpy", line 968, in execute
  File "game/scripts/phone.rpy", line 1078, in execute
  File "game/scripts/phone.rpy", line 1086, in execute
  File "game/scripts/phone.rpy", line 1100, in execute
  File "game/scripts/phone.rpy", line 1100, in <module>
  File "game/scripts/phone.rpy", line 1100, in <lambda>
  File "game/scripts/phone.rpy", line 404, in phone_order
NameError: name 'PHONE_ORDER' is not defined

send save please... and did you use unren? cause i don't touch the "phone" code
 
  • Like
Reactions: Daisies

Daisies

Newbie
Jun 12, 2017
54
52
send save please... and did you use unren? cause i don't touch the "phone" code
I'm going to try a fresh install when I get back home, and if I'm still having the issue I'll send over the save and whatever else might help. What's unren?
 

Shawnchapp

Well-Known Member
Modder
Feb 13, 2018
1,886
4,928
I'm going to try a fresh install when I get back home, and if I'm still having the issue I'll send over the save and whatever else might help. What's unren?
it when you decomplie the game to get the ".rpy" files
 
  • Like
Reactions: Daisies