检查是否挖矿魔兽世界

发布于 2024-12-21 05:04:25 字数 39 浏览 1 评论 0原文

我如何检查玩家是否正在魔兽世界中采矿,然后在采矿完成后铸造坐骑?

How would I check if the player is mining in World of Warcraft and then cast a mount once mining is complete?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

糖粟与秋泊 2024-12-28 05:04:25

要确定角色是否正在挖矿,请收听 UNIT_SPELLCAST_STARTUNIT_SPELLCAST_SUCCEEDED/UNIT_SPELLCAST_FAILED 事件。检查unitID ==playerspellID==miningSpellId(有几个,每个等级一个,所以你可能需要考虑使用法术名称)。

但是,一旦采矿完成,您就无法自动铸造坐骑,因为采矿是通过单击插件无法访问的世界对象(即采矿节点)来初始化的。您可以使用 SecureActionButtonTemplate 按钮来获取硬件事件并投射坐骑,但将其链接到挖掘操作应该超出范围。

To figure out if a character is mining, listen to the UNIT_SPELLCAST_START and UNIT_SPELLCAST_SUCCEEDED/UNIT_SPELLCAST_FAILED events. Check that unitID == player and spellID == miningSpellId (there are several, one for each rank, so you might want to consider using the spell name instead).

However, you cannot automatically cast a mount once your mining is finished, as mining is initialized by clicking a world object (i.e. the mining node) which is out of reach for addons. You could use a SecureActionButtonTemplate button to grab your hardware event and cast a mount, but linking that to the action of mining should be out of scope.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文