Hello
here are some "cheats" and hints i found out:
for all of this you have to download the game.
Faster movement of all persons and vehicles in the game
- go to the file rpg_objects.js (i have v1.6.0)
- open it with editor
my values are (i dont know the standard value anymore, so maybe it isnt changed)
var speed = agi + Math.randomInt(Math.floor(5 + agi / 2));
Game_Map.prototype.scrollDistance = function() {
return Math.pow(2, this._scrollSpeed) / 128;
Game_CharacterBase.prototype.distancePerFrame = function() {
return Math.pow(2, this.realMoveSpeed()) / 64
Game_CharacterBase.prototype.initMembers = function() {
this._x = 0;
this._y = 0;
this._realX = 0;
this._realY = 0;
this._moveSpeed = 4;
this._moveFrequency = 6;
--------- you will have a faster movement and still the white field popping up. this is neded for game play and if you increase the speed the field may disappear and you are unable to proceed.
Vehicle
Game_Vehicle.prototype.initMoveSpeed = function() {
if (this.isBoat()) {
this.setMoveSpeed(8);
} else if (this.isShip()) {
this.setMoveSpeed(8);
} else if (this.isAirship()) {
this.setMoveSpeed(6);
}
};
Gold cheat
Game_Party.prototype.initialize = function() {
Game_Unit.prototype.initialize.call(this);
this._gold = 100000000000;
this._steps = 0;
this._lastItem = new Game_Item();
this._menuActorId = 0;
this._targetActorId = 0;
this._actors = [];
this.initAllItems();
};
then save the file with option "all data" and start the game.
Only possible if you restart the game.
___________
press "W" during dialogues and they are done in some seconds.
you may can put something on the keybord pressing "W" down and do something other besides
Apart from this it is a shame that the creator doesn't want a skip-button or offers a debug function to activate oder deactivate certain actions.
The good idea of his game suffers a lot under the time-wasting nothingburger-actions.