赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 3 |
经验 | 0 |
最后登录 | 2025-7-21 |
在线时间 | 30 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 250
- 在线时间
- 30 小时
- 注册时间
- 2018-7-30
- 帖子
- 4
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 1966337485 于 2025-7-20 20:25 编辑
在rpgmakermv中用yep插件设置一个技能动作序列,跑到敌人面前砍一刀然后回到原处并且使另一个技能cd减少一回合。
这是deepseek给出的
<setup action>
display action
immortal: targets, true
</setup action>
<target action>
move user: target, front, 20
wait for movement
motion attack: user
wait: 10
attack animation: target
wait for animation
action effect
motion wait: user
wait: 10
move user: return, 20
wait for movement
</target action>
<finish action>
immortal: targets, false
</finish action>
<Custom Cooldown Effect>
// 减少另一个技能的CD
var skillId = X; // 将X替换为你想要减少CD的技能ID
user.startCooldown(skillId, -1); // 减少1回合CD
</Custom Cooldown Effect> |
|