prism001

Warper
Member
Joined
Apr 10, 2023
Messages
1
Reaction score
2
First Language
English
Primarily Uses
RMMV
Hi! I've been using this and it's great but I'm having a problem with counterattacks. I want certain enemies to be able to do ranged counters. Currently counters only use the normal attack skill (Skill #001), which works fine for player units as the attack range can be set through weapons, but enemies always use the skill's range.
Does anyone know how I would be able to override the default attack range or counter skill per enemy? I've been messing around in the scripts but I'm not sure where it checks or sets these

EDIT:
I found a solution! Replacing the code that starts with Game_Action.prototype.extractRangeData = function (object, battler) { with this:
JavaScript:
Game_Action.prototype.extractRangeData = function (object, battler) {
    var data = object.meta['Range'] || TacticsSystem.actionRange;
    if (!battler.isActor()) {
        data = $dataEnemies[battler._enemyId].meta['Range'] || data;
    }
    return data.trim().split(' ');
};

will let you set enemy Normal Attack ranges in the enemy's database notes.
 
Last edited:

Spiritfern

Warper
Member
Joined
Apr 23, 2023
Messages
1
Reaction score
0
First Language
English
Primarily Uses
RMMV
I'm going to fiddle around with this plugin at some point, but I'm not sure if there is a plugin or would it be able to combine this with action point system? No mana for spells etc, but skill and all would cost action points.
Does anyone have ideas?
 

Settezin

Villager
Member
Joined
Jan 1, 2019
Messages
9
Reaction score
2
First Language
English
Primarily Uses
RMMV
Hi! I love the system and I've been toying with it for over a year now and will finally use it for my next project. My question is:

Is there any way I can change that mech's portrait on the left? I'd like for it to be a portrait I have of a character. When you approach the mech and select them, I want the pilot's face to show, so you know which pilot you're attacking. Is this possible? Currently, it only shows the mech sprite I've drawn in the portrait. Thank you!
 

Attachments

  • TWIO 4_30_2023 4_06_13 PM.png
    TWIO 4_30_2023 4_06_13 PM.png
    462.7 KB · Views: 31

LordEdmundGod

Villager
Member
Joined
Jun 3, 2023
Messages
18
Reaction score
0
First Language
English
Primarily Uses
RMMV
How do I set victory conditions? I want make a fight with a "Defeat the Enemy Commander" objective.
 
Joined
May 18, 2018
Messages
71
Reaction score
32
First Language
English
Primarily Uses
RMVXA
every item, if i use them out of battle, they cause an error
Sorry I didn't reply to this earlier, but I couldn't see anything in the TBS that would affect using items out of battle. The sections seem separate, so I'm not sure why one would be affecting the other, but it is entirely possible. Anyone got any ideas? Have you added common events which use conflicting variables or something?
Hi! I love the system and I've been toying with it for over a year now and will finally use it for my next project. My question is:

Is there any way I can change that mech's portrait on the left? I'd like for it to be a portrait I have of a character. When you approach the mech and select them, I want the pilot's face to show, so you know which pilot you're attacking. Is this possible? Currently, it only shows the mech sprite I've drawn in the portrait. Thank you!
I don't know if there's a way of showing the portraits of different characters when you select them, but you might just have to set up separate mech enemies for each character and change the Enemy image to their portrait. Could be one workaround, but I'm not exactly sure if it'd look right. There might be an option in the plugin itself that can do this - check the info in the plugin's header.
How do I set victory conditions? I want make a fight with a "Defeat the Enemy Commander" objective.
On the battle map start a Parallel Process event with the name 'Victory Condition'. Set a conditional command that activates 'If: #6 is affected by knockout' (or whichever enemy number the commander is in the troop you're using for this battle). Then you can display some victory text and play a bit of music, then use the following Plugin Commands:
Plugin Command: TacticsSystem.ProcessVictory
Plugin Command: TacticsSystem.ClearAll On

(I'm not sure if the second is always necessary, but it wipes the system in preparation for the next battle)
Then transfer the player to a regular map and it should work.
 

LordEdmundGod

Villager
Member
Joined
Jun 3, 2023
Messages
18
Reaction score
0
First Language
English
Primarily Uses
RMMV
Sorry I didn't reply to this earlier, but I couldn't see anything in the TBS that would affect using items out of battle. The sections seem separate, so I'm not sure why one would be affecting the other, but it is entirely possible. Anyone got any ideas? Have you added common events which use conflicting variables or something?

I don't know if there's a way of showing the portraits of different characters when you select them, but you might just have to set up separate mech enemies for each character and change the Enemy image to their portrait. Could be one workaround, but I'm not exactly sure if it'd look right. There might be an option in the plugin itself that can do this - check the info in the plugin's header.

On the battle map start a Parallel Process event with the name 'Victory Condition'. Set a conditional command that activates 'If: #6 is affected by knockout' (or whichever enemy number the commander is in the troop you're using for this battle). Then you can display some victory text and play a bit of music, then use the following Plugin Commands:
Plugin Command: TacticsSystem.ProcessVictory
Plugin Command: TacticsSystem.ClearAll On

(I'm not sure if the second is always necessary, but it wipes the system in preparation for the next battle)
Then transfer the player to a regular map and it should work.
Thank you! May I also ask, is it possible to have multiple commanders?
 
Last edited:

Settezin

Villager
Member
Joined
Jan 1, 2019
Messages
9
Reaction score
2
First Language
English
Primarily Uses
RMMV
Sorry I didn't reply to this earlier, but I couldn't see anything in the TBS that would affect using items out of battle. The sections seem separate, so I'm not sure why one would be affecting the other, but it is entirely possible. Anyone got any ideas? Have you added common events which use conflicting variables or something?

I don't know if there's a way of showing the portraits of different characters when you select them, but you might just have to set up separate mech enemies for each character and change the Enemy image to their portrait. Could be one workaround, but I'm not exactly sure if it'd look right. There might be an option in the plugin itself that can do this - check the info in the plugin's header.

On the battle map start a Parallel Process event with the name 'Victory Condition'. Set a conditional command that activates 'If: #6 is affected by knockout' (or whichever enemy number the commander is in the troop you're using for this battle). Then you can display some victory text and play a bit of music, then use the following Plugin Commands:
Plugin Command: TacticsSystem.ProcessVictory
Plugin Command: TacticsSystem.ClearAll On

(I'm not sure if the second is always necessary, but it wipes the system in preparation for the next battle)
Then transfer the player to a regular map and it should work.
Thank you. One more question

The plugin command [TS.battleProcessing OFF] doesn't work. I've tried it running parallel in the map, I've put it as a plugin before an Action Button trigger, etc. It goes straight back to Tactics. I would like two alternate between the two combat systems as my game is centered around both.
 

Truegamerman

Warper
Member
Joined
Mar 24, 2023
Messages
1
Reaction score
0
First Language
English
Primarily Uses
RMMV
whenever i start a battle it just says "was defeated"
 
Joined
Jul 29, 2022
Messages
19
Reaction score
9
First Language
Spanish
Primarily Uses
RMMV
I've been trying to get this plugin to work, and whenever I use a an HP Drain skill it says 'undefined'
in the information window.

1690997199650.png

Don't know if that's a plugin bug or I'm doing something wrong.
 
Last edited:

Settezin

Villager
Member
Joined
Jan 1, 2019
Messages
9
Reaction score
2
First Language
English
Primarily Uses
RMMV
I've been awaiting an answer since June, hoping to get help with this.

TS.battleProcessing OFF isn't working at all anymore. I've used a parallel event with this plugin command and it hasn't worked all year. It used to when I tried this around when it came out, but this is no longer the case. It just goes straight to a tactics battle and is an instant loss.
Any fixes for this? I want to use this engine as I've used it for a long time and don't want to switch to another one and have to configure everything all over again.
 

GeneralIroh

Regular
Regular
Joined
Jul 11, 2018
Messages
37
Reaction score
6
First Language
English
Primarily Uses
RMMV
I've been awaiting an answer since June, hoping to get help with this.

TS.battleProcessing OFF isn't working at all anymore. I've used a parallel event with this plugin command and it hasn't worked all year. It used to when I tried this around when it came out, but this is no longer the case. It just goes straight to a tactics battle and is an instant loss.
Any fixes for this? I want to use this engine as I've used it for a long time and don't want to switch to another one and have to configure everything all over again.
This isn't a direct solution to your problem, but maybe an alternative solution. I've found that Synrec is a developer that's actively working on a tactical battle plugin. Since he is active in the community still, it may be worth looking into his plugin. Good luck, friend!
 

Settezin

Villager
Member
Joined
Jan 1, 2019
Messages
9
Reaction score
2
First Language
English
Primarily Uses
RMMV
This isn't a direct solution to your problem, but maybe an alternative solution. I've found that Synrec is a developer that's actively working on a tactical battle plugin. Since he is active in the community still, it may be worth looking into his plugin. Good luck, friend!
Thank you, I'll give that a try. I also tried SRPG but it's a little too complicated at the moment. I tried it before, and it misplaced the enemies when doing front view.

I see that this dev no longer responds and it's kind of frustrating. I'm currently trying out his 1.1 version and now my screen just shakes. I tried another old version, and it placed the enemies in vanilla combat really high. I love this engine, but if I can't switch between tactics & vanilla then there's no point.
 

Settezin

Villager
Member
Joined
Jan 1, 2019
Messages
9
Reaction score
2
First Language
English
Primarily Uses
RMMV
I couldn't find version 1.0, so I went with 1.1. It does exactly what I need it to do except the screen shakes violently during Tactics mode. Insane.
 

GeneralIroh

Regular
Regular
Joined
Jul 11, 2018
Messages
37
Reaction score
6
First Language
English
Primarily Uses
RMMV
Thank you, I'll give that a try. I also tried SRPG but it's a little too complicated at the moment. I tried it before, and it misplaced the enemies when doing front view.

I see that this dev no longer responds and it's kind of frustrating. I'm currently trying out his 1.1 version and now my screen just shakes. I tried another old version, and it placed the enemies in vanilla combat really high. I love this engine, but if I can't switch between tactics & vanilla then there's no point.
I hear you. I had a pretty neat idea using this plugin too, and was disappointed when the creator disappeared. Sadly, that's just kind of a hazard of the RPG Maker community. I don't blame the plugin creators for getting busy with other stuff, but it sure does leave the rest of us hanging.
 

Settezin

Villager
Member
Joined
Jan 1, 2019
Messages
9
Reaction score
2
First Language
English
Primarily Uses
RMMV
The only workaround I've found that allows me to switch between Tactics and otherwise is v0.5, but this is what it does to my enemies lol it places them way up here.

Edit: I have found a somewhat decent workaround. If you're using Front View like me, go to the CombatScene note and change the values in var center x&y to the following:


Sprite_Enemy.prototype.setHomeEnemy = function(index) {
var max = $gameTroop.members().length;
var centerX = Graphics.width / 2.0;
var centerY = Graphics.height / 1.6;
var span = 100;
var slide = 200;
this.setHome(centerX - (span * (max - 1)) + (slide * index), centerY);

You might need to tweak it some. I had to change my sprite size a little to accommodate.
1693876812222.png
 
Last edited:
Joined
May 18, 2018
Messages
71
Reaction score
32
First Language
English
Primarily Uses
RMVXA
I keep getting the error code: "Reference error: battler is not defined", but I'm pretty sure I defined all of my battlers. Anyone else getting this? Does the plugin work for people or is it broken as someone said before?
 
Last edited:

lshot23432

Villager
Member
Joined
Mar 11, 2021
Messages
21
Reaction score
5
First Language
Spanish/Español
Primarily Uses
RMVXA
I just found this plugin and I wanna use it. But I wanna know since I don't see agility anywhere mentioned. How does it work here?
 

Heavy147

Villager
Member
Joined
Jun 30, 2020
Messages
9
Reaction score
0
First Language
English
Primarily Uses
N/A
I recently downloaded this program, followed the instructions in the video and this has been constantly happening, every time i start up the game. I have no idea what i'm doing wrong. I use the <party:id> like in the video.
was i supposed to set up <actor:actorld> in a separate event because the video doesn't tell me.
Screenshot 2023-11-18 103502.png
 

Latest Threads

Latest Posts

Latest Profile Posts

Driving to Florida today to spend a week like we did last year. Looks like it will just be me and the Mrs. But she sleeps a lot longer than me so I will still have time to work on my Game Jam project. :stickytongue:
I think I have an unhealthy obsession with ornamentation... :kaoswt:

alice_frame_leaves.png
Pixel art is TOO hard
Respect the basic tilesets... ...
Making the next dungeon look more "dungeon" with traps, switch etc...
Harder than I thought it would...

Forum statistics

Threads
136,677
Messages
1,268,670
Members
180,381
Latest member
Babouche
Top