- Apr 3, 2022
- 75
- 23
Age-old RPG maker bug occurring on certain systems.The game seems to keep freezing for me? Like after a few mins of gameplay, the screen freezes but I can still interact with the game, just can't see what I'm doing.
1871 Graphics.render = function(stage) {
1872 if (this._skipCount === 0) {
1873 var startTime = Date.now();
1874 if (stage) {
1875 this._renderer.render(stage);
1876 if (this._renderer.gl && this._renderer.gl.flush) {
1877 this._renderer.gl.flush();
1878 }
1879 }
I wanted to fix this, bug I forgot. Thanks, for bringing it to my attention!Age-old RPG maker bug occurring on certain systems.
In the game folder, navigate to and open up the file named "rpg_core.js"
Its relative path in the game folder should be: \www\js\rpg_core.js
Open it up in any old text editor, then find this exact portion (just CTRL+F "this._skipCount ===" or "Graphics.render" , or go to line 1872)
Change the operators on line 1872 from "===" to "<=".Code:1871 Graphics.render = function(stage) { 1872 if (this._skipCount === 0) { 1873 var startTime = Date.now(); 1874 if (stage) { 1875 this._renderer.render(stage); 1876 if (this._renderer.gl && this._renderer.gl.flush) { 1877 this._renderer.gl.flush(); 1878 } 1879 }
from:
if (this._skipCount === 0) {
to:
if (this._skipCount <= 0) {
Save the file and try running the game - the screen image should no longer freeze with audio and game logic continuing.
Thanks! It fixed the problemAge-old RPG maker bug occurring on certain systems.
In the game folder, navigate to and open up the file named "rpg_core.js"
Its relative path in the game folder should be: \www\js\rpg_core.js
Open it up in any old text editor, then find this exact portion (just CTRL+F "this._skipCount ===" or "Graphics.render" , or go to line 1872)
Change the operators on line 1872 from "===" to "<=".Code:1871 Graphics.render = function(stage) { 1872 if (this._skipCount === 0) { 1873 var startTime = Date.now(); 1874 if (stage) { 1875 this._renderer.render(stage); 1876 if (this._renderer.gl && this._renderer.gl.flush) { 1877 this._renderer.gl.flush(); 1878 } 1879 }
from:
if (this._skipCount === 0) {
to:
if (this._skipCount <= 0) {
Save the file and try running the game - the screen image should no longer freeze with audio and game logic continuing.
Glad to hear it.Thanks! It fixed the problem
No worries. Love your games, you've got a guaranteed sale for this on Steam following Drain MansionI wanted to fix this, bug I forgot. Thanks, for bringing it to my attention!
Hownever mind i think i figured it out if anyone needs help its here im sure this is the answer not entirely sure
Hello I can't move in this certain pointI wanted to fix this, bug I forgot. Thanks, for bringing it to my attention!
from the blood bag puzzleI got Summer key and Winter key. Where I can find other two?
Blood bags gives Winter keyfrom the blood bag puzzle
That's where it stops for now. The next area is in development, sooner or later maybe in march or so... So I'm sure the next area is going to be Autumn and Spring key for whatever room the imp is hiding.Blood bags gives Winter key
Where are other two? Spring and Autumn?
The game is still though no ending yet I thinkyo how do i get the bad ending
go to the room where anne starts chasing you and talk to heryo how do i get the bad ending