赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
suxue98 发表于 2014-8-15 23:50
恩是的修改那个数字。。。。。。。。。。。。。。。
抢不过xd触,只好来VX区拣点简单的蹭糖。- class Window_Base < Window
- def draw_actor_level(actor, x, y)
- self.contents.font.color = system_color
- self.contents.draw_text(x, y, 32, WLH, Vocab::level_a)
- self.contents.font.color = normal_color
- case actor.level
- when 0 .. 9
- text = "筑基"
- when 10 .. 19
- text = "结单"
- when 20 .. 29
- test = "XXX"
- #...继续添加 when 30 .. 39
- else
- test = "YYY"
- end
- self.contents.draw_text(x + 32, y, 48, WLH, text, 2)
- end
- end
复制代码 |
评分
-
查看全部评分
|