赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 2668 |
最后登录 | 2016-4-27 |
在线时间 | 48 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 48 小时
- 注册时间
- 2011-12-24
- 帖子
- 5
|
本帖最后由 love4567536 于 2012-5-12 22:02 编辑
- #--------------------------------------------------------------------------
- # ● CP条更新
- #--------------------------------------------------------------------------
- def refresh_cp
- @blank_window.x = 128 - @info_viewport.ox
- @basepic.x = 144 - @info_viewport.ox
- for iii in $game_party.members + $game_troop.members
- if iii.is_a?(Game_Actor)
- icon_index = $data_weapons[iii.weapon_id].icon_index
- @cppic[iii].src_rect.set(icon_index % 16 * 24, icon_index / 16 * 24, 24, 24)
- else
- @cppic[iii].src_rect.set(312, 216, 24, 24)
- end
- if iii.hp > 0
- @cppic[iii].visible = $CP可见
- else
- @cppic[iii].visible = false
- end
- @cppic[iii].x = 132 + (iii.cp * 384 / 5000).to_i - @info_viewport.ox
- end
- end
- #--------------------------------------------------------------------------
复制代码 开始战斗后就会弹出:脚本 'Siddeview 3' 的第81行发生了NoMethodError . undefined method 'icon_index'for nil:NilClass
是因为什么原因啊?麻烦大家帮我看看,谢谢啦! |
评分
-
查看全部评分
|