Thanks for replying guys!
Propably yes, but you need to find in code where it is and change it to your liking. Firstly you can search in Yanfly's battle plugins he have everything sorted in his code. If you don't find anything you should check rpg_scenes and rpg_windows .js files in /Your Project/js/ folder. You should look for something similar named to Scene_Battle, Window_Battle or something like that. When you find it search in it for something about states etc.
Yes, I thought of playing in the base code, but I have no knowledge of programming, so I'm a bit afraid of trying to... Same for looking in Yanfly's code... I'll try to look into though.
Hey
With the Yanfly Animated sideview Enemies you have fiew notepad :
English is not my native language but the note :
<Sideview Hide State Overlay>
doesn't do that ?
If not you can change your "hit box" size :
<Sideview Height: x>
It won't change the size of the picture but only how the game considerate its Height.
If you make it big enough the state icon can be outside the screen.
Not the best I know.
Third solution but not easiest
You create a special State for this kind of enemies
and if you apply a state to them, it apply a new version of it with out the icon (like you double all your state in the database)
<Sideview Hide State Overlay> hides the state overlay, so things lke the animated poison bubbles or the sleep's Zs. This isn't what I'm trying to move (I'm not using them). I'm trying to move around the little square icons that indicate a state.
As for playing with Sideview Height... it actually worked! I never thought it wouldn't affect the sprite itself, but just the hitbox around the enemy. To move the icons below the enemies, I actually had to put a negative value (so my enemies are -80 pixels high, if it makes sense!) However, it creates another problem: all the battle animations are off the target now... but I can probably fix that by manipulating the animations themselves... or tweak something else... Anyway, thanks for the idea
By the way, I continued searching for a solution yesterday and I came upon an addon by DreamX called DreamX Battle Sprite Icons. There's an option called "Normal states Window Y" that seems to indicate we could move the "y" value of the icons. However, the way to change it is complicated as it's written in code:
this._battler.spritePosY() - this._battler.spriteHeight() - this.standardPadding() - (DreamX.Param.BSIIconHeight * 2) - (this.standardPadding() / 2)
I tried to change the "2" but I didn't seen any difference. As I don't understand how that formula works, could anyone help me understand how to change that formula to actually lower the y?
Thanks!