3.80 star(s) 9 Votes

davidtoxy

Newbie
Apr 23, 2020
18
12
So this game has a massive grind issue once you get to a certain point not even that far in. To fix it I made the EXP rewards way higher so I can level up faster. In rpg_manager.js find the BattleManager.makeRewards function and change it like this (I just commented out for easy revert later if I want to). I set it to be 10000 but you could make it higher or lower.

Code:
BattleManager.makeRewards = function() {
    this._rewards = {};
    this._rewards.gold = $gameTroop.goldTotal();
    this._rewards.exp = 10000;//$gameTroop.expTotal();
    this._rewards.items = $gameTroop.makeDropItems();
};
Alternatively do something like this for a 10x multiplier and it should maybe scale better for the entire game?
Code:
BattleManager.makeRewards = function() {
    this._rewards = {};
    this._rewards.gold = $gameTroop.goldTotal();
    this._rewards.exp = 10 * $gameTroop.expTotal();
    this._rewards.items = $gameTroop.makeDropItems();
};
u know how i do with the items drops for get more like 10 times like exp?
 

JakeTapper

Member
May 17, 2020
181
462
u know how i do with the items drops for get more like 10 times like exp?
It would probably be somewhere in the $gameTroop.makeDropItems(); function but I haven't looked into it. There's probably some kind of % chance modifier (since Cornet can affect drop rate) so you could adjust it to be 100% chance or something. I'll see if I can figure something out...

Edit: So all I can figure out is it probably has something to do with this function in rpg_objects.js:
Code:
Game_Troop.prototype.makeDropItems = function() {
    return this.deadMembers().reduce(function(r, enemy) {
        return r.concat(enemy.makeDropItems());
    }, []);
};
I tried searching through all the source files and couldn't find more references to makeDropItems() so kinda at a loss here. I really don't have much experience with RPGM but figuring out how to mod money was easier because it's just finding a number and multiplying it. This is a bit more complex because it involves a list of drops and tracking down a function that I can't seem to find aside from a few references to it. Maybe someone else has an idea?
 
Last edited:

PunpunRen

Newbie
Jul 13, 2021
83
126
can someone explain me what does that clock symbol on the bottom right corner of some updates mean?
bc I saw this on the "latest updates" page and thought a new version came out, but it seems it only got freed from the R7 jail?
 

reacers

Newbie
Jul 19, 2018
21
13
So this game has a massive grind issue once you get to a certain point not even that far in. To fix it I made the EXP rewards way higher so I can level up faster. In rpg_manager.js find the BattleManager.makeRewards function and change it like this (I just commented out for easy revert later if I want to). I set it to be 10000 but you could make it higher or lower.

Code:
BattleManager.makeRewards = function() {
    this._rewards = {};
    this._rewards.gold = $gameTroop.goldTotal();
    this._rewards.exp = 10000;//$gameTroop.expTotal();
    this._rewards.items = $gameTroop.makeDropItems();
};
Alternatively do something like this for a 10x multiplier and it should maybe scale better for the entire game?
Code:
BattleManager.makeRewards = function() {
    this._rewards = {};
    this._rewards.gold = $gameTroop.goldTotal();
    this._rewards.exp = 10 * $gameTroop.expTotal();
    this._rewards.items = $gameTroop.makeDropItems();
};

Man, this was a live saver for me. I could modify everything in my save game with , but never could change my character levels. This made it so much easier to skip the boring endless grind!
 
  • Like
Reactions: JakeTapper

vogelbeest

Engaged Member
Jan 9, 2021
2,001
2,855
I tried searching through all the source files and couldn't find more references to makeDropItems() so kinda at a loss here.
Plugins/AddDropRateTrait perhaps? At least it sounds like it's close lol...


Edit : It seems to work if you fiddle around in that file....


You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
  • Like
Reactions: trocolloo

TheBlueKnight

Discussion Dynamo
Respected User
Jr. Uploader
Oct 1, 2018
25,022
18,983
There are bugfixes from the official dlsite.
This isn't the Japanese game from DLSite, it's the English one from Steam. Other than a update on the day this thread was made there's of any update. Don't think OTAKU Plan are very good at updates.
 

Enricus11112

New Member
Jan 2, 2018
14
7
Unfathomably bad game, and it's made even worse by the fact that the graphics, the concept and even the core gameplay is otherwise great. Make me a little upset that someone would spend all this effort only to create something so painful to actually play.
 
  • Sad
Reactions: Rastafoo

reacers

Newbie
Jul 19, 2018
21
13
yooooooo any porn in this?
Yes, a couple of scenes, but at least with the normal difficulty you have to prepare for a long grind until you unlock some.

Actually they are pretty nice and the game get's kind of harem vibes. Playing for 12hr now and it's pretty good
 

Keeminko

New Member
Aug 1, 2021
8
4
No idea why no ntr tag, catgirl gets raped by some thugs without protagonist choice. Instant turn off for me, unfortunately, i really liked the art and didn't mind the grind. Just a warning to those like me
 

Kinni

Active Member
Jul 30, 2017
732
312
No idea why no ntr tag, catgirl gets raped by some thugs without protagonist choice. Instant turn off for me, unfortunately, i really liked the art and didn't mind the grind. Just a warning to those like me
They are actually stopped right before the actual sex happens, although the scene is definitely still unconfortable.
 
  • Like
Reactions: JarredKiller

Keeminko

New Member
Aug 1, 2021
8
4
They are actually stopped right before the actual sex happens, although the scene is definitely still unconfortable.
huh, maybe they changed that? i played it awhile ago, and there was actual rape. dropped it on that scene
 

JBukharin

Member
Feb 8, 2018
162
164
Kind of funny how this game sets up a perfect "NTR game" with seemingly no NTR.

You don't have permission to view the spoiler content. Log in or register now.
I kind of agree with this. The game is set up with some premises that would be perfect for a NTR so I was kind of expecting to find some secret NTR due to this circumstance. I wouldn't say I was 'disappointed' as I really am not into the genre (only driven to play those by morbid curiosity on how bad and trashy some of these NTR Plots get), but this feels like a set-up for an opportunity that got wasted.

I am glad it wasn't NTR but... fuck, it sure felt like I was being slowly coaxed into a 'Surprise, the girls get stolen!' kind of situation.
 
3.80 star(s) 9 Votes