Project1

标题: 请问个战斗显示战斗者名字的问题 [打印本页]

作者: j1747532399l    时间: 2015-6-23 00:32
标题: 请问个战斗显示战斗者名字的问题

这个是显示战斗者的名字
我想自己设置好比这样

战斗者的名字是阿尔西斯就显示1111
作者: RyanBern    时间: 2015-6-23 08:15
插入以下脚本即可。
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)





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