- Joined
- Mar 23, 2023
- Messages
- 6
- Reaction score
- 1
- First Language
- English
- Primarily Uses
- RMMV
Hello,
I'm trying to make an attack that will restore mana to the party if a plugin-specific variable is high enough. I'm using SRD's Timed Attack plugins (http://sumrndm.site/timed-attack-wheel/).
Right now, my code is something like:
if ($gameTemp.tas_power >= 0.75)
$gameParty.aliveMembers().addBuff(3,3);
This isn't working though, really not great with code, any help would be appreciated.
I'm trying to make an attack that will restore mana to the party if a plugin-specific variable is high enough. I'm using SRD's Timed Attack plugins (http://sumrndm.site/timed-attack-wheel/).
Right now, my code is something like:
if ($gameTemp.tas_power >= 0.75)
$gameParty.aliveMembers().addBuff(3,3);
This isn't working though, really not great with code, any help would be appreciated.