Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
(New page)
 
Line 8: Line 8:
 
== Returns ==
 
== Returns ==
 
:SocketType
 
:SocketType
::SocketType - The type of the socket at position Index. The value could be any of these (apparently unlocalized) strings:
+
::String - The type of the socket at position Index. The value could be any of these (apparently unlocalized) strings:
 
:::"Red" - Red socket
 
:::"Red" - Red socket
 
:::"Yellow" - Yellow socket
 
:::"Yellow" - Yellow socket
Line 14: Line 14:
 
:::"Meta" - Meta socket
 
:::"Meta" - Meta socket
 
:::"Socket" - Prismatic socket
 
:::"Socket" - Prismatic socket
 
   
 
== Example ==
 
== Example ==

Revision as of 23:57, 22 June 2009

Returns the type of one of the sockets in the item currently in the item socketing window.

Arguments

Index
Index - 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.