mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-02-09 00:10:19 +01:00
Ajout du skin "santa_01" en WTFPL fait par JAPP (que l'on remercie)
This commit is contained in:
parent
5b4b115f54
commit
a3b6f66c47
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/.project
|
Binary file not shown.
Binary file not shown.
@ -1,28 +0,0 @@
|
|||||||
minetest-u_skins
|
|
||||||
================
|
|
||||||
An skin extention for the Minetest mod unified_inventory by Dean Montgomery
|
|
||||||
It downloads the skins from the Minetest skin database. (http://minetest.fensta.bplaced.net)
|
|
||||||
|
|
||||||
Requires latest unified_inventory from:
|
|
||||||
https://github.com/minetest-technic/unified_inventory
|
|
||||||
|
|
||||||
To download the latest skins you need to run:
|
|
||||||
"./update_from_db.py" OR
|
|
||||||
the win32.NET client
|
|
||||||
|
|
||||||
Licenses:
|
|
||||||
--------
|
|
||||||
|
|
||||||
cornernote:
|
|
||||||
Lua source code (GPLv3)
|
|
||||||
|
|
||||||
Fritigern:
|
|
||||||
update_skins_db.sh (CC-BY-NC-SA 4.0)
|
|
||||||
|
|
||||||
Krock:
|
|
||||||
Lua source code (GPLv3)
|
|
||||||
MT_skins_updater.exe (WTFPL)
|
|
||||||
|
|
||||||
Credits:
|
|
||||||
--------
|
|
||||||
RealyBadAngel unified_inventory and Zeg9 skinsdb
|
|
@ -1,48 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
# This script is used to generate the previews needed by the mod
|
|
||||||
# It requires blender with the latest python API (2.6x is tested)
|
|
||||||
# A script that works with older blenders and, maybe, without python, is available in older commits.
|
|
||||||
# This script can also use pngcrush and imagemagick to reduce output size,
|
|
||||||
# please enable them if you want to push to the git repository of the mod.
|
|
||||||
# Pngcrush output will be written to .previews/pngcrush_output
|
|
||||||
# Warning: any file in .previews/ and u_skins/textures might be deleted without asking.
|
|
||||||
PNGCRUSH=true
|
|
||||||
IMAGEMAGICK=true
|
|
||||||
cd .previews
|
|
||||||
rm ../u_skins/textures/*_preview*.png # Remove all previous previews
|
|
||||||
blender -b skin_previews.blend --python-text "Generate previews" > /dev/null
|
|
||||||
if $IMAGEMAGICK
|
|
||||||
then echo "Stripping metadata from generated files..."
|
|
||||||
else echo "Moving files..."
|
|
||||||
fi
|
|
||||||
rm -rf output # remove my output
|
|
||||||
mkdir -p output
|
|
||||||
for i in blender_out/character_*_00.png;
|
|
||||||
do
|
|
||||||
out_name=$(basename $i | sed -e 's/_00.png//g')
|
|
||||||
out_file=output/"$out_name"_preview.png
|
|
||||||
if $IMAGEMAGICK
|
|
||||||
then
|
|
||||||
convert -strip $i $out_file
|
|
||||||
else
|
|
||||||
mv $i $out_file
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
for i in blender_out/character_*_01.png;
|
|
||||||
do
|
|
||||||
out_name=$(basename $i | sed -e 's/_01.png//g')
|
|
||||||
out_file=output/"$out_name"_preview_back.png
|
|
||||||
if $IMAGEMAGICK
|
|
||||||
then
|
|
||||||
convert -strip $i $out_file
|
|
||||||
else
|
|
||||||
mv $i $out_file
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
if $PNGCRUSH
|
|
||||||
then
|
|
||||||
echo "Running pngcrush..."
|
|
||||||
pngcrush -d ../u_skins/textures/ output/*_preview*.png 2> pngcrush_output
|
|
||||||
else mv output/*_preview*.png ../u_skins/textures/
|
|
||||||
fi
|
|
||||||
echo "Done !"
|
|
@ -1,59 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
SPRITES=$(find -regextype sed -regex '.*/player_[0-9]\{1,\}.png' | sort -V)
|
|
||||||
MODELS=$(find -regextype sed -regex '.*/character_[0-9]\{1,\}.png' | sort -V)
|
|
||||||
function ask_for_meta {
|
|
||||||
convert $2 -scale 100x200 /tmp/skins_set_meta
|
|
||||||
SNAME=$(basename $1)
|
|
||||||
SNAME=${SNAME%.*}
|
|
||||||
METAFILE=u_skins/meta/$SNAME.txt
|
|
||||||
FORCE=$3
|
|
||||||
if $FORCE || ! [ -f $METAFILE ]
|
|
||||||
then
|
|
||||||
echo $METAFILE
|
|
||||||
YADOUT=$(yad --form --image=/tmp/skins_set_meta --field $SNAME:LBL --field=Name --field=Author --field=Description --field=Comment)
|
|
||||||
if [ -z "$YADOUT" ]; then exit; fi # canceled
|
|
||||||
OIFS="$IFS"
|
|
||||||
IFS='|'
|
|
||||||
read -a VALUES <<< "$YADOUT"
|
|
||||||
IFS="$OIFS"
|
|
||||||
NAME=${VALUES[1]}
|
|
||||||
AUTHOR=${VALUES[2]}
|
|
||||||
DESCRIPTION=${VALUES[3]}
|
|
||||||
COMMENT=${VALUES[4]}
|
|
||||||
if [ -n "$NAME" ] && [ -n "$AUTHOR" ]
|
|
||||||
then
|
|
||||||
echo -n > $METAFILE # clear it
|
|
||||||
echo 'name = "'$NAME'",' >> $METAFILE
|
|
||||||
echo 'author = "'$AUTHOR'",' >> $METAFILE
|
|
||||||
# only write description and comment if they are specified
|
|
||||||
if [ -n "$DESCRIPTION" ]
|
|
||||||
then
|
|
||||||
echo 'description = "'$DESCRIPTION'",' >> $METAFILE
|
|
||||||
fi
|
|
||||||
if [ -n "$COMMENT" ]
|
|
||||||
then
|
|
||||||
echo 'comment = "'$COMMENT'",' >> $METAFILE
|
|
||||||
fi
|
|
||||||
echo "Saved !"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
if [ -z $1 ]
|
|
||||||
then
|
|
||||||
for i in $SPRITES
|
|
||||||
do
|
|
||||||
ask_for_meta $i $i false
|
|
||||||
done
|
|
||||||
for i in $MODELS
|
|
||||||
do
|
|
||||||
ask_for_meta $i ${i%.*}_preview.png false
|
|
||||||
done
|
|
||||||
else
|
|
||||||
if [ -f ${1%.*}_preview.png ]
|
|
||||||
then
|
|
||||||
ask_for_meta $1 ${1%.*}_preview.png true
|
|
||||||
else
|
|
||||||
ask_for_meta $1 $1 true
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
rm /tmp/skins_set_meta
|
|
@ -1,2 +0,0 @@
|
|||||||
unified_inventory
|
|
||||||
default
|
|
@ -1,166 +0,0 @@
|
|||||||
-- Unified Skins for Minetest - based modified Bags from unfied_inventory and skins from inventory_plus
|
|
||||||
|
|
||||||
-- Copyright (c) 2012 cornernote, Dean Montgomery
|
|
||||||
-- License: GPLv3
|
|
||||||
u_skins = {}
|
|
||||||
u_skins.modpath = minetest.get_modpath("u_skins")
|
|
||||||
u_skins.file = minetest.get_worldpath().."/u_skins.mt"
|
|
||||||
u_skins.default = "character_1"
|
|
||||||
u_skins.pages = {}
|
|
||||||
u_skins.u_skins = {}
|
|
||||||
u_skins.file_save = false
|
|
||||||
|
|
||||||
-- ( Deprecated
|
|
||||||
u_skins.type = { SPRITE=0, MODEL=1, ERROR=99 }
|
|
||||||
u_skins.get_type = function(texture)
|
|
||||||
if not u_skins.is_skin(texture) then
|
|
||||||
return u_skins.type.ERROR
|
|
||||||
end
|
|
||||||
return u_skins.type.MODEL
|
|
||||||
end
|
|
||||||
-- )
|
|
||||||
|
|
||||||
u_skins.is_skin = function(texture)
|
|
||||||
if not texture then
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
if not u_skins.meta[texture] then
|
|
||||||
return false
|
|
||||||
end
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
|
|
||||||
dofile(u_skins.modpath.."/skinlist.lua")
|
|
||||||
dofile(u_skins.modpath.."/players.lua")
|
|
||||||
|
|
||||||
u_skins.update_player_skin = function(player)
|
|
||||||
local name = player:get_player_name()
|
|
||||||
if not u_skins.is_skin(u_skins.u_skins[name]) then
|
|
||||||
u_skins.u_skins[name] = u_skins.default
|
|
||||||
end
|
|
||||||
player:set_properties({
|
|
||||||
textures = {u_skins.u_skins[name]..".png"},
|
|
||||||
})
|
|
||||||
u_skins.file_save = true
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Display Current Skin
|
|
||||||
unified_inventory.register_page("u_skins", {
|
|
||||||
get_formspec = function(player)
|
|
||||||
local name = player:get_player_name()
|
|
||||||
if not u_skins.is_skin(u_skins.u_skins[name]) then
|
|
||||||
u_skins.u_skins[name] = u_skins.default
|
|
||||||
end
|
|
||||||
|
|
||||||
local formspec = ("background[0.06,0.99;7.92,7.52;ui_misc_form.png]"
|
|
||||||
.."image[0,.75;1,2;"..u_skins.u_skins[name].."_preview.png]"
|
|
||||||
.."label[6,.5;Raw texture:]"
|
|
||||||
.."image[6,1;2,1;"..u_skins.u_skins[name]..".png]")
|
|
||||||
|
|
||||||
local meta = u_skins.meta[u_skins.u_skins[name]]
|
|
||||||
if meta then
|
|
||||||
if meta.name ~= "" then
|
|
||||||
formspec = formspec.."label[2,.5;Name: "..minetest.formspec_escape(meta.name).."]"
|
|
||||||
end
|
|
||||||
if meta.author ~= "" then
|
|
||||||
formspec = formspec.."label[2,1;Author: "..minetest.formspec_escape(meta.author).."]"
|
|
||||||
end
|
|
||||||
if meta.license ~= "" then
|
|
||||||
formspec = formspec.."label[2,1.5;License: "..minetest.formspec_escape(meta.license).."]"
|
|
||||||
end
|
|
||||||
if meta.description ~= "" then --what's that??
|
|
||||||
formspec = formspec.."label[2,2;Description: "..minetest.formspec_escape(meta.description).."]"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
local page = 0
|
|
||||||
if u_skins.pages[name] then
|
|
||||||
page = u_skins.pages[name]
|
|
||||||
end
|
|
||||||
formspec = formspec .. "button[.75,3;6.5,.5;u_skins_page$"..page..";Change]"
|
|
||||||
return {formspec=formspec}
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
unified_inventory.register_button("u_skins", {
|
|
||||||
type = "image",
|
|
||||||
image = "u_skins_button.png",
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Create all of the skin-picker pages.
|
|
||||||
|
|
||||||
u_skins.generate_pages = function(texture)
|
|
||||||
local page = 0
|
|
||||||
local pages = {}
|
|
||||||
for i, skin in ipairs(u_skins.list) do
|
|
||||||
local p_index = (i - 1) % 16
|
|
||||||
if p_index == 0 then
|
|
||||||
page = page + 1
|
|
||||||
pages[page] = {}
|
|
||||||
end
|
|
||||||
pages[page][p_index + 1] = {i, skin}
|
|
||||||
end
|
|
||||||
local total_pages = page
|
|
||||||
page = 1
|
|
||||||
for page, arr in ipairs(pages) do
|
|
||||||
local formspec = "background[0.06,0.99;7.92,7.52;ui_misc_form.png]"
|
|
||||||
local y = -0.1
|
|
||||||
for i, skin in ipairs(arr) do
|
|
||||||
local x = (i - 1) % 8
|
|
||||||
if i > 1 and x == 0 then
|
|
||||||
y = 1.8
|
|
||||||
end
|
|
||||||
formspec = (formspec.."image_button["..x..","..y..";1,2;"..
|
|
||||||
skin[2].."_preview.png;u_skins_set$"..skin[1]..";]"..
|
|
||||||
"tooltip[u_skins_set$"..skin[1]..";"..u_skins.meta[skin[2]].name.."]")
|
|
||||||
end
|
|
||||||
local page_prev = page - 2
|
|
||||||
local page_next = page
|
|
||||||
if page_prev < 0 then
|
|
||||||
page_prev = total_pages - 1
|
|
||||||
end
|
|
||||||
if page_next >= total_pages then
|
|
||||||
page_next = 0
|
|
||||||
end
|
|
||||||
formspec = (formspec
|
|
||||||
.."button[0,3.8;1,.5;u_skins_page$"..page_prev..";<<]"
|
|
||||||
.."button[.75,3.8;6.5,.5;u_skins_null;Page "..page.."/"..total_pages.."]"
|
|
||||||
.."button[7,3.8;1,.5;u_skins_page$"..page_next..";>>]")
|
|
||||||
|
|
||||||
unified_inventory.register_page("u_skins_page$"..(page - 1), {
|
|
||||||
get_formspec = function(player)
|
|
||||||
return {formspec=formspec}
|
|
||||||
end
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- click button handlers
|
|
||||||
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
||||||
if fields.u_skins then
|
|
||||||
unified_inventory.set_inventory_formspec(player, "craft")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
for field, _ in pairs(fields) do
|
|
||||||
local current = string.split(field, "$", 2)
|
|
||||||
if current[1] == "u_skins_set" then
|
|
||||||
u_skins.u_skins[player:get_player_name()] = u_skins.list[tonumber(current[2])]
|
|
||||||
u_skins.update_player_skin(player)
|
|
||||||
unified_inventory.set_inventory_formspec(player, "u_skins")
|
|
||||||
elseif current[1] == "u_skins_page" then
|
|
||||||
u_skins.pages[player:get_player_name()] = current[2]
|
|
||||||
unified_inventory.set_inventory_formspec(player, "u_skins_page$"..current[2])
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
-- Change skin on join - reset if invalid
|
|
||||||
minetest.register_on_joinplayer(function(player)
|
|
||||||
local player_name = player:get_player_name()
|
|
||||||
if not u_skins.is_skin(u_skins.u_skins[player_name]) then
|
|
||||||
u_skins.u_skins[player_name] = u_skins.default
|
|
||||||
end
|
|
||||||
u_skins.update_player_skin(player)
|
|
||||||
end)
|
|
||||||
|
|
||||||
u_skins.generate_pages()
|
|
||||||
u_skins.load_players()
|
|
@ -1,15 +0,0 @@
|
|||||||
u_skins.meta = {}
|
|
||||||
for _, i in ipairs(u_skins.list) do
|
|
||||||
u_skins.meta[i] = {}
|
|
||||||
local f = io.open(u_skins.modpath.."/meta/"..i..".txt")
|
|
||||||
local data = nil
|
|
||||||
if f then
|
|
||||||
data = minetest.deserialize("return {"..f:read('*all').."}")
|
|
||||||
f:close()
|
|
||||||
end
|
|
||||||
data = data or {}
|
|
||||||
u_skins.meta[i].name = data.name or ""
|
|
||||||
u_skins.meta[i].author = data.author or ""
|
|
||||||
u_skins.meta[i].description = data.description or nil
|
|
||||||
u_skins.meta[i].comment = data.comment or nil
|
|
||||||
end
|
|
@ -1,3 +0,0 @@
|
|||||||
Sam 0
|
|
||||||
Jordach
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Tuxedo Sam
|
|
||||||
Jordach
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Franklin
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Trevor
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Bart Simpson
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Creeper
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
War Machine
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Gangnam Style
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Sonic The Hedgehog
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Charizard
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Scarlet Spider-man
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Ferdi Napoli
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Semmett9
|
|
||||||
Infinatum
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Finn The Adventured
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Jake
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Ferdi Napoli Reserve
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Joker
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Bleau Steve
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Deadpool Bleau
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Seth Rollins
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Daffy Duck
|
|
||||||
LuxAtheris
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
DareDevil
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Clone
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
John
|
|
||||||
Evergreen
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Banana Guy
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Rubber
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Gothic Sam
|
|
||||||
GingerHunter797
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Tails
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Aguia Explorer
|
|
||||||
Davizinho
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Toad
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
oOChainLynxOo
|
|
||||||
oOChainLynxOo
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
amazing spiderman
|
|
||||||
mateus
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
black spiderman
|
|
||||||
mateus
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Sam Mese Tee
|
|
||||||
oOChainLynxOo
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
rotor112
|
|
||||||
rotor112
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Jesus
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Wires
|
|
||||||
Geopbyte
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Vector
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Fire Mario
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
skin minecraft
|
|
||||||
lestouem
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
santa
|
|
||||||
jordan4ibanez
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
PenguinDad
|
|
||||||
PenguinDad
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
New Ferdi Napoli Skin
|
|
||||||
Ferdi Napoli
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Jan
|
|
||||||
Jan
|
|
||||||
CC BY 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
PilzAdam
|
|
||||||
PilzAdam
|
|
||||||
CC BY 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Older Man Sam
|
|
||||||
philipbenr
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Renan123
|
|
||||||
sou o melhor
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
PenguinDad with Cape
|
|
||||||
PenguinDad
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Adarqet
|
|
||||||
Adarqet
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Adarqet(Cape)
|
|
||||||
Adarqet
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
wither
|
|
||||||
mario alberto
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Cywalk Sam
|
|
||||||
w_laenger
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
rantathe
|
|
||||||
ranta
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
ranta mk 2
|
|
||||||
ranta
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
gta
|
|
||||||
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
|
|
||||||
CC BY 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
DJ Gangstar
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
G-Robo v5000
|
|
||||||
philipbenr
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Blue Tron Man
|
|
||||||
Novacain
|
|
||||||
CC BY 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
killer man
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
agent slender
|
|
||||||
krauserlee
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
DJ Gangstar on the cape
|
|
||||||
hansuke123
|
|
||||||
CC BY-NC-SA 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Steve on the a creeper head
|
|
||||||
hansuke123
|
|
||||||
CC BY 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Calinou
|
|
||||||
Calinou
|
|
||||||
CC BY-SA 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
EnderMan
|
|
||||||
Eu
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Finnzzin
|
|
||||||
João Neto
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Golden Knight
|
|
||||||
Nero3605
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
wheat farmer
|
|
||||||
addi
|
|
||||||
CC BY 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
jojoa1997
|
|
||||||
jojoa1997
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Jovens
|
|
||||||
Ailton Junior
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
one of my favourite skins
|
|
||||||
w_laenger
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Mammu
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Enderman
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
DanTDM
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Gangstar Herobrine
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Zombie Boss
|
|
||||||
hansuke123
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Esteban
|
|
||||||
Esteban
|
|
||||||
CC BY-NC-SA 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Bajancanadian
|
|
||||||
bajanhgk
|
|
||||||
CC BY 4.0
|
|
@ -1,3 +0,0 @@
|
|||||||
boy
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Zenohelds default player
|
|
||||||
sdzen
|
|
||||||
CC BY-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Dead pool
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
cool guy
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Cryotic
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Altier
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Sasuke
|
|
||||||
Bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Iron patriot
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Iron spider
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Spider man
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
War machine
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Dante
|
|
||||||
bajanhgk
|
|
||||||
CC BY-NC-SA 3.0
|
|
@ -1,3 +0,0 @@
|
|||||||
Sdzen
|
|
||||||
sdzen
|
|
||||||
CC BY-SA 3.0
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user