- Joined
- Dec 13, 2015
- Messages
- 2
- Reaction score
- 1
- First Language
- English
- Primarily Uses
So, I'm trying to make this game where you can change the color of the character. Unfortunately, the JS script call code that I wrote gives me an error and I cannot figure out why this does not work.
I have been at this for over a month now and I still cannot figure this out no matter how much I google. It's really frustrating. There's an alternate method by using conditional branches, but there is roughly 5,000 different color combinations for the player character and I don't want to keep using conditional branches for every variation. I thought by using variables and loading the filename that I set with the variable number would work. Is there an oversight that I'm missing, or do I have to use a plugin for this?var faceName = 'M_Hero_Faces_' + $gameVariables.value(19); \\variable 19 is the group name for the file.
var walkName = 'M_Walk_' + $gameVariables.value(19);
var battleName = 'M_'+$gameVariables.value(15)+'_'+$gameVariables.value(17)+'_'+gameVariables.value(16)+'_'+$gameVariables.value(18);
\\variable 15 is the hair color, 17, the clothing color, 16 the eye color, and 18, the skin color
$gameActors.actor(1).setCharacterImage(faceName, $gameVariables.value(14));
$gameActors.actor(1).setFaceImage(walkName, $gameVariables.value(14));
$gameActors.actor(1).setBattlerImage(battleName);
$gamePlayer.refresh();

