赞 | 3 |
VIP | 41 |
好人卡 | 11 |
积分 | 14 |
经验 | 61674 |
最后登录 | 2024-6-21 |
在线时间 | 500 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1365
- 在线时间
- 500 小时
- 注册时间
- 2007-4-6
- 帖子
- 451
|
修改脚本 Window_ShopBuy 里大概第85行
self.contents.draw_text(x + 150, y, 88, 32, item.price.to_s, 2)
end
把红色字那里修改成150
脚本Window_ShopSell 里大概第84行
self.contents.draw_text(x + 150, y, 16, 32, ":", 1)
self.contents.draw_text(x + 156, y, 24, 32, number.to_s, 2)
end
同样修改红色字,这里是我修改好了的!
还有脚本Window_ShopNumber 里大概第42行
self.contents.draw_text(170, 96, 32, 32, "×")
self.contents.draw_text(200, 96, 24, 32, @number.to_s, 2)
self.cursor_rect.set(200, 96, 32, 32)
# 描绘合计价格和货币单位
domination = $data_system.words.gold
cx = contents.text_size(domination).width
total_price = @price * @number
self.contents.font.color = normal_color
self.contents.draw_text(4, 160, 228-cx-2, 32, total_price.to_s, 2)
self.contents.font.color = system_color
self.contents.draw_text(232-cx, 160, cx, 32, domination, 2)
也是红色部分!
end |
|