Bob69

Uploading the World
Uploader
Donor
Compressor
Mar 2, 2019
23,680
323,351
998
Night Bloom [v0.571] [SSDog] - Compressed

Win [374 MB]
- - - -

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

belec

Member
Aug 15, 2017
150
206
180
Got error when pressing T button:
this._messageWindow.isOpen is not a function

fixed error by modifying following script: NW_HideMessageOnKeyPress.js

extract to js/plugins/NW
 
Last edited:
  • Like
Reactions: inno3d

Lukazuki

Newbie
Jul 22, 2017
82
40
162
So version finishes once you wake up again in your apartment after the tentacle maze?
 

stella9410

New Member
Sep 14, 2019
5
3
127
If you can give me save file i can view where the problem is.
I seem to have copied everything correctly. The error on the auto save is significant. it appears after you refuse to take a bribe a second time from a guy in the bathroom after a fight
 
  • Like
Reactions: a1xkzx

belec

Member
Aug 15, 2017
150
206
180
I seem to have copied everything correctly. The error on the auto save is significant. it appears after you refuse to take a bribe a second time from a guy in the bathroom after a fight
Fixed error _Buttler is not defined


extract to js/plugins/build.

or you can modify file: js/plugins/build/ARPG_Core.js

at line 9429 replace battler function with the following:
Code:
        battler() {
            const data = this.arpgTempData();
            if (!data.battler) {
                if (this === $gamePlayer) {
                    // Player's battler comes from the party leader
                    data.battler = $gameParty.leader();
                } else if (this.eventId()) {
                    // Create new Actor
                    data.battler = new ARPG_Actor(this.eventId());
                } else {
                    // Fallback to default Battler
                    data.battler = new ARPG_Battler();
                }
            }
            return data.battler;
        }
 
4.00 star(s) 15 Votes