###########################################################################
@SB = [33, 34] # “武林秘籍”的编号
for i in 0..@SB.size
if @SB == @item.id
used = true
end
end
###########################################################################
end
# 使用物品的情况下
if used
# 演奏物品使用时的 SE
$game_system.se_play(@item.menu_se)
###########################################################################
case @item.id
when 33
target.learn_skill(1) # 习得特技治疗
when 34
target.learn_skill(69) # 习得毒刃特技
# 以后的就按着这样的格式写:
#when 特技编号
#target.learn_skill(要学的技能编号)
end
###########################################################################
加上这一段就搞定啦,真厉害,感动ing[p:4]