赞 | 663 |
VIP | 62 |
好人卡 | 144 |
积分 | 334 |
经验 | 110435 |
最后登录 | 2024-11-1 |
在线时间 | 5108 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 33414
- 在线时间
- 5108 小时
- 注册时间
- 2012-11-19
- 帖子
- 4878
|
本帖最后由 芯☆淡茹水 于 2014-9-16 10:38 编辑
这个,插到 main 前:- def element_nu11_jude(actor_id, swiche_id)
- actor = $game_actors[actor_id]
- for id in [actor.armor1_id,actor.armor2_id,actor.armor3_id,actor.armor4_id]
- armor = $data_armors[id]
- next if armor.nil?
- if armor.guard_element_set.include?(11)
- $game_switches[swiche_id] = true
- $game_map.need_refresh = true
- break
- end
- end
- end
复制代码 要判断时在:事件--脚本 里,写上:element_nu11_jude(actor_id, swiche_id)
括号里两个参数:actor_id 要判断的角色ID。
swiche_id 判断角色防具有11号属性防御时,打开的开关ID。 |
评分
-
查看全部评分
|