- Joined
- Apr 5, 2015
- Messages
- 413
- Reaction score
- 285
- First Language
- English, German
- Primarily Uses
- N/A
Hi!
I'm trying to set up a custom show eval to have a skill only appear if a particular item, say "Pistol", is equipped in the left hand.
<Custom Show Eval>
if ($game_actors[1].equips.include?($data_weapons[6]) false)) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
But... I THINK that will show it if it's equipped in either hand, right? And only on actor 1?
Is there a way to tweak this so it shows for any actor who has weapon 6 equipped in the left hand only? (I'm going to make a separate one checking for right hand)
I'm trying to set up a custom show eval to have a skill only appear if a particular item, say "Pistol", is equipped in the left hand.
<Custom Show Eval>
if ($game_actors[1].equips.include?($data_weapons[6]) false)) {
visible = true;
} else {
visible = false;
}
</Custom Show Eval>
But... I THINK that will show it if it's equipped in either hand, right? And only on actor 1?
Is there a way to tweak this so it shows for any actor who has weapon 6 equipped in the left hand only? (I'm going to make a separate one checking for right hand)