赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 948 |
最后登录 | 2020-5-5 |
在线时间 | 11 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 60
- 在线时间
- 11 小时
- 注册时间
- 2009-2-7
- 帖子
- 40
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我借用了【大富翁之勇者斗恶龙】的一个装备系统的脚本,可放到自己的脚本后,开始游戏时就出现这样的错误:
脚本'Scene_Equip'的313行发生了 NameError。
uninitialized constant Scene_Equip::OPACITY_66RPG
请问应怎样解决?谢谢!帮帮忙啊啊啊!!!!
#--------------------------------------------------------------------------
def set_new_parameters(new_atk, new_pdef, new_mdef, new_str, new_dex, new_agi, new_int)
if @new_atk != new_atk or @new_pdef != new_pdef or @new_mdef != new_mdef or @new_str != new_str or @new_dex != new_dex or @new_agi != new_agi or @new_int != new_int
@new_atk = new_atk
@new_pdef = new_pdef
@new_mdef = new_mdef
@new_str = new_str
@new_dex = new_dex
@new_agi = new_agi
@new_int = new_int
refresh
end
end
end
#==============================================================================
# ■ Harts_Scene_Equip
#==============================================================================
class Scene_Equip
include OPACITY_66RPG 就是这
#--------------------------------------------------------------------------
# ● 初期化
# actor_index : 角色编号
# equip_index : 装備编号
#--------------------------------------------------------------------------
def initialize(actor_index = 0, equip_index = -1, command_index = 0, equip_active = false, command_active = true)
@actor_index = actor_index
@equip_index = equip_index
@command_index = command_index
@equip_active = equip_active
@command_active = command_active
end
#--------------------------------------------------------------------------
# ● 主处理
#------------------------------------ 此贴于 2009-2-13 13:01:14 被版主darkten提醒,请楼主看到后对本贴做出回应。 版务信息:版主帮忙结贴~ |
|