rpgmakermv吧 关注:20,645贴子:66,477
  • 7回复贴,共1
求助

想做解密类游戏,请问大佬如何去除菜单的血量显示!

只看楼主收藏回复

如图,萌新请问大佬如何关闭等级血量蓝量显示,或者求自定义菜单的插件


IP属地:江苏来自Android客户端1楼2024-06-14 23:16回复
    forums.rpgmakerweb.com/index.php?threads/rpg-maker-mz-revove-hp-mp-class-and-lvl.169424/
    实在是没想到这个脚本也能用上233333
    (() => {
    Window_Base.prototype.drawActorSimpleStatus = function(actor, x, y, width) {
    var lineHeight = this.lineHeight();
    var x2 = x + 180;
    var width2 = Math.min(200, width - 180 - this.textPadding());
    this.drawActorName(actor, x, y);
    // this.drawActorLevel(actor, x, y + lineHeight * 1);
    this.drawActorIcons(actor, x, y + lineHeight * 2);
    this.drawActorClass(actor, x2, y);
    //this.drawActorHp(actor, x2, y + lineHeight * 1, width2);
    // this.drawActorMp(actor, x2, y + lineHeight * 2, width2);
    };
    })()


    IP属地:河南2楼2024-06-16 18:34
    回复
      猜你想看,帖子转不过来只能截图了


      IP属地:上海来自Android客户端4楼2024-06-16 20:54
      收起回复
        那这个应该可以实现在某个特定的时间不显示血量?


        IP属地:河北来自Android客户端5楼2024-07-02 23:14
        回复