Project1

标题: 新手求助 [打印本页]

作者: suxue98    时间: 2014-8-15 21:55
标题: 新手求助
怎么把图中的修为 1  改成 修为  筑基   然后就是怎么设定每10级 就换个称呼   例如 1级=修为 筑基  10级=修为 结单
作者: 千夙    时间: 2014-8-15 22:16
你想改修为旁的那个数字?
作者: suxue98    时间: 2014-8-15 23:50
千夙 发表于 2014-8-15 22:16
你想改修为旁的那个数字?

恩是的修改那个数字。。。。。。。。。。。。。。。
作者: VIPArcher    时间: 2014-8-16 01:30
suxue98 发表于 2014-8-15 23:50
恩是的修改那个数字。。。。。。。。。。。。。。。

抢不过xd触,只好来VX区拣点简单的蹭糖。
  1. class Window_Base < Window
  2.   def draw_actor_level(actor, x, y)
  3.     self.contents.font.color = system_color
  4.     self.contents.draw_text(x, y, 32, WLH, Vocab::level_a)
  5.     self.contents.font.color = normal_color
  6.     case actor.level
  7.     when 0 .. 9
  8.       text = "筑基"
  9.     when 10 .. 19
  10.       text = "结单"
  11.     when 20 .. 29
  12.       test = "XXX"
  13.       #...继续添加   when 30 .. 39
  14.     else
  15.       test = "YYY"
  16.     end
  17.     self.contents.draw_text(x + 32, y, 48, WLH, text, 2)
  18.   end
  19. end
复制代码

作者: suxue98    时间: 2014-8-16 14:13
VIPArcher 发表于 2014-8-16 01:30
抢不过xd触,只好来VX区拣点简单的蹭糖。

谢谢。。。。。。。。。。。。。。。。。。。。。




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