Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created December 21, 2021 14:29
Show Gist options
  • Select an option

  • Save triacontane/cbc04b22b6c618c6bca9834f741cc7d8 to your computer and use it in GitHub Desktop.

Select an option

Save triacontane/cbc04b22b6c618c6bca9834f741cc7d8 to your computer and use it in GitHub Desktop.
MPのポップアップを無効化
/*:
* @plugindesc MPのポップアップを無効化
* @target MZ
*/
(()=> {
Game_Battler.prototype.shouldPopupDamage = function() {
const result = this._result;
return (
result.missed ||
result.evaded ||
result.hpAffected
);
};
})();
@triacontane
Copy link
Copy Markdown
Author

MPのポップアップを無効にします。
MITライセンスで使用可能

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment