赞 | 0 |
VIP | 170 |
好人卡 | 5 |
积分 | 1 |
经验 | 15787 |
最后登录 | 2013-8-6 |
在线时间 | 285 小时 |
Lv1.梦旅人 垃圾死人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 285 小时
- 注册时间
- 2009-1-27
- 帖子
- 2420
|
原来是我递进关系没弄好。。。我改成以下模式。。。终于可以了。。。
谢谢前辈。。。。{/se}{/hx}
能顺路告诉我三行东西是啥意思么???
就是"alias update_abc update" "def update" "update_abc"这三行的意思。。。
class Scene_Map
alias update_abc update
def update
update_abc
if $game_actors[1].agi > 250
$game_actors[1].class_id = 9
elsif $game_actors[1].agi > 200
$game_actors[1].class_id = 8
elsif $game_actors[1].agi > 150
$game_actors[1].class_id = 7
elsif $game_actors[1].agi < 100
$game_actors[1].class_id = 1
end
end
end
|
|