#trying to edit a meme aura but don't know anything about coding

2 messages · Page 1 of 1 (latest)

nova hatch
#

Hey guys! I'm super new to WA coding and I just want to make this for my raid tonight, but I found this absolute banger that spins your camera when you cast spinning crane kick (can provide WA link too if needed!). I'm trying to make it work for an arms warrior bladestorm (or whirlwind if that doesn't work! I'll take anything I'm desperate!)

function(e, ...)
local spellID
if e == "COMBAT_LOG_EVENT_UNFILTERED" then
local sourceName = select(5, ...)
if sourceName == UnitName("player") then
spellID = select(12, ...)
if spellID == 101546 or spellID == 322729 then
SaveView(1)
MoveViewRightStart(15)
aura_env.spinning = true
else
if aura_env.spinning then
MoveViewRightStop()
SetView(1)
aura_env.spinning = false
end
end
end

`elseif e == "UNIT_SPELLCAST_CHANNEL_STOP" then`
    `spellID = select(3, ...)`
    `if spellID == 101546 or spellID == 322729 then`
        `if aura_env.spinning then`
            `MoveViewRightStop()`
            `SetView(1)`
            `aura_env.spinning = false`
       `end`
    `end`
`end`

end

cursive wadi
#

!starterkit