GetSocketTypes

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 2.0.1 / 1.15.0

Returns the type (color) of a socket in the item.

Arguments

Index
Number - The 1-based index of the socket for which to get information.

Returns

SocketType
String - The type of the socket at position Index. The value could be any of these (apparently unlocalized) strings:
"Red" - Red socket
"Yellow" - Yellow socket
"Blue" - Blue socket
"Meta" - Meta socket
"Socket" - Prismatic socket

Example

local SocketCount = GetNumSockets()
for i = 1, SocketCount do
  print(GetSocketInfo(i))
end

Details

This function is only useful if the item socketing window is currently visible.