赞 | 1 |
VIP | 60 |
好人卡 | 27 |
积分 | 6 |
经验 | 39775 |
最后登录 | 2023-11-29 |
在线时间 | 2271 小时 |
Lv2.观梦者 (暗夜天使) 万兽
- 梦石
- 0
- 星屑
- 597
- 在线时间
- 2271 小时
- 注册时间
- 2006-11-4
- 帖子
- 4868
|
本帖最后由 弗雷德 于 2013-6-30 15:57 编辑
举个例子,10号状态为消失后自动回蓝的状态。
状态编号自己定
Game_Battler 2
219行- def remove_states_auto
- for i in @states_turn.keys.clone
- if @states_turn[i] > 0
- @states_turn[i] -= 1
- elsif rand(100) < $data_states[i].auto_release_prob
- remove_state(i)
- end
- end
- end
复制代码 改成- def remove_states_auto
- for i in @states_turn.keys.clone
- if @states_turn[i] > 0
- @states_turn[i] -= 1
- elsif rand(100) < $data_states[i].auto_release_prob
- self.sp = self.maxsp if i == 10
- remove_state(i)
- end
- end
- end
复制代码 |
|