Project1

标题: 如何让技能1000%附加状态时只要对方不免疫就百分百附加 [打印本页]

作者: 爱羊真知己    时间: 2023-1-4 11:27
标题: 如何让技能1000%附加状态时只要对方不免疫就百分百附加
本帖最后由 寂静的夜里 于 2023-1-11 16:45 编辑

没错,我这个脚本渣又来提问了。请问如何在技能中让1000%附加状态时只要对方不免疫就百分百附加?(无视所有属性,且只要改1000%,和直接用事件强制附加一个效果)
作者: 爱羊真知己    时间: 2023-1-6 22:15
?难道只有我这里是1000%附加率,对方能力值只要够强就不会附加吗?或者不容易实现?
作者: 爱羊真知己    时间: 2023-1-7 11:19
爱羊真知己 发表于 2023-1-6 22:15
?难道只有我这里是1000%附加率,对方能力值只要够强就不会附加吗?或者不容易实现? ...

请问是改成这样吗?
  1.   def item_effect_add_state_normal(user, item, effect)
  2.     if effect.value1 == 10
  3.       add_state(effect.data_id)
  4.       @result.success = true
  5.     else
  6.       chance = effect.value1
  7.       chance *= state_rate(effect.data_id) if opposite?(user)
  8.       chance *= luk_effect_rate(user)      if opposite?(user)
  9.       if rand < chance
  10.         add_state(effect.data_id)
  11.         @result.success = true
  12.       end
  13.     end
  14.   end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1