- Joined
- Oct 17, 2012
- Messages
- 394
- Reaction score
- 98
- First Language
- Español
- Primarily Uses
- RMVXA
Hello, I have a question
I'm using Yami's Classic Actime Time battle script and an add-on called Lunatic CATB Start and I want to make a starting formula tag allows me to make the start rate is from 0 to X%, I tried to create a new method in the CATB Start script, but it doesn't work, can some help me to make what I want to do?
The method I tried to create, based in this's script start battle tag is the next one
#----------------------------------------------------------------------
# ATB Starter Formula No.1: RANDOM START BATTLE
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set starting ATB to X percent.
#
# Formula notetag:
# <custom catb start: rand start battle x%>
#----------------------------------------------------------------------
when /RAND START BATTLE[ ](\d+)([%%])/i
@catb_value = MAX_CATB_VALUE * rand($1.to_i) / 100
However, it works exactly the same as Start battle one, can someone help me to change this one? Thank you
P.D: I tried to use the custom catb start string format, but I'm not sure how to make it work
I'm using Yami's Classic Actime Time battle script and an add-on called Lunatic CATB Start and I want to make a starting formula tag allows me to make the start rate is from 0 to X%, I tried to create a new method in the CATB Start script, but it doesn't work, can some help me to make what I want to do?
The method I tried to create, based in this's script start battle tag is the next one
#----------------------------------------------------------------------
# ATB Starter Formula No.1: RANDOM START BATTLE
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set starting ATB to X percent.
#
# Formula notetag:
# <custom catb start: rand start battle x%>
#----------------------------------------------------------------------
when /RAND START BATTLE[ ](\d+)([%%])/i
@catb_value = MAX_CATB_VALUE * rand($1.to_i) / 100
However, it works exactly the same as Start battle one, can someone help me to change this one? Thank you
P.D: I tried to use the custom catb start string format, but I'm not sure how to make it work
