Re: Mature Quest - v1.01 released
Here's a 1.02 with some quick fixes.
#!UcUxhR6Z!snBPXHTiQoj2DpViFd9HFnUnlva3kp4BUULfqkinwbA
I translated all the reported untranslated lines and a few more that I found which should hopefully take care of everything, but as always, let me know if you find more. The enemies calling for reinforcements dialogue is activated via script though, and the Mature Quest scripts are a total mess with tons of duplicates rendering others obsolete, so I may not have found the "main" script. I'll be on the lookout when I get a chance to start personally testing the TL tomorrow.
The unbreakable ghost ship wall has been fixed.
Rice's sex scene failing to activate when nude has been fixed. That one was my fuckup, sorry.
The Portgar clinic becoming unusable after tempting the receptionist has been fixed. The cause of this was pretty simple, self-switches are used to activate/deactivate tempt dialogue and when the dialogue ends, the self-switch is supposed to turn off. The dev simply forgot to make it do that. Could be other NPCs out there with this problem, let me know if you run into any.
The image failing to disappear after that sex scene in Hatahata was fixed.
Now let's talk about some other stuff.
This is the section of the script that's giving you the crash.
def item=(value)
# アイテム説明描画
self.contents.clear
return if value.description == ""
lh = 19
texts = value.description.split('\n')
3.times do |line|
self.contents.draw_text(3, (lh * line) - 8, self.contents.width, WLH, texts[line])
end
end
end
The bolded line is the one causing the problem. My coding knowledge is only rudimentary but I think it's trying to pull a description from an item that exists outside of the database which I think should only happen if you use a save from another version of the game like somebody else suggested.
As I suspected, the line in the script that the error is pointing to has to do with counter tiles. So it's either a bug in the script or RMVX itself. Either way I believe I know a fairly simple fix, just move the event to a tile that the player can't interact with when the NPC is supposed to be invisible. I'll go about implementing this tomorrow.
This is a very strange one. You mean the guy next to the door? Or the old man once you build the 2nd floor? If you have only 50 ecchiness then your tempt should be failing so it probably wasn't that. All I see happening in the event, especially with displaying images, is the common event that shows Laura's expression.
It's possible that you're missing some images somehow. Can you make sure you have these three files in your Graphics/Pictures folder?
ステローラ妊娠笑い100_100
ステローラ妊娠笑い100_50
ステローラ妊娠笑い100_15
If you do have those and the game is still crashing, can you confirm all the details? (Which NPC? Is it talk or tempt? Is Laura pregnant?)
Can anybody else see if they're getting the same bug?
What this leaves for me to look into is:
-Game crashing when no items in inventory
-Elven village event failing to start
-Getting locked out of brothel scenes
With the brothel stuff I have an idea about what's wrong. IIRC it only used like two switches to make you become #1, meaning if you did them in an incorrect order you might become #1 before doing all four. Anyway, we'll see when I look into it more.
Let me know if I forgot anything, otherwise hopefully I'll have everything fixed up tomorrow.
Here's a 1.02 with some quick fixes.
#!UcUxhR6Z!snBPXHTiQoj2DpViFd9HFnUnlva3kp4BUULfqkinwbA
I translated all the reported untranslated lines and a few more that I found which should hopefully take care of everything, but as always, let me know if you find more. The enemies calling for reinforcements dialogue is activated via script though, and the Mature Quest scripts are a total mess with tons of duplicates rendering others obsolete, so I may not have found the "main" script. I'll be on the lookout when I get a chance to start personally testing the TL tomorrow.
The unbreakable ghost ship wall has been fixed.
Rice's sex scene failing to activate when nude has been fixed. That one was my fuckup, sorry.
The Portgar clinic becoming unusable after tempting the receptionist has been fixed. The cause of this was pretty simple, self-switches are used to activate/deactivate tempt dialogue and when the dialogue ends, the self-switch is supposed to turn off. The dev simply forgot to make it do that. Could be other NPCs out there with this problem, let me know if you run into any.
The image failing to disappear after that sex scene in Hatahata was fixed.
Now let's talk about some other stuff.
Thank you so much for this!!
Edit: I have an error when I try use an item in battle
This is the section of the script that's giving you the crash.
def item=(value)
# アイテム説明描画
self.contents.clear
return if value.description == ""
lh = 19
texts = value.description.split('\n')
3.times do |line|
self.contents.draw_text(3, (lh * line) - 8, self.contents.width, WLH, texts[line])
end
end
end
The bolded line is the one causing the problem. My coding knowledge is only rudimentary but I think it's trying to pull a description from an item that exists outside of the database which I think should only happen if you use a save from another version of the game like somebody else suggested.
Okay I seem to be getting this error now
It's when I go to the Inn in the 10th town and try to talk the the npc which is normally at the door but is invisible , I also get it when I talk to the weapon merchant in the Church town where you get drugged. I've tried the translation fix file you posted but didn't fix it... Anyone else find a fix for this issue?
As I suspected, the line in the script that the error is pointing to has to do with counter tiles. So it's either a bug in the script or RMVX itself. Either way I believe I know a fairly simple fix, just move the event to a tile that the player can't interact with when the NPC is supposed to be invisible. I'll go about implementing this tomorrow.
I was about 50 lewdness and pregnant, an I wanna talk to the guys at the top in the restaurant in the start village (or seduce him....don't remember) and game crash saying he can't find someting in graphics.
This is a very strange one. You mean the guy next to the door? Or the old man once you build the 2nd floor? If you have only 50 ecchiness then your tempt should be failing so it probably wasn't that. All I see happening in the event, especially with displaying images, is the common event that shows Laura's expression.
It's possible that you're missing some images somehow. Can you make sure you have these three files in your Graphics/Pictures folder?
ステローラ妊娠笑い100_100
ステローラ妊娠笑い100_50
ステローラ妊娠笑い100_15
If you do have those and the game is still crashing, can you confirm all the details? (Which NPC? Is it talk or tempt? Is Laura pregnant?)
Can anybody else see if they're getting the same bug?
What this leaves for me to look into is:
-Game crashing when no items in inventory
-Elven village event failing to start
-Getting locked out of brothel scenes
With the brothel stuff I have an idea about what's wrong. IIRC it only used like two switches to make you become #1, meaning if you did them in an incorrect order you might become #1 before doing all four. Anyway, we'll see when I look into it more.
Let me know if I forgot anything, otherwise hopefully I'll have everything fixed up tomorrow.