Project1

标题: 怎么把在使用物品时右方显示的人物状态栏去掉 [打印本页]

作者: saiegg2005    时间: 2019-4-17 17:18
标题: 怎么把在使用物品时右方显示的人物状态栏去掉
如图,能否用脚本去掉呢?

作者: 世界第一中二    时间: 2019-4-17 17:33
你好,你用的是va
为什么发在vx区了
作者: saiegg2005    时间: 2019-4-17 17:40
世界第一中二 发表于 2019-4-17 17:33
你好,你用的是va
为什么发在vx区了

我刚发现自己发错区了,但不知道怎么换区或者删帖
作者: 世界第一中二    时间: 2019-4-17 17:41
saiegg2005 发表于 2019-4-17 17:40
我刚发现自己发错区了,但不知道怎么换区或者删帖

顺带一提,你要的效果能在这个帖子里找到
https://rpg.blue/thread-378738-1-1.html
作者: saiegg2005    时间: 2019-4-17 17:58
世界第一中二 发表于 2019-4-17 17:41
顺带一提,你要的效果能在这个帖子里找到
https://rpg.blue/thread-378738-1-1.html

那个帖子里所说的,好像只是删除菜单页面里显示的人物状态栏来着。(这点我已经弄好了呢~)
而我想要的是删除在点击某物品后所显示出来的人物状态栏呢。
作者: 活气寒露    时间: 2019-4-17 20:46
  1. #==============================================================================
  2. # ■ Window_MenuActor
  3. #==============================================================================
  4. class Window_MenuActor < Window_MenuStatus
  5.   #--------------------------------------------------------------------------
  6.   # ● 绘制项目
  7.   #--------------------------------------------------------------------------
  8.   def draw_item(index)
  9.     actor = $game_party.members[index]
  10.     enabled = $game_party.battle_members.include?(actor)
  11.     rect = item_rect(index)
  12.     draw_item_background(index)
  13.     draw_actor_face(actor, rect.x + 1, rect.y + 1, enabled)
  14.     draw_actor_name(actor, rect.x + 97, rect.y + line_height * 0)
  15.     draw_actor_level(actor, rect.x + 97, rect.y + line_height * 1)
  16.     draw_actor_icons(actor, rect.x + 97, rect.y + line_height * 2)
  17.     draw_actor_class(actor, rect.x + 217, rect.y + line_height * 0)
  18.   end
  19. end
复制代码

插入该脚本即可
作者: saiegg2005    时间: 2019-4-17 23:38
活气寒露 发表于 2019-4-17 20:46
插入该脚本即可

感谢~我明天试试看~
作者: saiegg2005    时间: 2019-4-18 11:45
活气寒露 发表于 2019-4-17 20:46
插入该脚本即可

你好,阁下的脚本已经将上图右方人物状态栏里的HP,MP删除了,不过人物等级还在来着,冒昧问下等级能否也去掉吗?
作者: saiegg2005    时间: 2019-4-18 11:50
活气寒露 发表于 2019-4-17 20:46
插入该脚本即可


如图
作者: saiegg2005    时间: 2019-4-18 15:30
saiegg2005 发表于 2019-4-18 11:50
如图

啊我知道怎么处理了呢,只要把等级那段代码注释掉就好了呢




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1