Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
Deleted 4 days ago
(2 edits)

Hello!

Can you post me link to the WAY plugins, that are triggering  the error?

I believe I initialize my formations on New Game or on Load Game. But since they are always derived from the Plugin Parameters, I should initialize them on plugin boot. Probably Way's plugin tries to access data tied to my plugin, at earlier state. It is fault of my plugin, if that is the case.

I still would like to have the exact version of your plugin, to make sure. 

(1 edit)

Hiya thanks for the reply, this was a custom plugin for me I purchased it from a guy on fiverr. what it does is change my characters look on equipping weapons and stuff. here is a link to the upload from my google drive. thanks for your time. feel free to use the plugins if you want I do not mind.  way plugins 

Alright. I have downloaded it. You can hide the link or remove the files, if you want. 

(1 edit)

Thank you! I can just leave it up incase anyone needs to use it. Unless you want me to take it down?

No, is good. I though you might want it down. 

As about the error, from simply loading the plugins, I don't get errors. Will play a little with it. But even if I fail to replicate it, at very least, I will change how I read my plugin data.

Thanks for all you do!

Hey, can you test one thing? It is just for the sake of testing, is not an actual solution, even if it works. 
In the bottom of the plugin, add this:

GGZiron.FormationManager.setFormations();
Then tell me if it still crashes, or now it doesn't. 

Still crashing is this where you wanted me to add the data? 




Deleted 4 days ago

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