Wowpedia

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

READ MORE

Wowpedia
(One intermediate revision by one other user not shown)
Line 7: Line 7:
   
 
==Example==
 
==Example==
print("You set up" .. GetNumEquipmentSets() .. " equipment sets.")
+
print("You set up " .. GetNumEquipmentSets() .. " equipment sets.")
  +
  +
  +
{{API Trail EquipmentManager}}

Revision as of 12:03, 18 February 2010

Returns the number of saved equipment sets.

count = GetNumEquipmentSets();

Returns

count
Number - number of saved sets for the current character.

Example

print("You set up " .. GetNumEquipmentSets() .. " equipment sets.")