Teravisor

Member
Jan 23, 2020
178
304
Sounds like he didn't repackage it.
You don't need to repackage it for this game. It's enough to extract and delete game.rgss3a.
When game doesn't find game.rgss3aa, it starts loading scripts from folders instead.
At least it worked that way for me.

EDIT: or you can wait for future versions, dev will add loading external scripts from separate folder.
EDIT2: if it still doesn't load that file, you can put line load_script("/Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb") into any existing script file in Data/Scripts/ folder as first line. But if it works like that, maybe I need to alter my optimization to actually boot up itself :(
 
Last edited:

Yukihirou

Well-Known Member
Feb 4, 2018
1,341
1,221
You don't need to repackage it for this game. It's enough to extract and delete game.rgss3a.
When game doesn't find game.rgss3aa, it starts loading scripts from folders instead.
At least it worked that way for me.

EDIT: or you can wait for future versions, dev will add loading external scripts from separate folder.
EDIT2: if it still doesn't load that file, you can put line load_script("/Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb") into any existing script file in Data/Scripts/ folder as first line. But if it works like that, maybe I need to alter my optimization to actually boot up itself :(
The camera script didn't work for me, so likely the optimization won't as well.

I moved the game.rgss3a away already. It's true I haven't repackage it, but rarely do i see a RPGmaker game that needs you to do that.


you can put line load_script("/Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb") into any existing script file in Data/Scripts/ folder as first line.
Holy shit, what kind of mind fuckery is this ? Happened when i put the line into 22_Default_Switch_Setup.rb

---------------------------
LonaRPG.Beta.0.4.2.4 - FUCK Wryter(F95)VER -
---------------------------
No such file or directory - /Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb
{0009}:66:in `load_data'
{0009}:66:in `load_script'
(eval):1:in `load_script'
{0009}:67:in `eval'
{0009}:67:in `load_script'
{0010}:35:in `block in load_from_list'
{0010}:33:in `each'
{0010}:33:in `load_from_list'
{0010}:66:in `load_from_rvdata'
{0010}:43:in `load_lona_scripts'
{0014}:1:in `<main>'
ruby:in `eval'
---------------------------
OK
---------------------------

So, i tried to change this (the one i copy from your post)

load_script("/Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb")

to this:

load_script("Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb")

and... it workied !?
 
Last edited:

Teravisor

Member
Jan 23, 2020
178
304
No such file or directory
Pardon me, should be load_script("Data/Scripts/Editables/996_NoCameraMoveOnAlt.rb")
without initial /

P.S. in that case optimization can be enabled by adding line load_script("optimize.rb") in, yet again, any script file.
Note: if something gets enabled 2 times you will instantly crash with Stack Overflow (or Stack smth as ruby's version of it) exception.
 
Last edited:
  • Red Heart
Reactions: Yukihirou

Yukihirou

Well-Known Member
Feb 4, 2018
1,341
1,221
P.S. in that case optimization can be enabled by adding line load_script("optimize.rb") in, yet again, any script file.
Note: if something gets enabled 2 times you will instantly crash with Stack Overflow (or Stack smth as ruby's version of it) exception.
Hm, it does not crash, it sent these 2 error messages and proceed to run the game

---------------------------
LonaRPG.Beta.0.4.2.4 - FUCK Wryter(F95)VER -
---------------------------
undefined method `process_nap_change' for class `Game_Actor'
{0009}:67:in `eval'
(eval):167:in `<class:Game_Actor>'
(eval):158:in `load_script'
{0009}:67:in `eval'
{0009}:67:in `load_script'
(eval):4:in `load_script'
{0009}:67:in `eval'
{0009}:67:in `load_script'
(eval):2:in `load_script'
{0009}:67:in `eval'
{0009}:67:in `load_script'
{0010}:35:in `block in load_from_list'
{0010}:33:in `each'
{0010}:33:in `load_from_list'
{0010}:66:in `load_from_rvdata'
{0010}:43:in `load_lona_scripts'
{0014}:1:in `<main>'
ruby:in `eval'
---------------------------
OK
---------------------------


AND


---------------------------
LonaRPG.Beta.0.4.2.4 - FUCK Wryter(F95)VER -
---------------------------
undefined method `reload_events_into_pos_hash' for nil:NilClass
{0009}:67:in `eval'
{0009}:67:in `eval'
{0009}:67:in `load_script'
(eval):2:in `load_script'
{0009}:67:in `eval'
{0009}:67:in `load_script'
{0010}:35:in `block in load_from_list'
{0010}:33:in `each'
{0010}:33:in `load_from_list'
{0010}:66:in `load_from_rvdata'
{0010}:43:in `load_lona_scripts'
{0014}:1:in `<main>'
ruby:in `eval'
---------------------------
OK
---------------------------



P/s: Can you tell me the chance for a group of beggars/refugees to appear in an encounter ? Should be a group of 4 refugess.
 

Teravisor

Member
Jan 23, 2020
178
304
Hm, it does not crash, it sent these 2 error messages and proceed to run the game

P/s: Can you tell me the chance for a group of beggars/refugees to appear in an encounter ? Should be a group of 4 refugess.
My mistake again, optimization should run last so loading it should be not any script, but one of: Data/Scripts/Editables/65535_Patch.rb , Data/Scripts/Editables/65535_Hime_F10.rb or Frames/Starter/Main.rb as those three get loaded last. First error caused most likely by optimization running before 97_Game_Actor_StateAndState.rb; second one... Can't say right away, but something went wrong. Most likely it won't affect game.

All encounters are written in Data/Scripts/Editables/34_Functions_RegionMap.rb
Depend on location and which refugees you mean. I know there's refugee camp, there are refugees that ask you to escort them, there are refugees that are attacked and you need to help them, there are beggars that ask you for money. Amount of refugees might differ in some cases. If it's beggars in noer, then same chance as preacher.
 
  • Like
Reactions: Yukihirou

Yukihirou

Well-Known Member
Feb 4, 2018
1,341
1,221
First error caused most likely by optimization running before 97_Game_Actor_StateAndState.rb; second one... Can't say right away, but something went wrong. Most likely it won't affect game.
I put load_script("optimize.rb") into Data/Scripts/Editables/65535_Patch.rb , does not get first error, still get second error. However game runs super smooth. Still worried.
 

Teravisor

Member
Jan 23, 2020
178
304
I put load_script("optimize.rb") into Data/Scripts/Editables/65535_Patch.rb , does not get first error, still get second error. However game runs super smooth. Still worried.
That error happens because optimize.rb is designed to be run not at startup, but at main menu. So it does extra setups to already existing map, which is not yet existent at load time.
You can remove all lines after load_script(...) calls in optimize.rb and those errors will disappear.
It affects nothing.

I don't feel like fixing it all because I know that in next version of game there'll be folder and installing mods will be literally copying into it without any need for optimize.rb file.
 
  • Wow
Reactions: Yukihirou

Yukihirou

Well-Known Member
Feb 4, 2018
1,341
1,221
Interesting, I stole from a preacher, what I got was human meat.
These guys...
Also, Lona get "Wet" status from eating said meat. Is this intended ?
 
Last edited:

Yukihirou

Well-Known Member
Feb 4, 2018
1,341
1,221
Is your Lona modded to have arousal generated by eating?
No, she did not get the "Taste" Mod, only the "Mouth" Mod.

Edit:, sorry, probably my mistake, loaded ealier save, still got "wet" status, must be from some other sources.
 
Apr 9, 2020
237
384
Probably determined by just HOW aroused she was before you told her to eat that meat.
But it's also possible that there's a slight error in the programming.
Or it could be a design choice.
actully she gets wet after you reach a sertan level of arousal i think its 100 or more
 
Apr 9, 2020
237
384
fanart!
made a fanart of esliy taking care of lona's hearr and a chibi cocona
esliy: you know am a docter not a heer stylest
lona: yah thank you esliy
(i know lona has short heer it's just that i wanted to try drawung long heer) also i plan on starting a thread where i and other pepole will post fanart of h games if you know how to start a thread please contact me in the conversation box and teach me how to i would realy apriciate that (also sorry if the image bing full size is anoyying you it's just that my stupid phone bugus when i enter images that are not there full size it'll just pin me to a coner and no mater what i do i wont be abele to see the image) IMG_20200831_182702.jpg IMG_20200831_182646.jpg
 
Last edited:
Apr 9, 2020
237
384
if you kill him or just sleep in he's clinic you can access the book in his room wish has his back story it's sad that he acts that way becuse you understand that he's just a wired kid that needs gaidenss also somthing suspitous about him is that some times when you kill him he drops MUTATED meet i suspect that he expremanted on him self using abomination
 
4.10 star(s) 185 Votes