Oct 21, 2019
107
288
206
It's too fucking big dawg. Thats why it is part 2. SolRui is 700mb. This game is 1.6GB and not even half finished.

View attachment 3397192 <------ There's the problem right there!

Yes, there are things you can do to fix it. But nobody is starting with RPG Maker because they know how to program. It's a good tool to start making games because you dont need to know shit about programming.

But again, if you are mad its laggy, thats a perfectly fine complaint to have, because it is in fact fuckin laggy.

The review im bitchin about doesnt even mention the lag, It complains about the stuff you find in damn near every rpg maker game. The UI, standard rpgm, the controls, well seems like normal rpgm controls to me, the save file location, well I bet its where every fuckin rpgm game stores its save file. lol
Size is irrelevant, as long as you don't flood the CPU with infinite processes of loading a shitton of resources at once.
2nd, you can use videos instead of images. So, instead of a parallel process constantly switching between pictures you can just run a video once.
3rd, you can make a game in RPGM without programing and plugins, but it will look exactly like the test projects. All the fancy stuff in the game, autosaves, text effects, etc - are all plugins, i.e. code. It's impossible to create something like that in vanilla RPGM, you have to code.
4th, finding a save is a design issue. Why does autosave saves in slot 7? Just, why? Why not in the 1st slot? And yes, you won't see the save file until you'll scroll down - which is not that obvious at all for some people.
 

jowishg

Yare yare dawa (ง •̀_•́)ง
Donor
May 6, 2018
2,541
4,526
428
Btw did anyone catch the joke Fujino made about himself in the recent update ?

When Kirito and Asuna watched the movie and Kirito complained it was too long, Asuna replied by saying something like the film director Fujino-san like to write a lot of dialogues lol
 

4-kun

Engaged Member
Oct 14, 2018
2,282
3,335
394
Btw did anyone catch the joke Fujino made about himself in the recent update ?

When Kirito and Asuna watched the movie and Kirito complained it was too long, Asuna replied by saying something like the film director Fujino-san like to write a lot of dialogues lol
Yeah, I also got a feeling that the portrayal of Kirito in this update pretty much reflects Fujino's current state. :D
 

kinglionheart

Forum Fanatic
Sep 12, 2019
4,215
9,376
678
Btw did anyone catch the joke Fujino made about himself in the recent update ?

When Kirito and Asuna watched the movie and Kirito complained it was too long, Asuna replied by saying something like the film director Fujino-san like to write a lot of dialogues lol
A little self-deprecating humor. It is fun and humbling to see a creator laughing at himself.
 
  • Like
Reactions: AlterInfernalAllius

Huy111

New Member
Jul 21, 2023
8
1
94
hey guys, why my screen is black when i doing the quest catch the Owl? Anybody have the file save after this? 1709227551900.png
 

AlterInfernalAllius

Engaged Member
Aug 4, 2017
2,089
3,282
386
Btw did anyone catch the joke Fujino made about himself in the recent update ?

When Kirito and Asuna watched the movie and Kirito complained it was too long, Asuna replied by saying something like the film director Fujino-san like to write a lot of dialogues lol
LMAO, I did NOT realize that until you said it, quickly went back to check, holy shit, that's golden XD

Fujino is truly a based dude and he's the only NTR content-creator I have ever felt like saying that about, he just keeps showing it more and more as time passes honestly :p
 

skizzat93

Member
Apr 14, 2018
454
506
297
Size is irrelevant, as long as you don't flood the CPU with infinite processes of loading a shitton of resources at once.
2nd, you can use videos instead of images. So, instead of a parallel process constantly switching between pictures you can just run a video once.
3rd, you can make a game in RPGM without programing and plugins, but it will look exactly like the test projects. All the fancy stuff in the game, autosaves, text effects, etc - are all plugins, i.e. code. It's impossible to create something like that in vanilla RPGM, you have to code.
4th, finding a save is a design issue. Why does autosave saves in slot 7? Just, why? Why not in the 1st slot? And yes, you won't see the save file until you'll scroll down - which is not that obvious at all for some people.
1. size is relevant, rpgmaker is single core engine, so the more data there is to move the heavier it becomes,
2. no you can't use video, rpgmaker is made only for full screen video and fujino uses partial animations often, and video are heavier
3. no you don't have if the plug in are well made, I made a game myself the most you have to do is read the instruction e copy paste the commands
4. the save window open on the most recent save, you don't need to search for it, it's in the middle of the screen every time, and honestly I prefer it's in slot 5 instead of 1 so I can put my complete save there and never risk to overwrite it
 
  • Like
Reactions: LordFrz

eriksson123

New Member
Aug 4, 2022
3
15
103
is it supposed to end when ur studying with asuna and the other guy walks in? wont let me do anything, ive tried several times
 

4-kun

Engaged Member
Oct 14, 2018
2,282
3,335
394
LMAO, I did NOT realize that until you said it, quickly went back to check, holy shit, that's golden XD

Fujino is truly a based dude and he's the only NTR content-creator I have ever felt like saying that about, he just keeps showing it more and more as time passes honestly :p
Yeah, I'm curious about his profession. While he consistently delivers great animations, the entire treehouse event stood out as top-notch, feeling like it has been directed by an expert.
 
  • Like
Reactions: AlterInfernalAllius

hilih--

Member
May 22, 2019
118
232
167
1. size is relevant, rpgmaker is single core engine, so the more data there is to move the heavier it becomes
RPGMaker MV is based on Chromium (yes, the game runs in a browser), so it uses multiple cores.
Javascript is single-threaded, but it is not a problem unless you doing something unreasonable like emulating video from a bunch of images.

2. no you can't use video, rpgmaker is made only for full screen video and fujino uses partial animations often, and video are heavier
It is possible with plugins, this game uses not-fullscreen (partial) video (*.mpon files is *.webm with changed extension).

The video has a smaller size and is decoded on GPU, and it is much better than storing each frame as a PNG image and decoding in the CPU, additionally, often images should be also decrypted first because of RPGMaker encryption.

The problem with Fujino games is that he uses variable animation speeds (the time between frames is variable for each frame), this cannot be easily replaced with video.
 
Last edited:

oozaru2023

Well-Known Member
Apr 10, 2023
1,039
2,198
396
RPGMaker MV is based on Chromium (yes, the game runs in a browser), so it uses multiple cores.
Javascript is single-threaded, but it is not a problem unless you doing something unreasonable like emulating video from a bunch of images.



It is possible with plugins, this game uses not-fullscreen (partial) video (*.mpon files is *.webm with changed extension).

The video has a smaller size and is decoded on GPU, and it is much better than storing each frame as a PNG image and decoding in the CPU, additionally, often images should be also decrypted first because of RPGMaker encryption.

The problem with Fujino games is that he uses variable animation speeds (the time between frames is variable for each frame), this cannot be easily replaced with video.
If it is possible to use plugins and put video right now I am doing it, it is surprising that Fujino does not do it, it saves all the lag that sometimes happens I even read somewhere that it is possible to combine
 
  • Like
Reactions: RuinedManLife

skizzat93

Member
Apr 14, 2018
454
506
297
RPGMaker MV is based on Chromium (yes, the game runs in a browser), so it uses multiple cores.
Javascript is single-threaded, but it is not a problem unless you doing something unreasonable like emulating video from a bunch of images.



It is possible with plugins, this game uses not-fullscreen (partial) video (*.mpon files is *.webm with changed extension).

The video has a smaller size and is decoded on GPU, and it is much better than storing each frame as a PNG image and decoding in the CPU, additionally, often images should be also decrypted first because of RPGMaker encryption.

The problem with Fujino games is that he uses variable animation speeds (the time between frames is variable for each frame), this cannot be easily replaced with video.
It seems I remember wrong, maybe was an older rpgmaker engine that I used in the past, I searched for those plug in but didn't exist, same thing for the multi core, pretty sure loaded only 1 core, must have been older than MV
 
3.80 star(s) 174 Votes