Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

I have encountered a problem with the Skill and Status plugin not showing the right sv battler. When on 'Face' it's the right one. When on 'Sv battler' it shows the same for both, even though the sprite showing up is an old sprite that I don't use anymore, who is not even in the database.




All my plugins do is to read the information which graphic to show from the engine. When it's not the one you are expecting, then it's more likely that you have overridden the graphics with eventing (event command "change actor graphic"), or you have another plugin interfering.

Ok. I just don't understand why it takes something that doesn't exist in my project. 

This is the actual code section in my plugin to load the graphic:

function getBitmap(type, actor) {
  switch (type) {
    case 'face':        return ImageManager.loadFace(actor.faceName());
    case 'battler':     return ImageManager.loadSvActor(actor.battlerName());
    case 'portrait':    return ImageManager.loadPicture(actor.equipMenuPortrait());
    default:            return null;
} }

As you can see, it simply grabs the graphic by calling the engine's code.

Thank you.