Thank you for creating this plugin. this plugin is great and I'm also using your custom parameters plugin too! I'm am probably just missing something but i cant figure out what escape code to display Enemy custom parameters. I had no trouble displaying actor custom stats in text window but i am not seeing anything in the plugin to display custom stats for enemies. Any help is appreciated, thank you.
Viewing post in Hakuen Studio Escape Codes for RPG Maker MV MZ comments
Hi there!
Yeah, I believe I didn't implement it. I will do the next update after the IGMC contest.
But there is another way to get it, you can use the eval escape code:
=| your formula here |=

$gameTroop.members()[Enemy Index].cparam(C Param Id)
If you want to find an enemy through it's id, and not his battler index:
$gameTroop.members().find(enemy => enemy.enemyId() === ID)
-Replace ID with he id of the enemy you want to find.