3.30 star(s) 19 Votes

zarqupang

Forum Fanatic
Nov 2, 2017
5,552
1,484
well everything takes time. it's how you plan and work that really counts. plues you need not let those people who give money rush your work as well. imean there paying for your game are the games other dev make.
 

jan^s

Active Member
Dec 19, 2019
817
711
Apparently in order to make edits (to the code) or a plugin on RPG maker game need to know what version and type (RPG maker xx) was use in making the game.

Here is some code examples for expanding the amount of save slots, maybe the dev or a modder could take a look into incorporating these in the project.

unknown code type:
module DataManager
def self.savefile_max
return 16
end
end
change the numiceral variable (16) to whatever numerical variable value equal to save slot amount

javascript:
DataManager.maxSavefiles = function() {
return 50;
};

change the numerical variable (50) to whatever numerical variable value equal to save slot amount


It's a script by ERZENGEL.

It's currently set to 64 saves now.

Code: #==============================================================================
# ** More savefiles 1.10 ( .txt)
#------------------------------------------------------------------------------
# written by ERZENGEL
#==============================================================================
module ERZSAVE
# Max amount of savefiles
MAXSAVEFILES = 64
# Max amount the player is able to save (-1 = infinite)
MAXSAVEAMOUNT = -1
end
#==============================================================================
# ** Window_SaveFile
#------------------------------------------------------------------------------
# This window displays save files on the save and load screens.
#==============================================================================
class Window_SaveFile < Window_Base
#--------------------------------------------------------------------------
# * Object Initialization
# file_index : save file index (0 to the value of MAXSAVEFILES)
# filename : filename
#--------------------------------------------------------------------------
def initialize(file_index, filename)
super(0, 56 + file_index % ERZSAVE::MAXSAVEFILES * 90, 544, 90)
@file_index = file_index
@filename = filename
load_gamedata
refresh
selected = false
end
end
#==============================================================================
# ** Scene_File
#------------------------------------------------------------------------------
# This class performs the save and load screen processing.
#==============================================================================
class Scene_File
#--------------------------------------------------------------------------
# * Start processing
#--------------------------------------------------------------------------
def start
super
@file_max = ERZSAVE::MAXSAVEFILES
create_menu_background
@help_window = Window_
create_savefile_windows
if Saving
index = $game_temp.last_file_index
@help_window.set_text(Vocab::SaveMessage)
else
index = self.latest_file_index
@help_window.set_text(Vocab::LoadMessage)
end
@savefile_windows[@index].selected = true
@page_file_max = ((416 - @help_window.height) / 90).truncate
for i in 0...@file_max
window = @savefile_windows
if index > @page_file_max - 1
if index < @file_max - @page_file_max - 1
@top_row = index
window.y -= index * window.height
elsif index >= @file_max - @page_file_max
@top_row = @file_max - @page_file_max
window.y -= (@file_max - @page_file_max) * window.height
else
@top_row = index
window.y -= index * window.height
end
end
window.visible = (window.y >= @help_window.height and
window.y < @help_window.height + @page_file_max * window.height)
end
end
#--------------------------------------------------------------------------
# * Create Save File Window
#--------------------------------------------------------------------------
def create_savefile_windows
@top_row = 0
@savefile_windows = []
for i in 0...@file_max
@savefile_windows.push(Window_ (i, make_filename(i)))
end
end
#--------------------------------------------------------------------------
# * Move cursor down
# wrap : Wraparound allowed
#--------------------------------------------------------------------------
def cursor_down(wrap)
if index < @file_max - 1 or wrap
index = (index + 1) % @file_max
for i in 0...@file_max
window = @savefile_windows
if index == 0
@top_row = 0
window.y = @help_window.height + i % @file_max * window.height
elsif index - @top_row > @page_file_max - 1
window.y -= window.height
end
window.visible = (window.y >= @help_window.height and
window.y < @help_window.height + @page_file_max * window.height)
end
if index - @top_row > @page_file_max - 1
@top_row += 1
end
end
end
#--------------------------------------------------------------------------
# * Move cursor up
# wrap : Wraparound allowed
#--------------------------------------------------------------------------
def cursor_up(wrap)
if index > 0 or wrap
index = (index - 1 + @file_max) % @file_max
for i in 0...@file_max
window = @savefile_windows
if index == @file_max - 1
@top_row = @file_max - @page_file_max
window.y = @help_window.height + i % @file_max * window.height
window.y -= (@file_max - @page_file_max) * window.height
elsif index - @top_row < 0
window.y += window.height
end
window.visible = (window.y >= @help_window.height and
window.y < @help_window.height + @page_file_max * window.height)
end
if index - @top_row < 0
@top_row -= 1
end
end
end
end
#==============================================================================
# ** Scene_Menu
#------------------------------------------------------------------------------
# This class performs the menu screen processing.
#==============================================================================
class Scene_Menu
#--------------------------------------------------------------------------
# * Start processing
#--------------------------------------------------------------------------
alias erz_saveslots_start start
def start
if $game_system.save_count >= ERZSAVE::MAXSAVEAMOUNT and ERZSAVE::MAXSAVEAMOUNT >= 0
$game_system.save_disabled = true
end
erz_saveslots_start
end
end
 
  • Like
Reactions: fulldolltop12345

wanted54

Newbie
Jul 5, 2020
17
4
well everything takes time. it's how you plan and work that really counts. plues you need not let those people who give money rush your work as well. imean there paying for your game are the games other dev make.
True and True.
I saw people`s opinions over that kind of matter.
Saw games that should be a masterpiece go down badly from making in-game choices into semi-auto if not full-auto with very little that actually could be a player's opinion as to what path you would have taken.
Very disappointing and saw enough games out there taking that path...its a shame...
On the other hand, I saw games being abanded due to personal kind real-life problems and half my guess is that if they had been paid as been supported with some monthly fee to cover the salary as living expenses to make just games I'm sure that most of those games would be better than a lot of games that actually coming from companies with the failed script trying to push down our throat rubbish and just slaps your face with some sorry ass 3d good graphics and needs some mid to high-end horsepower machine to play to the mid + fullest to see the fly on the top of that hill flying....lol like I care for that crap detail...
Again that could be just me.
 

zarqupang

Forum Fanatic
Nov 2, 2017
5,552
1,484
what i like about this game and the one befor it the modles are good the girls look good scene's and story are also there and it does have some luaghs witch sound like a good combo
 

Jong Games

Harem in Another World Developer
Modder
Game Developer
Jan 28, 2018
552
2,497
Here is a to the gallery mod I created for the game

To access the gallery start a new game and a gallery item will be added into your inventory under key items. You can then use that to access the gallery.
 
Last edited:

daedilus

Active Member
Mar 11, 2017
692
1,392
You're both right and wrong. He didn't left the game only for her, but also for his own mental health.
Oh, ok... So as long as he's abandoning the game so he doesn't go 'crazy' after receiving about $24,000 in subscriber support over the last 2 years, i guess that's OK...

I mean we wouldn't want anyone feeling bad about just taking $24,000 from people, and then walking away because some pussy cozied up to the money, right?

I mean I could see where that could kind of nag at you... After all, in any regulated industry that would be what we call 'fraud' and punishable by 5-10 in the bang-you-in-the-ass prison, but hey... As long as he doesn't go 'crazy' and gets with a new girl, i guess everyone who paid can just fuck off.
 

zarqupang

Forum Fanatic
Nov 2, 2017
5,552
1,484
just a thought but how do we even no she told him to leave the game. i mean mybe it is in the chat some where but how do we really know it was her doing.
 
  • Thinking Face
Reactions: wanted54

Xelthax

Newbie
Nov 23, 2016
53
76
How do you find the girl that rescued Vruk from the tower? I can't progress the game. Also goblin daughter is always cleaning lol
I haven't played the latest update, so I can't help you there, sorry. And yes, the game isn't set up well so that you could redo some scenese with the harem, which is one of the biggest minuses.
 

glo5

Newbie
Jan 9, 2023
34
12
To access the gallery start a new game and a gallery item will be added into your inventory under key items. You can then use that to access the gallery.
[/QUOTE]


Where is folder?
 
  • Like
Reactions: RecicledJ

Danyal328

New Member
Sep 18, 2022
4
0
Can you rescue Vera yet? Been trying to find the witch's daughter, but not found her yet. Also, I've gotten Tish and Lara pregnant, still not managed that with Shannon. Am I at the end of 0.19?
Did you find the witch's daughter if so please tell me whete
 

wanted54

Newbie
Jul 5, 2020
17
4
Oh, ok... So as long as he's abandoning the game so he doesn't go 'crazy' after receiving about $24,000 in subscriber support over the last 2 years, i guess that's OK...

I mean we wouldn't want anyone feeling bad about just taking $24,000 from people, and then walking away because some pussy cozied up to the money, right?

I mean I could see where that could kind of nag at you... After all, in any regulated industry that would be what we call 'fraud' and punishable by 5-10 in the bang-you-in-the-ass prison, but hey... As long as he doesn't go 'crazy' and gets with a new girl, i guess everyone who paid can just fuck off.
just a thought but how do we even no she told him to leave the game. i mean mybe it is in the chat some where but how do we really know it was her doing.
Let us see...
First, this isn't the first time quitting but the second quitting the very same game he created!
Second, a peach aka a girl made him lose his mind holding her but farting away a steady income because?...what?...
not losing his mind over what again ?!!....the scenario made him ....do what?....the very scenario he created ?!!
and again this so-called girl is above money or he did truly have a problem with his mental health ?!!
If that girl like him and wants him then that's truly awesome !!
I personally find it so hard to believe ... but what I do believe is irrelevant but kicking away people that came second-time hoping to see something ?!!... wow! just wow!
The only reason I stay in this thread from now on is very pure curiosity and that game ain't going to see, me again.
In my books, he is marked as a creator that creates dead games.
I just admire people that support that kind of person but at the same time, not that person.
 
Last edited:
3.30 star(s) 19 Votes