- Joined
- Aug 24, 2017
- Messages
- 81
- Reaction score
- 8
- First Language
- Chinese
- Primarily Uses
- RMMV
Hi, everyone
I am using Moghunter Chrono Engine ABS
https://atelierrgss.wordpress.com/rmv-chrono-engine/
And I'd like to know which script is for shield
I want to use the script in common event and use
YEP_ButtonCommonEvents
YEP_KeyboardConfig
So I can change the button setting in game
Now I now the script using item, skill, weapon, item menu, skill menu
But I just don't know the "shield" one
The script above is successfully done.
And now I just miss the script for shield.
Thank you.
I am using Moghunter Chrono Engine ABS
https://atelierrgss.wordpress.com/rmv-chrono-engine/
And I'd like to know which script is for shield
I want to use the script in common event and use
YEP_ButtonCommonEvents
YEP_KeyboardConfig
So I can change the button setting in game
Now I now the script using item, skill, weapon, item menu, skill menu
But I just don't know the "shield" one
Code:
this.act(this.battler().toolItemID()) //for item (use this inside set route)
this.act(this.battler().toolSkillID()) //for skill (use this inside set route)
this.act(this.battler().toolWeaponID()) //for weapon (use this inside set route)
SceneManager.push(Scene_ToolMenu) // for item menu
SceneManager.push(Scene_ToolSkill) // for skill menu
And now I just miss the script for shield.
Thank you.

