赞 | 0 |
VIP | 5 |
好人卡 | 14 |
积分 | 15 |
经验 | 110639 |
最后登录 | 2015-10-15 |
在线时间 | 1157 小时 |
Lv3.寻梦者 小柯的徒弟
- 梦石
- 0
- 星屑
- 1530
- 在线时间
- 1157 小时
- 注册时间
- 2008-5-24
- 帖子
- 3085
|
- class Scene_Item
- def update_exp(item_id,exp)
- if @item.id == item_id
- $game_party.actors[@target_window.index].exp+= exp
- end
- $game_temp.message_text = "使用了"[email protected]+",得到了"+exp.to_s+"点经验。"
- end
- end
复制代码 然后搜索$game_temp.common_event_id = @item.common_event_id结果第二个,
下面加上
update_exp(物品编号,经验数量)
↑这段脚本可以复制多用。 |
|