06-17-2013, 10:51 PM
The script I wrote, Tiered States can do this, if I understood what you want correctly!
The tiers in your case would be: Sadness, dummy, Hyper. The dummy state represents "neither sadness nor hyper" it should be a state that does nothing and has a rating of 0.
And you'd have to set up the hash something like:
replace the ids with the ids of your states, obviously~
The tiers in your case would be: Sadness, dummy, Hyper. The dummy state represents "neither sadness nor hyper" it should be a state that does nothing and has a rating of 0.
And you'd have to set up the hash something like:
Code:
Tiered_States = {
hyper_id => [sadness_id, dummy_id, hyper_id],
sadness_id => [hyper_id, dummy_id, sadness_id]
}