设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索

请问个战斗显示战斗者名字的问题

查看数: 1972 | 评论数: 1 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2015-6-23 00:32

正文摘要:

战斗者的名字是阿尔西斯就显示1111

回复

RyanBern 发表于 2015-6-23 08:15:43
插入以下脚本即可。
RUBY 代码复制
  1. module ZZZ
  2.   # 战斗名设置方法:角色ID => 战斗名称
  3.   # 如果未设置的话会显示原来的名字
  4.   Zzz = {
  5.     1 => "1111"
  6.     2 => "2222"
  7.   }
  8. end
  9. class Game_Actor
  10.   def battle_name
  11.     return ZZZ::Zzz[self.id] != nil ? ZZZ::Zzz[self.id] : self.name
  12.   end
  13. end
  14. class Window_Base
  15.   def draw_actor_battle_name(actor, x, y)
  16.     self.contents.font.color = normal_color
  17.     self.contents.draw_text(x, y, 120, 32, actor.battle_name)
  18.   end
  19. end

然后把你第一张图中高亮选择的部分替换成
RUBY 代码复制
  1. draw_actor_battle_name(actor, actor_x, 0)

评分

参与人数 1星屑 +21 收起 理由
kuerlulu + 21 认真的版主

查看全部评分

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-25 07:12

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表