美女要黄瓜吗 发表于 2024-5-2 16:52:49

求问在释放奥术飞弹时候如何打断



在没有飞弹速射buff的情况下打断奥术飞弹


if not BeeStringFind("飞弹速射",buff)then

    if   BeeUnitCastSpellName("player")=="奥术飞弹"   then   BeeRun("/stopcasting")endend


我这样写的并不能打断

qdlxtjp 发表于 2024-5-3 00:18:28

/stopcasting
并不能用于335版本的 奥术飞弹
可以在释放奥术飞弹的时候加上时间或者剩余施法时间判定以避免重复释放奥术飞弹

美女要黄瓜吗 发表于 2024-5-6 10:50:41

qdlxtjp 发表于 2024-5-3 12:18 AM
/stopcasting
并不能用于335版本的 奥术飞弹
可以在释放奥术飞弹的时候加上时间或者剩余施法时间判定以避 ...

请问 剩余施法时间判定 函数是啥啊

maygo 发表于 2024-5-6 22:26:25

if not BeeStringFind("飞弹速射",buff) and BeeUnitCastSpellName("player")=="奥术飞弹" and BeeIsRun("奥术冲击")and not BeeUnitCastSpellName("player") then
    BeeRun("/stopcasting\n/cast 奥术冲击")
return;end
页: [1]
查看完整版本: 求问在释放奥术飞弹时候如何打断