View Single Post
05-07-17, 08:26 PM   #7
Layback_
An Onyxian Warder
Join Date: Feb 2016
Posts: 358
Originally Posted by MunkDev View Post
Generally, you probably shouldn't go looking for mixins unless you have a distinct need for them. If you do insist, however, you can use this script to list all existing mixins in your chat:
Lua Code:
  1. /run for k in pairs(_G) do if k:match("Mixin") then print(k) end end
Wow... there are tons of Mixins haha!!

Thank you so much for your detailed explanation!

I really appreciate your help
  Reply With Quote