Inquery about Pull Timer Functionality
Ellyonia opened this issue ยท 4 comments
I was curious as to what WoW API function you guys use to send pull timer requests out to DBM and other BW users.
I am looking into creating a macro that would switch between 2 different timer lengths and have the logic for determining which timer to use, but not running in to trouble executing the /pull and figured I might be able to use the back end logic of the /pull command in the macro.
/pull
is implemented in Plugins/Pull.lua
: https://github.com/BigWigsMods/BigWigs/blob/master/Plugins/Pull.lua#L196
The easiest way to issue a pull command is to actually call the command implementation yourself, using the SlashCmdList.BIGWIGSPULL
function in your macro.
@Ellyonia Does this answer your question?