Project1

标题: 如何在职业后面添加一个称号系统。 [打印本页]

作者: 春风莉露    时间: 2012-5-13 23:20
标题: 如何在职业后面添加一个称号系统。
喔喔
就是在数据库里的职业内@某某某代表该职业所拥有的称号。
怎么用脚本实现?dsu_plus_rewardpost_czw
作者: LOVE丶莫颜    时间: 2012-5-13 23:27
论坛有人发过,请乐于搜索哦,就不放传送门了,XP的称号脚本还支持不同的颜色哦,自己去搜索吧。{:2_285:}


‘‘──LOVE丶莫颜于2012-5-13 23:32补充以下内容

噢噢,是吗,那我就不知道了哦
’’
作者: 春风莉露    时间: 2012-5-14 21:32
喔喔
补充一下。

作者: tommay    时间: 2012-5-14 22:26
本帖最后由 tommay 于 2012-5-14 22:27 编辑

好久不写了,都忘光了。。。
数据库中职业名后面加“@称号”即可显示称号,也可不加。
文字颜色及位置可自行调整。
  1. class Window_Base
  2.   def draw_actor_class(actor, x, y)
  3.     self.contents.font.color = normal_color
  4.     class_name, chenghao = actor.class_name.split(/@/)
  5.     self.contents.draw_text(x, y, 236, 32, class_name)
  6.     self.contents.font.color = crisis_color
  7.     self.contents.draw_text(x+96, y, 236, 32, chenghao) unless chenghao.nil?
  8.   end
  9. end
复制代码





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