mirror of
https://github.com/SmallJoker/minetest-u_skinsdb.git
synced 2025-07-16 15:00:23 +02:00
first commit
This commit is contained in:
25
u_skins/skinlist.lua
Normal file
25
u_skins/skinlist.lua
Normal file
@ -0,0 +1,25 @@
|
||||
u_skins.list = {}
|
||||
u_skins.add = function(skin)
|
||||
table.insert(u_skins.list,skin)
|
||||
end
|
||||
|
||||
local id
|
||||
|
||||
id = 1
|
||||
while true do
|
||||
local f = io.open(minetest.get_modpath("u_skins").."/textures/player_"..id..".png")
|
||||
if (not f) then break end
|
||||
f:close()
|
||||
u_skins.add("player_"..id)
|
||||
id = id +1
|
||||
end
|
||||
|
||||
id = 1
|
||||
while true do
|
||||
local f = io.open(minetest.get_modpath("u_skins").."/textures/character_"..id..".png")
|
||||
if (not f) then break end
|
||||
f:close()
|
||||
u_skins.add("character_"..id)
|
||||
id = id +1
|
||||
end
|
||||
|
Reference in New Issue
Block a user