The u_skins is a mod, not a modpack. Moved u_skins to the root and all updater stuff to the (new) updater directory

This commit is contained in:
Alexander Weber
2016-09-05 21:02:53 +02:00
parent be8fa19b68
commit 8aef2c19ba
23 changed files with 10 additions and 8 deletions

26
skinlist.lua Normal file
View File

@ -0,0 +1,26 @@
u_skins.list = {}
u_skins.meta = {}
local id = 1
local internal_id = 1
local fetched_skip = 0
while fetched_skip < 40 do
local name = "character_"..id
local file = io.open(u_skins.modpath.."/meta/"..name..".txt", "r")
if file then
local data = string.split(file:read("*all"), "\n", 3)
file:close()
u_skins.list[internal_id] = name
u_skins.meta[name] = {}
u_skins.meta[name].name = data[1]
u_skins.meta[name].author = data[2]
u_skins.meta[name].license = data[3]
u_skins.meta[name].description = "" --what's that??
fetched_skip = 0
internal_id = internal_id + 1
end
fetched_skip = fetched_skip + 1
id = id + 1
end