Macro request. ( Camera change )

Hi all,

Could anyone with some macro experience please help me with a macro?

What I’m after is a macro/script that can incorporate;
When mounted and changes camera view to /console actionCam off.
And when dismounted or no mount detected, changes camera view to /console actionCam basic

Just to add some context, I play wow with ActionCam Basic on, what really bothers me however is when I’m flying the camera does not feel right. Changing the Actioncam off while flying feels more natural. But just having a basic macro to enable the cam and disable is exhausting.

Hope this helps and somebody could help me with such macro/script

This is how I would do it in a single script, with random favorite mount

/run if IsMounted() then Dismount(); ConsoleExec("ActionCam basic") else C_MountJournal.SummonByID(0); ConsoleExec("ActionCam off") end

Not sure if this is a proper toggle when using a specific mount

/run ConsoleExec("ActionCam "..(IsMounted() and "basic" or "off"))
/cast [nomounted] Chestnut Mare
/dismount [mounted]

Otherwise you can use the DynamicCam addon

3 Likes

This is exactly what I was looking for,
Thankyou so much for making this for me Ketho.

1 Like

You’re welcome. I slightly changed that last macro

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.