Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Help: ATB system

Noctis

Villager
Xy$
0.00
I want to ask is there any active time battle plugin where you can select modes like 'active' or 'wait'? Like the one in RMVX ace I think it's tankentai. The battle is more exciting and lively if the atb gauge is running continuously and the battle do not pause even when selecting commands.
If there is none, is there someone making a plugin like this? Can you guys post the link so I can follow it.
Thanks (cheeky)
 

eivl

Local Hero
Xy$
0.00
ahh... like a charge battle system thing. @DoubleX has made something like this i think but have not had time to look at it, he might just let us know here if his version is what you want.
 

DoubleX

Adventurer
Xy$
1.12
T

It looks great, but it seems complicated to use I cant make it work.
May you please tell me what's exactly your case? Like bugs you've encountered(please show the whole error messages if that's the case), difficulties on setting the configuration values/using notetags(please specify all such configrations/notetags if that's the case), etc :)
 

Noctis

Villager
Xy$
0.00
May you please tell me what's exactly your case? Like bugs you've encountered(please show the whole error messages if that's the case), difficulties on setting the configuration values/using notetags(please specify all such configrations/notetags if that's the case), etc :)
I downloaded it and got a txt file so I changed the extension to.js, is that right? Then I just paste it in the plugins folder then turn it on. But it's not working. Are there configurations that need to be set up first?
 

DoubleX

Adventurer
Xy$
1.12
I downloaded it and got a txt file so I changed the extension to.js, is that right? Then I just paste it in the plugins folder then turn it on. But it's not working. Are there configurations that need to be set up first?
Do you mean the plugin manager doesn't show description, parameters, help, etc?
 

Noctis

Villager
Xy$
0.00
Do you mean the plugin manager doesn't show description, parameters, help, etc?
It does, I click the help and saw that the plugin needs to be named xxxx.xxx, then when I renamed it that's when nothing shows up. It will be great if you can give me a step by step instruction :)
 

DoubleX

Adventurer
Xy$
1.12
It does, I click the help and saw that the plugin needs to be named xxxx.xxx, then when I renamed it that's when nothing shows up. It will be great if you can give me a step by step instruction :)
* The plugin file name must be the same as DoubleX_RMMV.PATB_Core_File, which
* must be edited by editing the plugin js file directly
* The default value of DoubleX_RMMV.PATB_Core_File is
* DoubleX RMMV Popularized ATB Core v000g
// The plugin file name must be the same as DoubleX_RMMV.PATB_Core_File
DoubleX_RMMV.PATB_Core_File = "DoubleX RMMV Popularized ATB Core v000g";
It means the file name must be the same as DoubleX_RMMV.PATB_Core_File, which is DoubleX RMMV Popularized ATB Core v000g in this case. If you haven't changed the file name after downloaded the js file, the file name should be the same as the default value of DoubleX_RMMV.PATB_Core_File :)
 

Noctis

Villager
Xy$
0.00
* The plugin file name must be the same as DoubleX_RMMV.PATB_Core_File, which
* must be edited by editing the plugin js file directly
* The default value of DoubleX_RMMV.PATB_Core_File is
* DoubleX RMMV Popularized ATB Core v000g
// The plugin file name must be the same as DoubleX_RMMV.PATB_Core_File
DoubleX_RMMV.PATB_Core_File = "DoubleX RMMV Popularized ATB Core v000g";
It means the file name must be the same as DoubleX_RMMV.PATB_Core_File, which is DoubleX RMMV Popularized ATB Core v000g in this case. If you haven't changed the file name after downloaded the js file, the file name should be the same as the default value of DoubleX_RMMV.PATB_Core_File :)
I renamed it "DoubleX RMMV Popularized ATB Core v000g" then got an error
Type Error undefined is not a function
 

Noctis

Villager
Xy$
0.00
May you please open the console and show all error messages?
Here:

Uncaught TypeError: Cannot set property patb_rate of #<Game_Battler> which has only a getter
rpg_managers.js:1618 TypeError: undefined is not a function
at Game_Actor.Game_Battler.refresh (file:///C:/Users/Arjel/Documents/Games/Test%201/js/plugins/DoubleX%20RMMV%20Popularized%20ATB%20Core%20v000g.js:947:39)
at Game_Actor.refresh (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:3742:36)
at Game_Actor.initEquips (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:3570:10)
at Game_Actor.setup (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:3429:10)
at Game_Actor.initialize (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:3394:10)
at new Game_Actor (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:3379:21)
at Game_Actors.actor (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:4556:35)
at Game_Party.<anonymous> (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:4840:25)
at Array.forEach (native)
at Game_Party.setupStartingMembers (file:///C:/Users/Arjel/Documents/Games/Test%201/js/rpg_objects.js:4839:30)
 

DoubleX

Adventurer
Xy$
1.12
Place this diagnose snippet right below Popularized ATB Core:
Code:
console.log("Game_Battler.prototype.set_patb_refresh", Game_Battler.prototype.set_patb_refresh);
Game_Battler.prototype.refresh = function() {
    console.log("Game_Battler.prototype.refresh", this, this.set_patb_refresh);
    this.refreshPatb();
    if ($gameSystem.is_patb()) { this.set_patb_refresh(); } // Added
}; // Game_Battler.prototype.refresh
 

Noctis

Villager
Xy$
0.00
Place this diagnose snippet right below Popularized ATB Core:
Code:
console.log("Game_Battler.prototype.set_patb_refresh", Game_Battler.prototype.set_patb_refresh);
Game_Battler.prototype.refresh = function() {
    console.log("Game_Battler.prototype.refresh", this, this.set_patb_refresh);
    this.refreshPatb();
    if ($gameSystem.is_patb()) { this.set_patb_refresh(); } // Added
}; // Game_Battler.prototype.refresh
at the end of the plugin script?
 

DoubleX

Adventurer
Xy$
1.12
Either at the end of the plugin js file or as a separate plugin placed below that plugin :)
[doublepost=1453886524,1452263214][/doublepost]I failed to reproduce your error and with the latest version v1.00b, everything works fine so far, so you may want to download it here :)
 
Top