- Joined
- Mar 28, 2016
- Messages
- 1,623
- Reaction score
- 1,439
- First Language
- French
- Primarily Uses
- RMMV
Hi guys, simple question.
Can i have same header here with other files .JS.
or i need to change variable ex:
var jon_interpreterCommand
var jon_interpreterCommand2
var jon_interpreterCommand = Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
jon_interpreterCommand.call(this, command, args);
because , my plugin.js are very huge, so i want to split some command line to put in other js file.
What the best ways
Tanks you
Can i have same header here with other files .JS.
or i need to change variable ex:
var jon_interpreterCommand
var jon_interpreterCommand2
var jon_interpreterCommand = Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
jon_interpreterCommand.call(this, command, args);
because , my plugin.js are very huge, so i want to split some command line to put in other js file.
What the best ways
Tanks you
Last edited by a moderator:
