- Joined
- Jun 1, 2017
- Messages
- 8
- Reaction score
- 0
- First Language
- English
- Primarily Uses
- RMMV
Yes. Live updates are previews for the next version.
@MinesharkGaming & @Ronivan please look in LeTBS.js for these lines:
(Line 1743~)Code:BattleManagerTBS.prepareEntityFlags = function () { ..... };
Replace them with:
Code:BattleManagerTBS.prepareEntityFlags = function () { $gameMap.events().forEach(function (event) { if (event && event.event()) { for (var i = 0; i < event.list().length; i++) { var command = event.list()[i]; if (command && command.code == 108) { var comments = command.parameters; for (var j = 0; j < comments.length; j++) { var comment = comments[j]; if (comment.match(/<LeTBS>\s?Flag\s?:\s?(.+)/i)) { this._startupFlags[event.x] = {}; this._startupFlags[event.x][event.y] = RegExp.$1; } } } } } }.bind(this)); };
Let me know if the issue is fixed.
What do you mean ? Can you show some pictures ?
Thanks for the help, but I managed to fix the bug myself by changing up the item giving event. Anyways, thanks so much!