Project1
标题:
新人求教,怎么让角色在死亡后依旧获得经验?
[打印本页]
作者:
怒雪压孤城
时间:
2011-11-7 03:20
标题:
新人求教,怎么让角色在死亡后依旧获得经验?
本帖最后由 怒雪压孤城 于 2011-11-10 11:15 编辑
比如在一次战斗中死亡一名角色
那么怎么让该角色在战斗后依旧获得这次战斗的经验?
搜索、置顶已看……暂时还未发现答案…… dsu_plus_rewardpost_czw
作者:
禾西
时间:
2011-11-7 03:59
Scene_Battle 2 的 170行有這樣一個腳本
if actor.cant_get_exp? == false
last_level = actor.level
actor.exp += exp
if actor.level > last_level
@status_window.level_up(i)
end
end
复制代码
改成這樣
#if actor.cant_get_exp? == false
last_level = actor.level
actor.exp += exp
if actor.level > last_level
@status_window.level_up(i)
end
#end
复制代码
作者:
爆焰
时间:
2011-11-7 12:30
将“战斗不能”状态的“无法获得EXP”的沟去掉即可。
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1