Lecode Tactical Battle System 0.77.2B

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
@Lecode I found a game that uses your plugin. :rhappy:
That was pretty good. Watched the entire thing.
He shoulda fixed the pathing for dead bodies.

That final battle though. :rswt

I found it. Gonna dl it later
 
Last edited:

mojoaa13

Villager
Member
Joined
Dec 25, 2014
Messages
23
Reaction score
17
Primarily Uses
@Lecode I found a game that uses your plugin. :rhappy:
That's my game!

That is not at all how the final battle worked when I playtested. When you touch the magic circles it is supposed to give you a clue on how to deactivate the circles. Not sure what went wrong.

Also how do you fix the pathing for dead bodies? I enabled the passable on death, but don't see anything that makes dead enemies not impact LOS.
 

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
That's my game!

That is not at all how the final battle worked when I playtested. When you touch the magic circles it is supposed to give you a clue on how to deactivate the circles. Not sure what went wrong.

Also how do you fix the pathing for dead bodies? I enabled the passable on death, but don't see anything that makes dead enemies not impact LOS.
use the passable_on_death tag.

I just make all my enemies disappear. Allies become crystals.
 

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
Not sure what I did.

Whenever a certain character's turn comes around, I get this.

upload_2017-11-17_14-54-50.png

The character's notetags
<letbs>
use_character
auto_turn_order_face
auto_status_sprite
move_points: 3
passable_on_death
</letbs>

<letbs_commands>
move 82, [extra], skills 64, items, pass 84
</letbs_commands>

It's weird because its basically ONLY this character.

Okay so some characters have extra available, others don't but they're all set up the same way (Weapons with skill[id] inside letbs commands brackets.)
characters have either
move, [extra], skills, pass
or
move, [extra], skills, items, pass

Found an issue.
Sometimes after i use skills the "com" becomes "" and there's no protection for that.
 
Last edited:

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
Going off my previous post:
There's this in the makecommandlist function
array.forEach(function (com) {
if (com.match(/skill\[(\d+)\]/i))
this.addCommand_skill(Number(RegExp.$1));
else{

eval("this.addCommand_" + com + "();");
}
}.bind(this));

problem is on occasion com here is ""
so it crashes.
I changed it to:

array.forEach(function (com) {
if (com.match(/skill\[(\d+)\]/i))
this.addCommand_skill(Number(RegExp.$1));
else{
if(com){
var ev = "this.addCommand_" + com + "();"
eval(ev);
}
}
}.bind(this));
I used a var called ev so I could track this in the stack trace (using source and adding breakpoints)

Now, as if by magic, all the skills that should show up, show up. At least for now.
More playtesting will reveal any issues.
 

Tatankas

Warper
Member
Joined
Jan 17, 2015
Messages
3
Reaction score
0
Primarily Uses
Hey !
It's a great plugin man ! Thanks a lot :D
But is it possible to launch an "animation battle" when characters attack ?
Something like Fire Emblem or Advance War for example ? I don't know how to explain that :/ ...
 

freebooter

Veteran
Veteran
Joined
Oct 20, 2017
Messages
104
Reaction score
5
First Language
German
Primarily Uses
RMMV
I activated some skills for my char in the database. But they are not shown, whehn I start LeTBS. I guess I somehow have to activate them in the character notes?
 

Richard John S

Rpg Maker Music Pack Contributor
Veteran
Joined
Jan 31, 2014
Messages
203
Reaction score
759
First Language
English
Primarily Uses
RMMV
Is it possible to make specific AI controlled heroes instead of all AI controlled?
 

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
Is it possible to make specific AI controlled heroes instead of all AI controlled?
Like uncontrollable player characters?
There is a tag for it in the actor notetags
I think it's ai_playable
 

PsychicToaster

Best Clairvoyant Appliance 2018
Veteran
Joined
Jan 18, 2016
Messages
417
Reaction score
430
First Language
English
Primarily Uses
N/A
How many enemies can one battle have?

Also I presume any kind of Yanfly plugin not affecting combat will be fine?
 

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
How many enemies can one battle have?

Also I presume any kind of Yanfly plugin not affecting combat will be fine?
Check my previous posts about flippelyflips large troops.
Normally 8 enemies. But using flips script, you can have 100+.
I tested with 100 and it' a bit laggy. My cpu is an 8 yr old laptop tho.
 
Last edited:

Adam1013

Veteran
Veteran
Joined
Feb 25, 2015
Messages
101
Reaction score
34
First Language
English
Primarily Uses
Is the LeTBS config file supposed to be blank? I want to put in custom scopes and whatnot but I don't have the option to do so because there isn't anything in the config plugin.

Sorry if this has been asked before, lots of pages here lol

Also, I don't see the damage formulas in the documentation you provided on the web unless i'm looking in the wrong place.
 

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
Is the LeTBS config file supposed to be blank? I want to put in custom scopes and whatnot but I don't have the option to do so because there isn't anything in the config plugin.

Sorry if this has been asked before, lots of pages here lol

Also, I don't see the damage formulas in the documentation you provided on the web unless i'm looking in the wrong place.
Nothing will show in the editor, you have to edit the javascript file itself
 

Pharonix

Shadow Walker
Veteran
Joined
Apr 22, 2012
Messages
764
Reaction score
357
First Language
English
Primarily Uses
RMMV
@Pharonix Any suggestions on the best way to do that?
Notepad ++

Its easy(after you get used to it) so long as you follow the format that's already in the config. Just make sure your commas, quotes and parenthesis are in the right places.
 

Adam1013

Veteran
Veteran
Joined
Feb 25, 2015
Messages
101
Reaction score
34
First Language
English
Primarily Uses
@Pharonix Ok thanks a lot.

Is there an error when assigning icons to skills? They don't seem to match up or show up when using an icon to put a skill in the command window.
 

freebooter

Veteran
Veteran
Joined
Oct 20, 2017
Messages
104
Reaction score
5
First Language
German
Primarily Uses
RMMV
Guys, I'm really stuck with the skill issue. I want to activate "Guard" and "Double Attack". Both of them are in the skill-list and activated in the class of the actor and in the actors menu. But they dont show up during TBS. When I open the "Special"-menu there is just a blue bar but nothing to choose. Any ideas?
thanks!
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Profile Posts

Day 9 of giveaways! 8 prizes today :D
He mad, but he cute :kaopride:

Our latest feature is an interview with... me?!

People4_2 (Capelet off and on) added!

Just beat the last of us 2 last night and starting jedi: fallen order right now, both use unreal engine & when I say i knew 80% of jedi's buttons right away because they were the same buttons as TLOU2 its ridiculous, even the same narrow hallway crawl and barely-made-it jump they do. Unreal Engine is just big budget RPG Maker the way they make games nearly identical at its core lol.

Forum statistics

Threads
106,037
Messages
1,018,464
Members
137,821
Latest member
Capterson
Top