I've been trying to figure this out for a few hours, and coming at it a number of different ways, but I'm missing something. Basically, I'm looking to create an armor that, when equipped, doubles the base speed of the person wearing it. I'm new to the program, and the other answers I've seen on other posts assume a certain level of knowledge, being able to link items to states to scripts, etc. I'm missing a step somewhere. It seems like, logically, there should be an "If the armor is equipped..." somewhere out there, maybe in common events, that I'm not using properly.
Anyway, I've created an armor with a 100% chance to inflict the state Running (I'm hoping that means it is always on, not requiring combat), to which I'd like to attach the script:
$game_player.move_speed = 8
But I don't see an option to call scripts to the state anywhere in the features. Items have a handy link to allow you to call a common event, but armors do not...
Any help would be appreciated. It's safe to assume I've made some kind of basic mistake in responses. Thanks much!
Armor that increases run speed.
● ARCHIVED · READ-ONLY
-
-
You can use this script
http://www.rpgmakervxace.net/topic/7832-movement-speed/
Just add move speed feature to your armors. -
Some basic questions:
Where should I place your script in the script editor (under which category)?
How do I place a tag on a piece of armor? -
Download the feature manager and place that under the Material tab.
Download the movement speed script and place it under feature manager.
Then in the database pick your armor, and in the notebox in the lower-right type
Code:To set the move speed to 6 when you equip the armor.<ft: move_speed 6> -
I'll give it a go tomorrow. Thanks for all the help. :)