赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 2 |
经验 | 13028 |
最后登录 | 2018-6-30 |
在线时间 | 339 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 195
- 在线时间
- 339 小时
- 注册时间
- 2012-7-16
- 帖子
- 148
|
- class Scene_Map
- alias :lvup_initialize :initialize
- alias :lvup_update :update
- def initialize
- lvup_initialize
- @savelevel = $game_party.actors[0].level
- end
- def update
- lvup_update
- if @savelevel != $game_party.actors[0].level
- @savelevel = $game_party.actors[0].level
- $game_temp.common_event_id = 10
- $game_player.animation_id = 19 #你想升级时播放的动画ID!
- end
- end
- end
复制代码 我只是坑爹的路过的罢了。 |
评分
-
查看全部评分
|