3.40 star(s) 13 Votes

JakeTapper

Member
May 17, 2020
213
584
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();
};
 
Last edited:

zeraligator

Well-Known Member
May 25, 2018
1,330
1,036
Nice to see some (english) dialogue in the previews, makes it a lot easier to see if the translation is quality.
 

JakeTapper

Member
May 17, 2020
213
584
how heavily do choices matter? i'm at the first choice (seelie or feena) will i be able to see both eventually or do i have to restart?
I've only made it to the capital so I don't know how many choices there are but this is the only choice I've encountered throughout the game so far. Depending on who you pick you get a different scene. I recommended saving beforehand and choosing each so that they go into the gallery. If this affects anything later no clue. Doesn't seem like it so far.
 

Bryanis

Active Member
Jan 4, 2021
675
437
Has far as I understood from the "tutorial" of the fairy, the choice don't impact much.
If it's seeing A or B, you'll just see one in the game, but unlock both in the gallery.

However, it seem that choising A over C at some point have an impact on the ending (no harem route).
 

JakeTapper

Member
May 17, 2020
213
584
Has far as I understood from the "tutorial" of the fairy, the choice don't impact much.
If it's seeing A or B, you'll just see one in the game, but unlock both in the gallery.

However, it seem that choising A over C at some point have an impact on the ending (no harem route).
There's a Steam thread with some spoilers but from what it sounds like there's 2 endings. There's an expected one and then another that involves going to a different location where the alternate ending plays out.

As for getting scenes with girls not sure if there's any more that explicitly involve choices but once you get to the capital city you unlock a feature where every girl has affection levels that can be increased and then you have taint points you can use to unlock scenes with each girl I guess? Not really sure the exact mechanic of this would be nice if someone could post a guide.
 

JBukharin

Member
Feb 8, 2018
193
211
how heavily do choices matter? i'm at the first choice (seelie or feena) will i be able to see both eventually or do i have to restart?
The first choice is a about the scene you get. By going on the 'Memories' section in the main menu you get to play the scene again and pick the other choice if you want, unlocking 'Seelie 1' or 'Feena 1' depending on the previous choice. It should not impact much.

Also, someone mentioned NTR- that's not a thing as far as I could find. So no, there's no NTR. Would it be predictable? Yes, but there is none of that.
 

trocolloo

Member
Jul 18, 2018
287
149
in the small pine-like forest of deeper green south of the Capital, between the town and the forest with the wind orb tower.
Careful, they're way stronger than the monster in the tower.
Thanks! Tho Idk why I missed this reply and ended up finishing the game, wich has left me with a question that might be a spoiler

So anyone knows if
You don't have permission to view the spoiler content. Log in or register now.

Also about the difficoulty, I chose the normal one, but I quickly found myself underlevelled for the dungeons I needed to challenge, I tried taking the rooms head on and clearing everything, even took a spot near a statue and started farming levels, but it still wasn't enough, so I ended up chosing the option to always be able to run away from battles and to lower the difficoulty to easy, but even then I keeped being underlevelled, but gladly I found the post of Jake, and did the same thing, except I multiplied the exp function by 10, this way I coul kill one random mob and it would count as if i killed ten, this way I could just take on one or two mobs and then go straight to the boss, wich well 20-30 mobs is still low, but thanks to miniboss and boss monsters exp being multiplied by 10 I more than overcame that and became overleved af

So if the problem was the difficoulty I guess I prolly have to start the game again in normal but with this same trick? Tho Idk if I have the patience to do that sigh...
 

SMD

Newbie
Jan 13, 2018
60
59
How to get into the pyramid?
You have to defeat the boss in the ocean tower and the earth tower. A key drops after- I did earth tower first since there was a town nearby and the drops were better, the ocean tower was about 5 levels lower so it was a breeze to beat.

Fair warning, the pyramid is annoying as all hell but the final battle is fun and the airship is awesome, also after you get access to a mine to find high level crafting ingredients right after.
 
3.40 star(s) 13 Votes