Original Source
- Original title: State Stages (Stacking States Improved)
- Original author: Rinobi
- Original date: April 30, 2016
- Source thread: https://forums.rpgmakerweb.com/threads/state-stages-stacking-states-improved.61146/
- Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS3 Scripts (RMVX Ace)
Summary
State Stages Stacking States Improved This script allows states to be applied in controlled stages or levels. Basically, when a state is applied multiple times to a battler, instead of resetting the state or stacking another on time of it, the state will ‘advance’ to the next predefined state within an array of states. States may also be defined as positive, negative, or neutral, allowing for additional interactions when states are applied to battlers. State stacking simply cannot compare to the flexibility to state stages. Spoiler: FEATURES
Archived First Post
Stacking States Improved
This script allows states to be applied in controlled stages or levels. Basically, when a state is applied multiple times to a battler, instead of resetting the state or stacking another on time of it, the state will ‘advance’ to the next predefined state within an array of states. States may also be defined as positive, negative, or neutral, allowing for additional interactions when states are applied to battlers. State stacking simply cannot compare to the flexibility to state stages.
- Performance Friendly. Staging setup happens during database creation.
- States can operate similar to buffs in RPG Maker.
- States can be categorized as positive, negative, neutral, or custom types. Allowing for easy removal.
- Staging States can be setup with note tags, saving time and database space.
- Multi-Staging (advancing two or more states) has been integrated into the UI. No script calls needed.
- Custom state abbreviations and staging numbers can be displayed on state icons.
Negative States: State 4(ATK * 67%), State 5(ATK * 50%), State 6(ATK * 40%)
The above represents an entire staging hash. There are six states total, 3 within a positive array, and 3 within the negative array. Below is an example of how this appears within the code.
:ATK => {:pos => [1, 2, 3], :neg => [4, 5, 6]},
The ATK staging hash has 3 positive states and 3 negative states.
Below is an example of how these states interact in order of events.
- State 1 is added. The battler gains state 1(ATK * 150%)
- State 1 is added. The battler gains state 2(ATK * 200%) – State 1 is removed.
- State 4 is added. The battler gains state 1(ATK * 150%) – State 2 is removed.
- State 4 is added. State 1 is removed.
- State 4 is added. The battler gains state 4(ATK * 67%)
- State 4 is added. The battler gains state 5(ATK * 50%) – State 4 is removed.
- State 1 is added x2. State 5 is removed.
- State 1 is added x2. The battler gains state 2(ATK * 200%)
- State 4 is added x3. The battler gains state 4(ATK * 150%) – State 2 is removed.
We add State 1 to the database.
We’ll call it Attack +1 and give it the [ATK] * 150% feature.
First, we’ll add two additional features to the list. [ATK] * 200%, and [ATK] * 250%. Then we move on to the state’s notes:
<Stage: ATK, pos, 1>
<Index: 2, Copy 0, Take: 2>
<Index: 3, Copy 0, Take: 3>
And just like that, we have the same positive staging from above without creating additional entries within the database. We may take this a step further and make some additional changes.
<Adj_State: 2, name: Attack +2>
<Adj_State: 3, name: Attack +3>
<Adj_State: 3, icon: 74>
Adding negative states to the above ATK staging requires us to create another state within the database to serve as a template. We’ll use state 4 and name it Attack -1, giving it the [ATK] * 67% feature.
First, we’ll add two additional features to the list. [ATK] * 50, and [ATK] * 40%.
<Stage: ATK, neg, 1>
<Index: 2, Copy 0, Take: 2>
<Index: 3, Copy 0, Take: 3>
We’ve successfully added negative staging to the ATK state stage. Using this method required only two database slots as opposed to six.
#======================================================================
# >> Staging States Hash
# ---------------------------------------------------------------------
# As of version 3.0, it is no longer required to set up state stages
# using this hash, however, it can still be used along side notetags
# for those upgrading from a previous version.
#-
# name => {:pos => [positive effect IDs], :neg => [negative effect IDs]}
#-
# name - Can be any integer, string, or symbol.
# :pos IDs - The positive effect IDs of the states in your database.
# :neg IDs - The negative effect IDs of the states in your database.
#-
# You may exclude :pos or :neg from the hash if you so choose.
# You may also use :neu to indicate that the state is neither good or bad.
#======================================================================
States = { # Do Not Edit This Line
:nil => {:pos => [], :neu => [], :neg => []}, # Copy/Paste
} # Do Not Edit This Line
We’ll name this stage STN, short for ‘stun’ and add the state IDs as a negative type. A quick peek at the database reveals that the ID for Stun is 8, and the ID for Paralysis is 7. When using the Staging Hash, ID should always be placed from left to right, good to best, bad to worst.
#======================================================================
# >> Staging States Hash
# ---------------------------------------------------------------------
# As of version 3.0, it is no longer required to set up state stages
# using this hash, however, it can still be used along side notetags
# for those upgrading from a previous version.
#-
# name => {:pos => [positive effect IDs], :neg => [negative effect IDs]}
#-
# name - Can be any integer, string, or symbol.
# :pos IDs - The positive effect IDs of the states in your database.
# :neg IDs - The negative effect IDs of the states in your database.
#-
# You may exclude :pos or :neg from the hash if you so choose.
# You may also use :neu to indicate that the state is neither good or bad.
#======================================================================
States = { # Do Not Edit This Line
:nil => {:pos => [], :neu => [], :neg => []}, # Copy/Paste
:STN => {:neg => [8, 7]}, # Stun to Paralysis
} # Do Not Edit This Line
If you can believe it, we’ve already accomplished our goal. Due to the way staging works, when our actor is paralyzed, directly or through multiple stuns, we’ll get a display like this.
Protected download
Now, what if we wanted staging to continue? Let’s say that the effects of paralysis can actually get worse. Let’s add another two states to the staging, one will be called Petrified, which act as a longer lasting paralyze, and the final state will be Frozen, which lasts forever unless removed. We could approach this by creating said states within the database and link them to the STN stage me made earlier, or… we can use notetags.
Protected download
Alright, let’s walk through this notetag setup. On the very first line is the most important notetag, it must be included when creating states this way. It basically creates a new staging hash OR simply references a staging hash that already exists. We’ve done the latter hear and it’s important not to make any mistakes. STN is the name we gave our staging hash previously, and neg is the type that states were put under. The 2, is the index number, meaning ‘the second state within the stage’, in this case our second state is ID 7, the Paralysis state that’s in the screenshot. We have correctly referenced this stage, it’s a good idea to turn the Debugger option on when setting up stages this way, just in case.
<Index: 3, Copy: 1, Take: 0> and <Index: 4, Copy: 1, Take: 0> are the notetags used to create entirely new states based on a parent state. In this case, the parent state is Paralysis shown above. With this, all of the data from this state is duplicated and added to a new state with a different state ID. That state ID is then added to the staging hash based on the index; 3 and 4 in this case. Keep in mind that Stun is under index 1, and Paralysis is under index 2. The Copy and Take portions of the notetag refer to the Features lists of this Paralysis state. Copy: 1 means that the first feature (the only feature shown) will be copied over to the new state. If we were to set Take: to 1, then the feature would be copied to the new state and removed from this Paralysis state.
The <Adj_State> notetags are used to modify the newly created states. In the example above, we change the names, icon indexes, state removal turns, and the ‘Message when an actor fell in the state’ values. This is important for differentiating one stage from another. Before we do a test battle, let’s activate the Debugger and see what our staging hash looks like.
Protected download
As you can see, our stage now includes two additional state IDs. Note that the ID numbers will always be outside of the maximum range of your state database. Since the maximum (seen in the example above) was 25, states created by notetags would begin at 26 and continue from there. If you’ve attempted something like this and ended up with an entirely new staging hash… something went wrong. Anyway, let’s see how this look in-game. Since state icons are only displayed for actors by default, I had an ogre beat-up on Natalie until I got the shots I needed.
Protected downloadProtected downloadProtected downloadProtected download
That covers the basics. More detailed instructions can be found within the script’s header. I’ll stress once again that developers should make full use of the debugger option within the script’s settings while working on staging. Here’s an example of many staging states within a project. Enjoy!
Protected download
Previous Version: View attachment RINOBI_StateStages_320.txt
Previous Version: View attachment RINOBI_StateStages_300.txt
Previous Version: View attachment RINOBI_StateStages_210.txt
Previous Version: View attachment RINOBI_StateStages_200.txt
Previous Version: View attachment RINOBI_StateStages_100.txt
- 1.00 [04/29/2016] Initial Release
- 2.00 [05/11/2016] Bug Fixes. Removal Methods Added. User-Friendly Update.
- 2.10 [06/30/2016] State Removal No Longer Displayed While Staging.
- 3.00 [07/27/2016] Note Tag System. Visual Staging Information
- 3.20 [07/29/2016] Added Note Tag for Adjusting State Notes. Multi-Staging Included for Items
- 3.30 [08/14/2016] Multi-Staging Included for All Features.
Downloads / Referenced Files
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadReferenced Images / Attachments
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
Topic Summary
Loading summary...