no edit summary
(Added Outlands info) |
No edit summary |
||
| Line 17: | Line 17: | ||
---- | ---- | ||
;''Example'' | ;''Example 1'' | ||
local function LoadZones(c, ...) | |||
for i=1,select('#', ...),1 do | |||
c[i] = select(i,...) | |||
end | |||
end | |||
local C1 = {} | |||
local C2 = {} | |||
local C3 = {} | |||
local C4 = {} | |||
LoadZones(C1,GetMapZones(1)) | |||
LoadZones(C2,GetMapZones(2)) | |||
LoadZones(C3,GetMapZones(3)) | |||
LoadZones(C4,GetMapZones(4)) | |||
;''Result'' | |||
The array C1 holds all a list of all zone names for Kalimdore, C2 for Eastern Kingdoms, C3 for Outland, and C4 for Northrend. | |||
---- | |||
;''Example 2'' | |||
ZoneNames = {}; | ZoneNames = {}; | ||