赞 | 0 |
VIP | 40 |
好人卡 | 0 |
积分 | 1 |
经验 | 13258 |
最后登录 | 2021-2-21 |
在线时间 | 11 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 100
- 在线时间
- 11 小时
- 注册时间
- 2007-7-1
- 帖子
- 327
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我用了这个豪华菜单。
http://rpg.blue/web/htm/news460.htm
但是它在状态的窗口里只有七个,有个空的不爽,我照样子模仿了一个,在状态窗口显示经验。
这个脚本在Scene_Status★第46行。
self.contents.font.color = system_color
self.contents.draw_text(12, 208, 120, 32, "攻击")
self.contents.draw_text(96, 208, 120, 32, "经验")
self.contents.draw_text(12, 232, 120, 32, "防御")
self.contents.draw_text(96, 232, 120, 32, "魔防")
self.contents.draw_text(12, 264, 120, 32, "力量")
self.contents.draw_text(96, 264, 120, 32, "耐力")
self.contents.draw_text(12, 288, 120, 32, "速度")
self.contents.draw_text(96, 288, 120, 32, "精神")
self.contents.font.color = normal_color
self.contents.draw_text(12+44, 208, 30, 32, @actor.atk.to_s,1)
self.contents.draw_text(96+44, 208, 30, 32, @actor.next_rest_exp_s.to_s,1)
self.contents.draw_text(12+44, 232, 30, 32, @actor.pdef.to_s,1)
self.contents.draw_text(96+44, 232, 30, 32, @actor.mdef.to_s,1)
self.contents.draw_text(12+44, 264, 30, 32, @actor.str.to_s,1)
self.contents.draw_text(96+44, 264, 30, 32, @actor.dex.to_s,1)
self.contents.draw_text(12+44, 288, 30, 32, @actor.agi.to_s,1)
self.contents.draw_text(96+44, 288, 30, 32, @actor.int.to_s,1)
但是问题来了,主角的下一等级所需经验无法显示,其他人显示正常,请问该怎么改?
还有我想在如图所示位置显示金钱,该怎么做呢?
麻烦大家了。 版务信息:本贴由楼主自主结贴~ |
|