YANFLY BATTLE ENGINE MELODY QUESTION - RAGE?

Posts

Pages: 1
slash
APATHY IS FOR COWARDS
4158
For anyone who's been using Battle Engine Melody, do you know if it's possible to directly edit the "Rage" resource through variables or some other event?

I want to implement a skill that can be used once a "day" in game, aside from normal MP-using skills. I could accomplish this with switches, but I would like to use the Rage bar that comes with Yanfly's script (because it's prettier). I need a way I can set the Rage to "1" with an event (that will occur at the start of every day) and then make sure it never recovers until the next day.

Any suggestions?
LouisCyphre
can't make a bad game if you don't finish any games
4523
Make an event and stick the Script event command on there.

$game_actors.rg = 1

or

$game_actors.rage = 1

should give you your desired result, where X is the ID of the target actor.

of course, you could've just made it require that a certain switch be on
author=ChaosProductions
Make an event and stick the Script event command on there.

$game_actors.rg = 1

or

$game_actors.rage = 1

should give you your desired result, where X is the ID of the target actor.

of course, you could've just made it require that a certain switch be on
The x got gobbled up by rmn ;P
LouisCyphre
can't make a bad game if you don't finish any games
4523
author=ChaosProductions
Make an event and stick the Script event command on there.

$game_actors[x].rg = 1

or

$game_actors[x].rage = 1

should give you your desired result, where X is the ID of the target actor.

of course, you could've just made it require that a certain switch be on


derpaherp
slash
APATHY IS FOR COWARDS
4158
thanks guys, awesome
Pages: 1