赞 | 5 |
VIP | 71 |
好人卡 | 22 |
积分 | 6 |
经验 | 32145 |
最后登录 | 2013-8-9 |
在线时间 | 184 小时 |
Lv2.观梦者 天仙
- 梦石
- 0
- 星屑
- 620
- 在线时间
- 184 小时
- 注册时间
- 2008-4-15
- 帖子
- 5023
|
本帖最后由 雪流星 于 2009-8-13 11:59 编辑
在 Window_ShopBuy 里面找这段- def draw_item(index)
- item = @data[index]
- number = $game_party.item_number(item)
- enabled = (item.price <= $game_party.gold and number < 99)
- rect = item_rect(index)
- self.contents.clear_rect(rect)
- draw_item_name(item, rect.x, rect.y, enabled)
- rect.width -= 4
- self.contents.draw_text(rect, item.price, 2)
- end
复制代码 把 self.contents.draw_text(rect, item.price, 2) 换成- self.contents.draw_text(rect, item.price.to_s + Vocab.gold , 2)
复制代码 如果想把单位的文字加上颜色,那就在self.contents.draw_text(rect, item.price, 2)的上面加上
- self.contents.font.color = 颜色
- self.contents.draw_text(rect, Vocab.gold , 2)
- self.contents.font.color = normal_color
- rect.width -= 24
复制代码 |
|