The official VisuStella notetag help thread

whiteswords12

Villager
Member
Joined
Sep 18, 2022
Messages
6
Reaction score
1
First Language
English
Primarily Uses
RMMZ
I've been trying to give the actor TP if a weakness or critical hit whas dealt in the STB exploit system but I keep bashing my head against it because none of the add tp things I know seems to work.

Maybe this is better done with the enhanced TP system but the i'd need some if statement in the dealt HP damage box.
I see that your using the exploit system. As someone who's just trying to find out how to implement enemy/ally's weakness, how did you do it? I looked on the YT video and yanfly page, but I got everything activated. I am not sure if its a common event I need to do or I need to have note tags in each actor. I did read the file and saw it said to do
<STB Exploited Gain State: id>
<STB Exploited Gain State: id, id, id>
but even then I couldn't figure out how to do the same thing as the example. Any clues?
 

Ninten0

Villager
Member
Joined
Mar 30, 2015
Messages
14
Reaction score
2
First Language
English
Primarily Uses
I'm using the Aggro Control System and am trying to make a skill that raises the user's aggro by their attack stat:
<JS User Aggro>
value = user.atk
</JS User Aggro>
However, the aggro doesn't change. I've also changed it to be JS Target Aggro and set the target to User, but that doesn't work either. Perhaps this plugin isn't programmed to read for stats in the notetags or maybe I'm just missing something?
 

Trihan

Speedy Scripter
Veteran
Joined
Apr 12, 2012
Messages
6,001
Reaction score
5,957
First Language
English
Primarily Uses
RMMZ
I'm using the Aggro Control System and am trying to make a skill that raises the user's aggro by their attack stat:
<JS User Aggro>
value = user.atk
</JS User Aggro>
However, the aggro doesn't change. I've also changed it to be JS Target Aggro and set the target to User, but that doesn't work either. Perhaps this plugin isn't programmed to read for stats in the notetags or maybe I'm just missing something?
If you read the description of that notetag, it sets the *final* value for the user's aggro. So you're just setting the aggro to the exact value of their atk every time it evaluates.
 

Lebazoid

Warper
Member
Joined
Mar 19, 2023
Messages
4
Reaction score
0
First Language
English
Primarily Uses
RMMZ
Hi! I'm using Visustella Battle Core version 1.78, and I'm trying to create a skill that has a higher chance to crit than normal. I'm using this notetag in the skill notes;

<Modify Critical Rate: +15%>

However, the only critical related notetag that works for me is <Always Critical>. The other ones have no effect and I can't figure out why... I'm brand new to all this so I'm sure it's a very silly, very easy fix, but any help is appreciated :)
 

Trihan

Speedy Scripter
Veteran
Joined
Apr 12, 2012
Messages
6,001
Reaction score
5,957
First Language
English
Primarily Uses
RMMZ
Hi! I'm using Visustella Battle Core version 1.78, and I'm trying to create a skill that has a higher chance to crit than normal. I'm using this notetag in the skill notes;

<Modify Critical Rate: +15%>

However, the only critical related notetag that works for me is <Always Critical>. The other ones have no effect and I can't figure out why... I'm brand new to all this so I'm sure it's a very silly, very easy fix, but any help is appreciated :)
That one should definitely work. Are you sure it's not adding to your crit rate?
 

Dark_Ansem

Veteran
Veteran
Joined
Jun 16, 2020
Messages
425
Reaction score
115
First Language
English
Primarily Uses
RMMZ
I have been playing some D&D and am now tinkering with the idea of spell components. The basic functionality is there, and I understand that in order to create new spell components I need to basically copy the scripts in the "potion" plugin setting, making sure that i change the notetag and item id in the scripts to the ones I need. Am I on the right track, more or less? or I could make it simpler?

I do need help in adding the following changes however:
- if you don't have the item, you can pay a variable cost in gold
- some components merely require you to have an item in your inventory, or a specific equipment piece currently equipped, but without consuming it.
 

Ninten0

Villager
Member
Joined
Mar 30, 2015
Messages
14
Reaction score
2
First Language
English
Primarily Uses
If you read the description of that notetag, it sets the *final* value for the user's aggro. So you're just setting the aggro to the exact value of their atk every time it evaluates.
Thanks for the help! I tried setting atk to 100 to see if aggro is set to 100, but there was still no change. I swapped in <Target Aggro: +user.atk> instead and that didn't work either. I turned all other plugins off and got the same results. Also, is it possible to do something like "value = user.atk + user.aggro" to add to the aggro value? Something odd is going on, or maybe I missed another important piece of documentation...
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
7,544
Reaction score
5,309
First Language
English
Primarily Uses
RMMV
Thanks for the help! I tried setting atk to 100 to see if aggro is set to 100, but there was still no change. I swapped in <Target Aggro: +user.atk> instead and that didn't work either.
We wouldn't expect that to work - as a general rule, notetags can't take JavaScript unless they say they can. The Target Aggro notetag will only work with an actual number (you also seem to be getting all willy nilly about target and user and whose aggro you're trying to increase).

I turned all other plugins off and got the same results. Also, is it possible to do something like "value = user.atk + user.aggro" to add to the aggro value?
Theoretically yes, but the documentation doesn't tell us the script call to get a battler's aggro, that I can see, and the plugin is obfuscated so we can't just look it up for you. You'd have to contact their support to see if they'll share that information.

Unless I missed it in a post above, can you post a screenshot of the skill that has your setup that's not working for you?
 

Ninten0

Villager
Member
Joined
Mar 30, 2015
Messages
14
Reaction score
2
First Language
English
Primarily Uses
We wouldn't expect that to work - as a general rule, notetags can't take JavaScript unless they say they can. The Target Aggro notetag will only work with an actual number (you also seem to be getting all willy nilly about target and user and whose aggro you're trying to increase).


Theoretically yes, but the documentation doesn't tell us the script call to get a battler's aggro, that I can see, and the plugin is obfuscated so we can't just look it up for you. You'd have to contact their support to see if they'll share that information.

Unless I missed it in a post above, can you post a screenshot of the skill that has your setup that's not working for you?
I keep swapping the user and target in the notetags since it's a skill that targets the user, so I figured I'd check if switching them would fix it. Here is the skill. If I can't get the stat scaling to work, I'll probably just give the player a stronger version every few levels instead.
 

Attachments

  • AggroSkill.PNG
    AggroSkill.PNG
    107.4 KB · Views: 3

Lebazoid

Warper
Member
Joined
Mar 19, 2023
Messages
4
Reaction score
0
First Language
English
Primarily Uses
RMMZ
That one should definitely work. Are you sure it's not adding to your crit rate?
Yeah. I've tried bumping the crit rate boost all the way up to 100, 1000, even 10,000 and still not getting crits.
 

ATT_Turan

Forewarner of the Black Wind
Veteran
Joined
Jul 2, 2014
Messages
7,544
Reaction score
5,309
First Language
English
Primarily Uses
RMMV
Yeah. I've tried bumping the crit rate boost all the way up to 100, 1000, even 10,000 and still not getting crits.
Are you sure the skill you're testing with has the Critical Hits dropdown underneath the damage formula set to Yes?

How many plugins do you have in your project? Have you tried turning off all except the Battle Core?
 

Lebazoid

Warper
Member
Joined
Mar 19, 2023
Messages
4
Reaction score
0
First Language
English
Primarily Uses
RMMZ
Are you sure the skill you're testing with has the Critical Hits dropdown underneath the damage formula set to Yes?

How many plugins do you have in your project? Have you tried turning off all except the Battle Core?
I might be stupid. It was set to no. I changed it and it totally works now lol

Thank you so much!
 

Latest Threads

Latest Profile Posts

swordsman defense :to show not to use.
show.gif
4,4,4.gifloop24.gif4.4.4.end.gif
I bought SALMIAC.:kaoluv: Salmiac is HEAVEN. Black, salty, hypertensive heaven! My dad once ate so much salmiac his doctor tole him to STOP! :biggrin:

Still no spoons tho. :kaophew:
I am supposed to be preparing to teach my students this afternoon and tomorrow morning about Refugees, Asylees, and Fraud/Misrepresentation and all I can think about is how to improve my Turn Order display. :stickytongue:
Try changing POV battle, near and far away like suikoden...
watercave2.jpg

diablofar.jpg

In the end I choose near over shoulder resembles RE4. Tight close window better. The correlation between battleback, monster style and battler should also be observed and merged.
Upgraded my avatar to be cuter.

Forum statistics

Threads
129,705
Messages
1,204,477
Members
170,778
Latest member
RubySu4111
Top