- Oct 30, 2019
- 116
- 69
It is said that there is one parameter in the game that breaks many quests and tasks, and the new versions do not fix it. Some numeric variables become uppercase words. For example: the event should trigger when the number of Carol's books is 4, but it will never be 4, because due to a bug, the +=1 operation does not add one to the number, but adds the character '1' to the string and it turns out something like '01111', which is converted to the number 1111 when compared. which is clearly not equal to 4. To fix this, you need to:
1) Open the file "www\js\rpg_objects.js"
2) Find a line this.operateVariable(i, this._params[2], value);
3) Replace it with this.operateVariable(i, this._params[2], parseInt(value, 10));
My English is pretty bad.
1) Open the file "www\js\rpg_objects.js"
2) Find a line this.operateVariable(i, this._params[2], value);
3) Replace it with this.operateVariable(i, this._params[2], parseInt(value, 10));
My English is pretty bad.
Last edited: