Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Not sure I understand item tag? I didnt create any items it was just the formation plugin, in the test troop battles it works but when I go to play the game I get the errors. 

The plugin you use, it is introducing feature, to add JS code between two tags. So, you don't use that? Okay. Maybe plugin order or something else. But I already seen an error even so. Later today will fix it, then test. Hope tomorrow to upload. 

Anyway, replicated the error you reported to me! 

Ok thank you, also this may help. 

under my weapons I have this in notetag, when they equip a weapon it changes the look of tha character. 

<Custom On Equip Eval>

user._prevCharName = user._prevCharName || user._characterName;

user._prevCharIndex = user._prevCharIndex || user._characterIndex;

user._prevFaceName = user._prevFaceName || user._faceName;

user._prevFaceIndex = user._prevFaceIndex || user._faceIndex;

user._prevBattlerName = user._prevBattlerName || user._battlerName;

user.setFaceImage("Oracle2longsword%(8)_Face", 0);

user.setCharacterImage("oracle2longsword%(8)", 0);

user.setBattlerImage("Oracle2longsword%(8)_MVsv");

user.refresh();

$gamePlayer.refresh();

</Custom On Equip Eval>

<Custom On Remove Equip Eval>

user.setCharacterImage(user._prevCharName, user._prevCharIndex);

user.setFaceImage(user._prevFaceName, user._prevFaceIndex);

user.setBattlerImage(user._prevBattlerName );

user.refresh();

user._prevCharName = undefined;

user._prevCharIndex = undefined;

user._prevFaceName = undefined;

user._prevFaceIndex = undefined;

user._prevBattlerName = undefined;

$gamePlayer.refresh();

</Custom On Remove Equip Eval>

If you have RPG maker account, can you PM me there too, for private convo? Also, I might want you to test my fix before I upload it here. 

Sure Camden1970

Won't let me pm you just says follow or ignore. Not sure why My name is Camden1970

Deleted 4 days ago