• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

DuckyBoy420

Newbie
Aug 28, 2022
16
12
just like the slimes when they grow in her belly there's different phases when it grows and all affects her speed and stamina but, I'm just suggesting i know the pros and cons, but overall is the devs decision not my.
there are plans for monster pregnancy to expand in the future, instead of being restricted to just slimes, and considering the dev's current plan to leave grid based movement, speed depuffs are entirely possible in the future.
Additionally, since I haven't seen anyone else mention it, there is going to be one more update in RPG Maker and then the game will be ported to unity, frame rate drops in RPGM are getting too bad for the dev to be content.
 

rapiersreipar

New Member
May 27, 2018
13
6
tried using a save editor to change all the exp to 90 and it doesn't work anymore. anyone know what happened? the saves are showing up but not letting me open them.
 

mofu2x

Member
Oct 10, 2020
102
544
Saw the dev has been having framerate problems. I hope he's not going through with the port to Unity since the actual problem is almost certainly how his AI works. AI is expensive in general and vision checks are particularly expensive. The standard way of solving this is to just run the expensive logic less because you don't really need to run it every frame.

Standard tricks:
  • Don't spawn all enemies on the map at once. Wait until the player gets close. (This gets tricky with patrolling enemies, but there are stationary ones that can benefit from this).
  • Disable/simplify logic of far-away AI.
  • Don't run expensive logic like pathfinding and vision checks every frame. Instead randomly run them every 0.1 to 0.3 seconds. (It needs to be random per AI to space the cost out evenly.)
  • Compare distance to the player squared against sight range squared because finding the exact distance requires a square root and that's expensive.
 

Diamona

Newbie
Jul 18, 2019
48
11
mofu2x Is the dev working completely solo, or do they have a community that develop games to ask for help on matters? I mean, couldn't you message that directly to the developer in their discord or something?
 
4.50 star(s) 11 Votes