Mod HTML Masters of Raana - Expansion Mod [0.5.3a] [json.err]

5.00 star(s) 1 Vote

json.err

Member
Sep 14, 2016
102
170
138
Thnks for the mod json, its really helpful.

One thing that I feel could be added and would be a cool touch of realism to the game is NPC's being able to impregnate other NPC's when having relations (vaginal) and track who is the father and stuff, I wonder if that's possible to add this as a toggle to avoid people complaining about NTR and stuff
I had this idea for a while but didn't think about details much. Since it's one of the base mechanics it will absolutely requires a lot of injections in the base code in a lot of places. I believe it's possible but will be a very difficult thing to do especially considering game code is a mess sometimes and has a bunch of outdated and even unused chunks that are still there and distract from live code. I might do it at some point but no promises.
 
  • Heart
Reactions: crook_flp

iny

Newbie
Aug 24, 2016
16
18
240
0.5.3 is up. Show if npc is available for interaction and some fixes and tweaks.
FYI, 0.5.3 appears to mostly work with MoR 0.8.4.8 A11 with a savegame from 0.8.4.7. 139/139 replacements done and the menus appear to work with the exception of Herald skills, special slaves and threesome chance.
Thanks for the mod!
 
Last edited:

json.err

Member
Sep 14, 2016
102
170
138
To be honest I don't really want to check what's wrong with game alpha version. Alphas tend to be not polished things with some new unresolved bugs. So I will update mod when new public version is up since it requires to carefully check code changes. Reading changelog is not enough unfortunately. For example I don't see anything regarding herald in the changelog so not sure why it could be broken. Will double check when updating though.
 
  • Like
Reactions: iny

WayonF95

Newbie
Dec 17, 2016
36
24
237
I have a problem with the latest (5.3) Mod who wasn't present in any previous Mod.

I'm using a "old" MoR version 0.8.4.5 and when using some function (Special slaves, threesome chances, herald) it give me
script error.

Typing for the console (Ctrl+shift+j), i see this message:

Uncaught TypeError: Cannot read properties of undefined functions.js:1646 (reading 'invertValue')

Any idea ? Thanks.
 

json.err

Member
Sep 14, 2016
102
170
138
FYI, 0.5.3 appears to mostly work with MoR 0.8.4.8 A11 with a savegame from 0.8.4.7. 139/139 replacements done and the menus appear to work with the exception of Herald skills, special slaves and threesome chance.
I have a problem with the latest (5.3) Mod who wasn't present in any previous Mod.

I'm using a "old" MoR version 0.8.4.5 and when using some function (Special slaves, threesome chances, herald) it give me
script error.
Okay... It was actually bad testing on my side, sorry. Uploaded 0.5.3a where it's fixed.
 

vanpett

Newbie
Nov 23, 2018
27
13
83
Another small suggestion: It would be practical to see on one page how long the individual revital doses still work. I know we can already deduct it from the age sorting menu but it's a lot of calculating and you got to do it with each household member individually.

If it isn't too complicated could you add a revital page to the sorting menus?
 
  • Thinking Face
Reactions: json.err

jayf150

Newbie
Apr 13, 2020
19
9
168
I had this idea for a while but didn't think about details much. Since it's one of the base mechanics it will absolutely requires a lot of injections in the base code in a lot of places. I believe it's possible but will be a very difficult thing to do especially considering game code is a mess sometimes and has a bunch of outdated and even unused chunks that are still there and distract from live code. I might do it at some point but no promises.
I dont know anything about coding but Im a big ntr fan and really wanted the npcs to be able to impregnate each other aswell so I screwed around with the html file a bit and managed to make it work by putting <<set _roomsex.pregnant+=1>> at the end of the second paragraph in wear and sex xp for guy - female its not perfect its 100% even if lubes on and men get pregnant too not sure if that helps but figured id mention it
 

crook_flp

New Member
Jul 17, 2020
4
3
103
I dont know anything about coding but Im a big ntr fan and really wanted the npcs to be able to impregnate each other aswell so I screwed around with the html file a bit and managed to make it work by putting <<set _roomsex.pregnant+=1>> at the end of the second paragraph in wear and sex xp for guy - female its not perfect its 100% even if lubes on and men get pregnant too not sure if that helps but figured id mention it

expanding on this, i've added some conditions and stats, maybe it'll help

Code:
//ntr mod

<<set $npcimpregroll to random(1, 10)>>

<<if $lossroll gte 4>> //only if vag
<<set _roomsex.fuckcount+=1>> //not sure what that does, but the var does exist
<<set _roomsex.cumbuild+=1>> //not sure what that does, but the var does exist
<<set _roomsex.cumpussy+=1>> //exam page load count
<<set _roomsex.seload+=2>> //npc load icon (1 to 10)

<<if $npcimpregroll gte 5 and _roomsex.lube is false>> //random chance to impreg + only if lube off
<<set _roomsex.pregnant+=1>>
<</if>>

<</if>>
line 347989 (ctrl + f "wear and sex xp for guy - female")
 

json.err

Member
Sep 14, 2016
102
170
138
I dont know anything about coding but Im a big ntr fan and really wanted the npcs to be able to impregnate each other aswell so I screwed around with the html file a bit and managed to make it work by putting <<set _roomsex.pregnant+=1>> at the end of the second paragraph in wear and sex xp for guy - female its not perfect its 100% even if lubes on and men get pregnant too not sure if that helps but figured id mention it
expanding on this, i've added some conditions and stats, maybe it'll help
Well this place is a correct one to start impregnation but the whole approach shouldn't be likes this. Males should just place their loads in females here and then it's a race who will be the father (you still can be if your load is there too). It also won't support the case of goldwalkers/prostitutes and probably some others. Nursery should distinquish kids as well. So yeah, it's a solutiion but quick and dirty one. Unfortunately It requires much more efforts to make it properly.
 
5.00 star(s) 1 Vote