Mod Ren'Py Onhold Alexandra - OscarSix's Walkthrough, Scene Gallery, Improvements Mod [0.92] [PTOLEMY]

JenMistress

Engaged Member
Oct 1, 2019
2,486
2,753
Got to quickly finish off Ataegina then will post
Yeah, when I saw you were the modder for this game's mod, I thought, OK, they're going to be busy for awhile. ;) :LOL: But seriously, no rush. I'm sure it would be great whenever you are able to get to it.
 
  • Like
Reactions: ktoutlaw80

GrammerCop

Well-Known Member
Donor
Mar 15, 2020
1,687
1,673
game was updated 1h ago....how about you have a bit of patience?....
They did nothing wrong. I am sure that OscarSix has a lot of things better to do than to refresh the threads of the games he mods. He probably appreciates the heads up. If they did not request the mod update for the game, rest assured I would have, since the game was updated 1h ago. :cool:
 

OscarSix

Active Member
Modder
Donor
Jul 27, 2019
829
6,640
They did nothing wrong. I am sure that OscarSix has a lot of things better to do than to refresh the threads of the games he mods. He probably appreciates the heads up. If they did not request the mod update for the game, rest assured I would have, since the game was updated 1h ago. :cool:
Hehehe
To let everyone know, mod will be updated either tonight or tomorrow morning (UTC)
 

Badboll

Well-Known Member
Aug 29, 2017
1,740
2,057
Hey guys, there's no choice in this update, so if you have played the last version it doesn't needed to be modded again...
Good to know. I probably wont play it today anyway backlog too large, but if I do, i know I don't have to wait at least.
 

OscarSix

Active Member
Modder
Donor
Jul 27, 2019
829
6,640
2020/08/29: Updated Mod, 0.84

Change Log:
  • Updated Scene Gallery to 0.84
  • Added Mod Options
  • Added Name Change
  • Added Named Saves
Download: - - -
 

APMaster

Newbie
Mar 8, 2020
78
113
Getting errors with the Gym girl.

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

While running game code:
  File "game/1.rpy", line 1571, in script call
    call screen dannyscreen1
  File "game/1.rpy", line 1617, in script call
    call screen dannyscreen2
  File "game/1.rpy", line 1966, in script call
    call screen alicescreen1
  File "game/1.rpy", line 4885, in script call
    call screen screen1
  File "game/2.rpy", line 46, in script call
    call screen screen3
  File "game/2.rpy", line 768, in script call
    call screen screen5
  File "game/2.rpy", line 881, in script call
    call screen screen6
  File "game/2.rpy", line 1758, in script call
    call screen screen10
  File "game/2.rpy", line 1782, in script
    danny "\" Let's see now.\""
Exception: Sayer danny is not a function or string.

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

Full traceback:
  File "game/1.rpy", line 1571, in script call
    call screen dannyscreen1
  File "game/1.rpy", line 1617, in script call
    call screen dannyscreen2
  File "game/1.rpy", line 1966, in script call
    call screen alicescreen1
  File "game/1.rpy", line 4885, in script call
    call screen screen1
  File "game/2.rpy", line 46, in script call
    call screen screen3
  File "game/2.rpy", line 768, in script call
    call screen screen5
  File "game/2.rpy", line 881, in script call
    call screen screen6
  File "game/2.rpy", line 1758, in script call
    call screen screen10
  File "game/2.rpy", line 1782, in script
    danny "\" Let's see now.\""
  File "C:\Users\Colin\Documents\Rockstar Games\Alexandra-0.84-pc\renpy\ast.py", line 685, in execute
    raise Exception("Sayer %s is not a function or string." % self.who.encode("utf-8"))
Exception: Sayer danny is not a function or string.

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Alexandra 0.84
Sun Nov 01 15:50:21 2020
 
  • Like
Reactions: slik4x4

slik4x4

New Member
Nov 3, 2019
14
4
I am having problems also. I thought it might be a problem from an old file. So deleted all saves and games files. Reinstalled new game, skipped ahead to first Danny scenes, all good. Added mod, get error at first Danny scenes just like above. previous error was call to her from Bosses room about hospital visit, chapter 16 i believe.
 

slik4x4

New Member
Nov 3, 2019
14
4
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/1.rpy", line 363, in script
    danny "\" I'll make a bodybuilder out of you yet.\""
Exception: Sayer danny is not a function or string.

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

Full traceback:
  File "game/1.rpy", line 363, in script
    danny "\" I'll make a bodybuilder out of you yet.\""
  File "E:\Alexandra-0.84-pc\renpy\ast.py", line 685, in execute
    raise Exception("Sayer %s is not a function or string." % self.who.encode("utf-8"))
Exception: Sayer danny is not a function or string.

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Alexandra 0.84
Sun Nov 01 14:33:39 2020
 

raaco

New Member
Oct 9, 2019
1
6
I was having the same script issues and managed to do a fix.

In game/modAdditions/modGallery.rpy find the following lines:

Code:
define danny = GalleryItem("Danny", 1, "dannyhandjob", "2/185.webp")
define danny = GalleryItem("Danny", 1, "galleryScene1", "4/227.webp")
and change to

Code:
define Danny = GalleryItem("Danny", 1, "dannyhandjob", "2/185.webp")
define Danny = GalleryItem("Danny", 1, "galleryScene1", "4/227.webp")
Simply starting with an uppercase 'D' does the trick; the variable name is conflicting with the character one ;)
 

OscarSix

Active Member
Modder
Donor
Jul 27, 2019
829
6,640
I was having the same script issues and managed to do a fix.

In game/modAdditions/modGallery.rpy find the following lines:

Code:
define danny = GalleryItem("Danny", 1, "dannyhandjob", "2/185.webp")
define danny = GalleryItem("Danny", 1, "galleryScene1", "4/227.webp")
and change to

Code:
define Danny = GalleryItem("Danny", 1, "dannyhandjob", "2/185.webp")
define Danny = GalleryItem("Danny", 1, "galleryScene1", "4/227.webp")
Simply starting with an uppercase 'D' does the trick; the variable name is conflicting with the character one ;)
Cheers, have a fix on the way, just sorting out reunion first.
 

slik4x4

New Member
Nov 3, 2019
14
4
I was having the same script issues and managed to do a fix.

In game/modAdditions/modGallery.rpy find the following lines:

Code:
define danny = GalleryItem("Danny", 1, "dannyhandjob", "2/185.webp")
define danny = GalleryItem("Danny", 1, "galleryScene1", "4/227.webp")
and change to

Code:
define Danny = GalleryItem("Danny", 1, "dannyhandjob", "2/185.webp")
define Danny = GalleryItem("Danny", 1, "galleryScene1", "4/227.webp")
Simply starting with an uppercase 'D' does the trick; the variable name is conflicting with the character one ;)

Worked for me, thanks.
 
  • Like
Reactions: raaco and OscarSix