diff --git a/etc/change_hardcoded_world_name_first/game-install-ENLIVEN b/etc/change_hardcoded_world_name_first/game-install-ENLIVEN index 08ecaa2..760470b 100755 --- a/etc/change_hardcoded_world_name_first/game-install-ENLIVEN +++ b/etc/change_hardcoded_world_name_first/game-install-ENLIVEN @@ -80,11 +80,12 @@ MT_MYWORLD_NAME=FCAGameAWorld MT_MYWORLD_DIR=$HOME/.minetest/worlds/$MT_MYWORLD_NAME err_txt=$HOME/err-enliven.txt # see also https://www.shellscript.sh/functions.html -add_regular_mod() + +add_zipped_mod() { cd $HOME/Downloads - MTMOD_UNZ_NAME=$1 - MTMOD_DEST_NAME=$2 + MTMOD_DEST_NAME=$1 + MTMOD_UNZ_NAME=$2 URL=$3 MTMOD_SRC_ZIP=$MTMOD_DEST_NAME.zip MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME @@ -110,6 +111,51 @@ add_regular_mod() echo " added as $MTMOD_DEST_PATH" fi } + +add_git_clone_mod() +{ + cd $HOME/Downloads + MTMOD_DEST_NAME=$1 + MTMOD_UNZ_NAME=$2 + URL=$3 + MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME + if [ ! -z "`ls | grep $MTMOD_UNZ_NAME`" ]; then # works with wildcard in variable + rm -Rf $MTMOD_UNZ_NAME + fi + if [ -d "$MTMOD_DEST_PATH" ]; then + sudo rm -Rf "$MTMOD_DEST_PATH" + fi + git clone $URL + sudo mv $MTMOD_UNZ_NAME "$MTMOD_DEST_PATH" + sudo rm -Rf "$MTMOD_DEST_PATH/etc" + if [ ! -d "$MTMOD_DEST_PATH" ]; then + echo " ERROR: failed to unzip $MTMOD_DEST_PATH, so cannot continue." > $err_txt + cat $err_txt + sleep 3 + exit 1 + else + echo " added as $MTMOD_DEST_PATH" + fi +} + +remove_mod() +{ + cd $HOME/Downloads + MTMOD_DEST_NAME=$1 + MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME + if [ -d "$MTMOD_DEST_PATH" ]; then + sudo rm -Rf "$MTMOD_DEST_PATH" + fi + if [ -d "$MTMOD_DEST_PATH" ]; then + echo " ERROR in remove_mod: failed to remove $MTMOD_DEST_PATH, so cannot continue." > $err_txt + cat $err_txt + sleep 3 + exit 1 + else + echo " removed $MTMOD_DEST_PATH" + fi +} + #endregion paste this part into terminal to get some great environment variables @@ -1481,7 +1527,7 @@ if [ -f $MTMOD_SRC_ZIP ]; then rm $MTMOD_SRC_ZIP fi rm -Rvf $MTMOD_UNZ_NAME -wget https://github.com/Uberi/MineTest-WorldEdit/zipball/master +#wget https://github.com/Uberi/MineTest-WorldEdit/zipball/master mv $MTMOD_DL_ZIP "$MTMOD_SRC_ZIP" unzip "$MTMOD_SRC_ZIP" if [ -d "$MTMOD_DEST_PATH" ]; then @@ -1495,17 +1541,21 @@ if [ ! -d "$MTMOD_DEST_PATH" ]; then exit 1 fi +# add_zipped_mod worldedit Uberi-Minetest-WorldEdit-* https://github.com/Uberi/MineTest-WorldEdit/zipball/master +# add_zipped_mod worldedit Minetest-WorldEdit-* https://github.com/Uberi/MineTest-WorldEdit/zipball/master +add_git_clone_mod worldedit Uberi-Minetest-WorldEdit https://github.com/Uberi/Minetest-WorldEdit.git #MarkBu's ambience/ambiance ambient sounds (burli on https://forum.minetest.net/viewtopic.php?f=9&t=14814 ) -#add_regular_mod ambianceplus-master ambianceplus https://github.com/MarkuBu/ambianceplus/archive/master.zip +#add_zipped_mod ambianceplus ambianceplus-master https://github.com/MarkuBu/ambianceplus/archive/master.zip # tenplus1's ambience/ambiance ambient sounds (fork linked at original's thread at https://forum.minetest.net/viewtopic.php?f=11&t=2807&start=275 ) -add_regular_mod ambience-master ambience https://github.com/tenplus1/ambience/archive/master.zip +add_zipped_mod ambience ambience-master https://github.com/tenplus1/ambience/archive/master.zip # expertmm fork of LeMagnesium's minetest-mod-metatools -add_regular_mod minetest-mod-metatools-master metatools https://github.com/expertmm/minetest-mod-metatools/archive/master.zip +add_zipped_mod metatools minetest-mod-metatools-master https://github.com/expertmm/minetest-mod-metatools/archive/master.zip #[mod-pack] sky critters (for mobs_redo) [mobs_sky] #requires mobs redo -add_regular_mod mobs_sky-master mobs_sky https://github.com/blert2112/mobs_sky/archive/master.zip +add_zipped_mod mobs_sky mobs_sky-master https://github.com/blert2112/mobs_sky/archive/master.zip + # forum_url: https://forum.minetest.net/viewtopic.php?f=11&t=13857 # description: # * REPLACES pyramids. @@ -1516,36 +1566,51 @@ add_regular_mod mobs_sky-master mobs_sky https://github.com/blert2112/mobs_sky/a # * spawners_env: appears in Dungeons and Temples (the pink stone ones); spawns hostile mobs; has small chance of spawning a spawner # * spawners_mobs: spawns non-hostile mobs # * spawners_ores: spawns ores -add_regular_mod minetest_gamers-spawners-* spawners https://bitbucket.org/minetest_gamers/spawners/get/master.zip +add_zipped_mod spawners minetest_gamers-spawners-* https://bitbucket.org/minetest_gamers/spawners/get/master.zip +MTMOD_DEST_NAME=spawners/spawners_ores +MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME +if [ -d "$MTMOD_DEST_PATH" ]; then + echo "removing $MTMOD_DEST_NAME..." + sudo rm -Rf "$MTMOD_DEST_PATH" +else + echo "ERROR: could not find $MTMOD_DEST_PATH for removal, so cancelling ENLIVEN install" + sleep 3 + exit 1 +fi +if [ -d "$MTMOD_DEST_PATH" ]; then + echo "ERROR: could not remove $MTMOD_DEST_PATH for removal, so cancelling ENLIVEN install" + sleep 3 + exit 1 +fi echo "SPAWN_PYRAMIDS = true" > settings.txt echo "SPAWNERS_GENERATE = true" >> settings.txt echo "CHESTS_GENERATE = true" >> settings.txt sudo mv settings.txt "$MTMOD_DEST_PATH/" echo "NOTE: in spawners, only SPAWNERS_GENERATE or CHESTS_GENERATE, not both (SPAWNERS_GENERATE overrides) spawn in world for now. See thread for updated info: https://forum.minetest.net/viewtopic.php?f=11&t=13857&start=25" echo "see also expertmm's game-install-enliven-testing-SPAWNERS_BOTH_DEBUG.txt" -add_regular_mod playeranim-master playeranim https://github.com/minetest-mods/playeranim/archive/master.zip + # forum_url: https://forum.minetest.net/viewtopic.php?t=12189 # description: Adds animations to the players' head -add_regular_mod playeranim-master playeranim https://github.com/minetest-mods/playeranim/archive/master.zip -add_regular_mod homedecor_modpack-master homedecor_modpack https://github.com/minetest-mods/homedecor_modpack/archive/master.zip +add_zipped_mod playeranim playeranim-master https://github.com/minetest-mods/playeranim/archive/master.zip +add_zipped_mod homedecor_modpack homedecor_modpack-master https://github.com/minetest-mods/homedecor_modpack/archive/master.zip # expertmm fork of a rather non-maintained mod--forum link is at https://forum.minetest.net/viewtopic.php?id=3663 # (original mod was at https://github.com/Doc22/birthstones-mod/archive/master.zip) -add_regular_mod minetest-birthstones-master birthstones https://github.com/expertmm/minetest-birthstones/archive/master.zip -add_regular_mod bakedclay-master bakedclay https://github.com/tenplus1/bakedclay/archive/master.zip +add_zipped_mod birthstones minetest-birthstones-master https://github.com/expertmm/minetest-birthstones/archive/master.zip +add_zipped_mod bakedclay bakedclay-master https://github.com/tenplus1/bakedclay/archive/master.zip # https://forum.minetest.net/viewtopic.php?f=11&t=12440&p=310915#p310915 # wget https://forum.minetest.net/download/file.php?id=6140 # forum link file.php?id=6140 changed, so use salahzar's GitHub upload instead: -add_regular_mod minetest-invhack-master invhack https://github.com/salahzar/minetest-invhack/archive/master.zip -add_regular_mod unifieddyes-master unifieddyes https://github.com/minetest-mods/unifieddyes/archive/master.zip +add_zipped_mod invhack minetest-invhack-master https://github.com/salahzar/minetest-invhack/archive/master.zip +add_zipped_mod unifieddyes unifieddyes-master https://github.com/minetest-mods/unifieddyes/archive/master.zip #Sokomine's original version has no security ( https://forum.minetest.net/viewtopic.php?id=4877 ) # https://github.com/Sokomine/travelnet/archive/master.zip -add_regular_mod travelnet-master travelnet https://github.com/expertmm/travelnet/archive/master.zip -add_regular_mod anvil-master anvil https://github.com/minetest-mods/anvil/archive/master.zip -add_regular_mod sling-master sling https://github.com/minetest-mods/sling/archive/master.zip +add_zipped_mod travelnet travelnet-master https://github.com/expertmm/travelnet/archive/master.zip +add_zipped_mod anvil anvil-master https://github.com/minetest-mods/anvil/archive/master.zip +add_zipped_mod sling sling-master https://github.com/minetest-mods/sling/archive/master.zip #REPLACES PilzAdam's, modified by kaeza, maintained by VenessaE; FORMERLY in homedecor_modpack #forum post: https://forum.minetest.net/viewtopic.php?t=13762 # kaeza's signs_lib (forked from PilzAdam's and TheXYZ's code) was moved here from: https://github.com/kaeza/minetest-signs_lib-extrafonts/archive/master.zip -add_regular_mod signs_lib-master signs_lib https://github.com/minetest-mods/signs_lib/archive/master.zip +add_zipped_mod signs_lib signs_lib-master https://github.com/minetest-mods/signs_lib/archive/master.zip # EXTRA FONTS PACK for signs_lib DOESN'T SEEM TO WORK IN MULTIPLAYER, and is unwieldy to use: #cd $HOME/Downloads #MTMOD_DL_ZIP=master.zip @@ -1577,63 +1642,6 @@ add_regular_mod signs_lib-master signs_lib https://github.com/minetest-mods/sign # exit 1 #fi - -# NOTE: a skin database is at http://minetest.fensta.bplaced.net/ -# bell07's 2016 (FORK of Krock's fork of dmonty's) u_skins (u_skins is a skin GUI that works with unified_inventory, whereas other skin GUIs often use inventory++) -# Krock's is outdated and has remaining bugs such as in updater: wget https://github.com/SmallJoker/minetest-u_skinsdb/archive/master.zip -# bell07's no longer exists -# wget https://github.com/bell07/minetest-u_skinsdb/archive/master.zip -add_regular_mod minetest-u_skinsdb-master u_skinsdb https://github.com/dmonty2/minetest-u_skinsdb/archive/master.zip -# Update skins database (WARNING: skin numbering affects chosen player skin): -# (jq is a json processor, required for the updater bash script:) -# sudo apt-get -y install jq -# cd "$MTMOD_DEST_PATH" -# cd u_skins #bell07's version is a mod, not a modpack -# cd updater -# NOTE: -# Only download entire skins database if you -# REALLY, REALLY MEAN IT: -# ./update_skins_db.sh -# (note, bell07 has the fixed bash script, but the python3 script is still bugged as of 2016-01-29, and includes a .NET assembly that seems to only work for Windows (has meta directory not found error on mono for Linux) -# REMOVE EXISTING SKINS AND ONLY ADD expertmm skins: -cd "$HOME/Downloads" -MTMOD_SRC_ZIP=u_skins.zip -MTMOD_UNZ_NAME=minetest-u_skinsdb-master -MTMOD_DEST_NAME=u_skins -MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$MTMOD_DEST_NAME -if [ -f $MTMOD_SRC_ZIP ]; then - rm -f $MTMOD_SRC_ZIP -fi -wget -O $MTMOD_SRC_ZIP https://github.com/expertmm/minetest-u_skinsdb/archive/master.zip -rm -Rvf $MTMOD_UNZ_NAME -unzip "$MTMOD_SRC_ZIP" -SUB_NAME="u_skins/textures" # include u_skins since u_skins/u_skins IS THE MOD in the modpack -SUB_PATH="$MTMOD_DEST_PATH/$SUB_NAME" -if [ -d "$SUB_PATH" ]; then - echo "removing original $SUB_PATH..." - rm -Rf "$SUB_PATH" -fi -sudo mv -f $MTMOD_UNZ_NAME/$SUB_NAME "$SUB_PATH" -if [ ! -d "$SUB_PATH" ]; then - echo "ERROR: failed to install expertmm's skins to $SUB_PATH, so cannot continue." > $err_txt - cat $err_txt - sleep 3 - exit 1 -fi -SUB_NAME="u_skins/meta" # include u_skins since u_skins/u_skins IS THE MOD in the modpack -SUB_PATH="$MTMOD_DEST_PATH/$SUB_NAME" -if [ -d "$SUB_PATH" ]; then - echo "removing original $SUB_PATH..." - rm -Rf "$SUB_PATH" -fi -sudo mv -f $MTMOD_UNZ_NAME/$SUB_NAME "$SUB_PATH" -if [ ! -d "$SUB_PATH" ]; then - echo "ERROR: failed to install expertmm's skins to $SUB_PATH, so cannot continue." > $err_txt - cat $err_txt - sleep 3 - exit 1 -fi - cd $HOME/Downloads MTMOD_DL_ZIP=master.zip MTMOD_SRC_ZIP=farming.zip @@ -1725,6 +1733,37 @@ if [ ! -d "$MTMOD_DEST_PATH" ]; then exit 1 fi + +# NOTE: a skin database is at http://minetest.fensta.bplaced.net/ +# bell07's 2016 (FORK of Krock's fork of dmonty's) u_skins (u_skins is a skin GUI that works with unified_inventory, whereas other skin GUIs often use inventory++) +# Krock's is outdated and has remaining bugs such as in updater: wget https://github.com/SmallJoker/minetest-u_skinsdb/archive/master.zip +# bell07's no longer exists +# wget https://github.com/bell07/minetest-u_skinsdb/archive/master.zip +# add_zipped_mod u_skins minetest-u_skinsdb-master https://github.com/dmonty2/minetest-u_skinsdb/archive/master.zip +#add_zipped_mod u_skins minetest-u_skinsdb-master https://github.com/dmonty2/minetest-u_skinsdb/archive/master.zip +# add_zipped_mod skinsdb minetest-u_skinsdb-master https://github.com/dmonty2/minetest-u_skinsdb/archive/master.zip +# forked and is now a part of minetest-mods thanks to bell07 +MATCHING_MODS_BEFORE="`ls $MT_MYGAME_MODS_PATH | grep skin`" +remove_mod u_skinsdb +remove_mod u_skins +PATCH_SKINS_MOD_NAME="skinsdb" # used further down too! +add_zipped_mod $PATCH_SKINS_MOD_NAME skinsdb-master https://github.com/minetest-mods/skinsdb/archive/master.zip +if [ ! -z "$MATCHING_MODS_BEFORE" ]; then + echo "Removed $MATCHING_MODS_BEFORE then installed $PATCH_SKINS_MOD_NAME" +fi +# Update skins database (WARNING: skin numbering affects chosen player skin): +# (jq is a json processor, required for the updater bash script:) +# sudo apt-get -y install jq +# cd "$MTMOD_DEST_PATH" +# cd u_skins #bell07's version is a mod, not a modpack +# cd updater +# NOTE: +# Only download entire skins database if you +# REALLY, REALLY MEAN IT: +# ./update_skins_db.sh +# (note, bell07 has the fixed bash script, but the python3 script is still bugged as of 2016-01-29, and includes a .NET assembly that seems to only work for Windows (has meta directory not found error on mono for Linux) +# PATCH FURTHER DOWN WILL REMOVE EXISTING SKINS AND ONLY ADD EnlivenMinetest skins from patches folder + echo echo echo @@ -1737,11 +1776,51 @@ if [ -d "$PATCHES_PATH" ]; then ls $PATCHES_PATH/mods-multiplayer/ sudo cp -R $PATCHES_PATH/mods-multiplayer/* "$MT_MYGAME_MODS_PATH/" echo "adding non-manual patches to subgame (vs minetest_game and downloaded mods):" + echo "patching $MT_MYGAME_DIR (files only, so 'omitting directory' warnings are ok)..." sudo cp -f $PATCHES_PATH/subgame/* "$MT_MYGAME_DIR/" + echo "patching $MT_MYGAME_DIR (files only, so 'omitting directory' warnings are ok)..." sudo cp -f $PATCHES_PATH/subgame/menu/* "$MT_MYGAME_DIR/menu/" + echo "patching $MT_MYGAME_DIR (files only, so 'omitting directory' warnings are ok)..." sudo cp -f $PATCHES_PATH/subgame/mods/mobs/textures/* "$MT_MYGAME_DIR/mods/mobs/textures/" + echo "patching $MT_MYGAME_DIR (files only, so 'omitting directory' warnings are ok)..." sudo cp -f $PATCHES_PATH/subgame/mods/mobs_monster/textures/* "$MT_MYGAME_DIR/mods/mobs_monster/textures/" - echo "mods affected: mobs mobs_monsters" + +# REMOVE EXISTING SKINS AND ONLY ADD expertmm skins: +MTMOD_DEST_PATH=$MT_MYGAME_MODS_PATH/$PATCH_SKINS_MOD_NAME +SUB_NAME="textures" # include u_skins since u_skins/u_skins IS THE MOD in the modpack +SUB_PATH="$MTMOD_DEST_PATH/$SUB_NAME" +if [ -d "$SUB_PATH" ]; then + echo "removing original $SUB_PATH/character_*..." + rm -Rf $SUB_PATH/character_* # cannot have quotes if using wildcards +fi +sudo cp -f $PATCHES_PATH/mods-multiplayer/$PATCH_SKINS_MOD_NAME/$SUB_NAME "$SUB_PATH" +if [ ! -d "$SUB_PATH" ]; then + echo "ERROR: failed to install expertmm's skins to $SUB_PATH, so cannot continue." > $err_txt + cat $err_txt + sleep 3 + exit 1 +else + echo "installed expertmm's skins to $SUB_PATH" +fi +SUB_NAME="meta" # include u_skins since u_skins/u_skins IS THE MOD in the modpack +SUB_PATH="$MTMOD_DEST_PATH/$SUB_NAME" +if [ -d "$SUB_PATH" ]; then + echo "removing original $SUB_PATH/character_*..." + rm -Rf $SUB_PATH/character_* # cannot have quotes if using wildcards +fi +sudo cp -f $PATCHES_PATH/mods-multiplayer/$PATCH_SKINS_MOD_NAME/$SUB_NAME "$SUB_PATH" +if [ ! -d "$SUB_PATH" ]; then + echo "ERROR: failed to install expertmm's skins to $SUB_PATH, so cannot continue." > $err_txt + cat $err_txt + sleep 3 + exit 1 +else + echo "installed metadata for expertmm's skins to $SUB_PATH" +fi + + + + echo "mods affected: mobs mobs_monsters $PATCH_SKINS_MOD_NAME" PATCHED_FLAG="" BASIS_PATH=$PATCHES_PATH/subgame-basis/mods/bones/init.lua MODIFIED_PATH=$PATCHES_PATH/subgame/mods/bones/init.lua @@ -1751,6 +1830,7 @@ if [ -d "$PATCHES_PATH" ]; then TRY_DIFF="`diff $BASIS_PATH $TARGET_PATH`" if [ -z "$TRY_DIFF" ]; then sudo cp -f $MODIFIED_PATH "$MT_MYGAME_DIR/mods/bones/" + echo "done attempting to patch $MTMOD_DEST_PATH/" else echo "FAILED to patch $MTMOD_DEST_NAME since $TARGET_PATH differs from known version (this is not a problem if you ran the patcher more than once)." fi @@ -1762,6 +1842,7 @@ if [ -d "$PATCHES_PATH" ]; then TRY_DIFF="`diff $BASIS_PATH $TARGET_PATH`" if [ -z "$TRY_DIFF" ]; then sudo cp -f $MODIFIED_PATH "$MTMOD_DEST_PATH/" + echo "done attempting to patch $MTMOD_DEST_PATH/" else echo "FAILED to patch $MTMOD_DEST_NAME since $TARGET_PATH differs from known version (this is not a problem if you ran the patcher more than once)." fi @@ -1772,6 +1853,7 @@ if [ -d "$PATCHES_PATH" ]; then TRY_DIFF="`diff $BASIS_PATH $TARGET_PATH`" if [ -z "$TRY_DIFF" ]; then sudo cp -f $MODIFIED_PATH "$MTMOD_DEST_PATH/" + echo "done attempting to patch $MTMOD_DEST_PATH/" else echo "FAILED to patch $MTMOD_DEST_NAME since $TARGET_PATH differs from known version (this is not a problem if you ran the patcher more than once)." fi @@ -1781,15 +1863,15 @@ if [ -d "$PATCHES_PATH" ]; then fi # NOTE: quotes don't work with wildcard cp -f $PATCHES_PATH/subgame/mods/homedecor_modpack/homedecor/textures/* "$MTMOD_DEST_PATH/textures/" + echo "# not recommended:" + echo "sudo cp -Rf $PATCHES_PATH/mods-stopgap/* $MT_MYGAME_MODS_PATH/" + echo "sudo rm -Rf $MT_MYGAME_MODS_PATH/1.nonworking" else echo "did not find $PATCHES_PATH, so skipped automatic patching which is partially implemented" fi echo echo "# remove not available on 0.4.16 stable (is only avail on 0.4.16-dev or higher)" echo "sudo rm -Rf /usr/share/games/minetest/games/ENLIVEN/mods/worldedit/worldedit_brush" -echo "# not recommended:" -echo "sudo cp -R $PATCHES_PATH/mods-stopgap/* $MT_MYGAME_MODS_PATH/" -echo "sudo rm -Rf $MT_MYGAME_MODS_PATH/1.nonworking" echo echo echo diff --git a/mtsenliven.py b/mtsenliven.py index e0ef1d5..61e536b 100644 --- a/mtsenliven.py +++ b/mtsenliven.py @@ -5,7 +5,7 @@ # shuts down properly (makes sure all processes finish) according to # dr4Ke on # https://forum.minetest.net/viewtopic.php?f=11&t=13138&start=50 - +key_exit_msg = "SIGINT should shut down server safely...\n" import os from mtanalyze.minetestinfo import * try: @@ -86,6 +86,7 @@ def print_unique_only(output, err_flag=False): found_flag = None f_i = None always_show_enable = False + msg_msg = "previous message" for flag in unique_flags: if flag in output: always_show_enable = True @@ -102,6 +103,7 @@ def print_unique_only(output, err_flag=False): for wrap in non_unique_wraps: if wrap["opener"] in sub_msg and wrap["closer"] in sub_msg: sub_msg = wrap["opener"] + "..." + wrap["closer"] + msg_msg = "similar messages" break if sub_msg in msg_lists[found_flag]: show_enable = False @@ -110,7 +112,8 @@ def print_unique_only(output, err_flag=False): if show_enable: print(output_strip) if found_flag is not None: - print(" [ mtsenliven.py ] previous msg will be suppressed") + print(" [ mtsenliven.py ] " + msg_msg + + " will be suppressed") def process_msg(bstring): output = bstring @@ -139,7 +142,7 @@ def reader(pipe, q): finally: q.put(None) except KeyboardInterrupt: - print("[ mtsenliven.py ] SIGINT should shut down server safely") + print("[ mtsenliven.py ] " + key_exit_msg) pass q = Queue() @@ -159,7 +162,7 @@ try: pass process_msg("%s: %s" % (s, l)) except KeyboardInterrupt: - print("[ mtsenliven.py ] SIGINT should shut down server safely") + print("[ mtsenliven.py ] " + key_exit_msg) pass exit(0) @@ -180,6 +183,6 @@ while True: # process_msg(err_bytes) rc = process.poll() except KeyboardInterrupt: - print("[ mtsenliven.py ] SIGINT should shut down server safely") + print("[ mtsenliven.py ] " + key_exit_msg) break # process.kill() diff --git a/patches/mods-multiplayer/skinsdb/CC BY-SA 3.0 legalcode (see CREDITS for where applies).txt b/patches/mods-multiplayer/skinsdb/CC BY-SA 3.0 legalcode (see CREDITS for where applies).txt new file mode 100644 index 0000000..604209a --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/CC BY-SA 3.0 legalcode (see CREDITS for where applies).txt @@ -0,0 +1,359 @@ +Creative Commons Legal Code + +Attribution-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE +COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY +COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS +AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE +TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY +BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS +CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND +CONDITIONS. + +1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(f) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined below) for the purposes of this + License. + c. "Creative Commons Compatible License" means a license that is listed + at https://creativecommons.org/compatiblelicenses that has been + approved by Creative Commons as being essentially equivalent to this + License, including, at a minimum, because that license: (i) contains + terms that have the same purpose, meaning and effect as the License + Elements of this License; and, (ii) explicitly permits the relicensing + of adaptations of works made available under that license under this + License or a Creative Commons jurisdiction license with the same + License Elements as this License. + d. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + e. "License Elements" means the following high-level license attributes + as selected by Licensor and indicated in the title of this License: + Attribution, ShareAlike. + f. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + g. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + h. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + i. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + j. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + k. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, +limit, or restrict any uses free from copyright or rights arising from +limitations or exceptions that are provided for in connection with the +copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor waives the + exclusive right to collect such royalties for any exercise by You + of the rights granted under this License; and, + iii. Voluntary License Schemes. The Licensor waives the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License. + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights in +other media and formats. Subject to Section 8(f), all rights not expressly +granted by Licensor are hereby reserved. + +4. Restrictions. The license granted in Section 3 above is expressly made +subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(c), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(c), as requested. + b. You may Distribute or Publicly Perform an Adaptation only under the + terms of: (i) this License; (ii) a later version of this License with + the same License Elements as this License; (iii) a Creative Commons + jurisdiction license (either this or a later license version) that + contains the same License Elements as this License (e.g., + Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible + License. If you license the Adaptation under one of the licenses + mentioned in (iv), you must comply with the terms of that license. If + you license the Adaptation under the terms of any of the licenses + mentioned in (i), (ii) or (iii) (the "Applicable License"), you must + comply with the terms of the Applicable License generally and the + following provisions: (I) You must include a copy of, or the URI for, + the Applicable License with every copy of each Adaptation You + Distribute or Publicly Perform; (II) You may not offer or impose any + terms on the Adaptation that restrict the terms of the Applicable + License or the ability of the recipient of the Adaptation to exercise + the rights granted to that recipient under the terms of the Applicable + License; (III) You must keep intact all notices that refer to the + Applicable License and to the disclaimer of warranties with every copy + of the Work as included in the Adaptation You Distribute or Publicly + Perform; (IV) when You Distribute or Publicly Perform the Adaptation, + You may not impose any effective technological measures on the + Adaptation that restrict the ability of a recipient of the Adaptation + from You to exercise the rights granted to that recipient under the + terms of the Applicable License. This Section 4(b) applies to the + Adaptation as incorporated in a Collection, but this does not require + the Collection apart from the Adaptation itself to be made subject to + the terms of the Applicable License. + c. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and (iv) , consistent with Ssection 3(b), in the case of an + Adaptation, a credit identifying the use of the Work in the Adaptation + (e.g., "French translation of the Work by Original Author," or + "Screenplay based on original Work by Original Author"). The credit + required by this Section 4(c) may be implemented in any reasonable + manner; provided, however, that in the case of a Adaptation or + Collection, at a minimum such credit will appear, if a credit for all + contributing authors of the Adaptation or Collection appears, then as + part of these credits and in a manner at least as prominent as the + credits for the other contributing authors. For the avoidance of + doubt, You may only use the credit required by this Section for the + purpose of attribution in the manner set out above and, by exercising + Your rights under this License, You may not implicitly or explicitly + assert or imply any connection with, sponsorship or endorsement by the + Original Author, Licensor and/or Attribution Parties, as appropriate, + of You or Your use of the Work, without the separate, express prior + written permission of the Original Author, Licensor and/or Attribution + Parties. + d. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR +OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY +KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, +INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, +FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF +LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, +WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION +OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of the License. + + Creative Commons may be contacted at https://creativecommons.org/. diff --git a/patches/mods-multiplayer/skinsdb/CREDITS.txt b/patches/mods-multiplayer/skinsdb/CREDITS.txt new file mode 100644 index 0000000..f91e4a2 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/CREDITS.txt @@ -0,0 +1,3 @@ +1-44: CC BY-SA 3.0 (unless otherwise specified at following url) individual authors listed at http://minetest.fensta.bplaced.net/ +45-49: CC0 expertmm +50: CC BY-SA 3.0 (?) yelby2 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_1.txt b/patches/mods-multiplayer/skinsdb/meta/character_1.txt new file mode 100644 index 0000000..7211029 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_1.txt @@ -0,0 +1,3 @@ +Sam 0 +Jordach +CC BY-SA 3.0 \ No newline at end of file diff --git a/patches/mods-multiplayer/skinsdb/meta/character_10.txt b/patches/mods-multiplayer/skinsdb/meta/character_10.txt new file mode 100644 index 0000000..bb0748f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_10.txt @@ -0,0 +1,3 @@ +Ferdi_Napoli_Reserve +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_11.txt b/patches/mods-multiplayer/skinsdb/meta/character_11.txt new file mode 100644 index 0000000..04e2b03 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_11.txt @@ -0,0 +1,3 @@ +Finnzzin +Jo-atilde +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_12.txt b/patches/mods-multiplayer/skinsdb/meta/character_12.txt new file mode 100644 index 0000000..644c9f3 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_12.txt @@ -0,0 +1,3 @@ +Finn_The_Adventured +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_13.txt b/patches/mods-multiplayer/skinsdb/meta/character_13.txt new file mode 100644 index 0000000..1ceb07a --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_13.txt @@ -0,0 +1,3 @@ +Fire_Mario +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_14.txt b/patches/mods-multiplayer/skinsdb/meta/character_14.txt new file mode 100644 index 0000000..0134bf9 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_14.txt @@ -0,0 +1,3 @@ +Franklin +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_15.txt b/patches/mods-multiplayer/skinsdb/meta/character_15.txt new file mode 100644 index 0000000..66221af --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_15.txt @@ -0,0 +1,3 @@ +Gothic_Sam +GingerHunter797 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_16.txt b/patches/mods-multiplayer/skinsdb/meta/character_16.txt new file mode 100644 index 0000000..feda3ce --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_16.txt @@ -0,0 +1,3 @@ +Hobo8Homeless_person +Minetestian_edited_BesideTheVoid +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_17.txt b/patches/mods-multiplayer/skinsdb/meta/character_17.txt new file mode 100644 index 0000000..9f9eabe --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_17.txt @@ -0,0 +1,3 @@ +horrible_spring_sdzen +sdzen +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_18.txt b/patches/mods-multiplayer/skinsdb/meta/character_18.txt new file mode 100644 index 0000000..62ff7e2 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_18.txt @@ -0,0 +1,3 @@ +Infantry_man +philipbenr +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_19.txt b/patches/mods-multiplayer/skinsdb/meta/character_19.txt new file mode 100644 index 0000000..a7e4d22 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_19.txt @@ -0,0 +1,3 @@ +Jordach +Jordach +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_2.txt b/patches/mods-multiplayer/skinsdb/meta/character_2.txt new file mode 100644 index 0000000..0187cab --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_2.txt @@ -0,0 +1,3 @@ +Sam I +Jordach +CC BY-SA 3.0 \ No newline at end of file diff --git a/patches/mods-multiplayer/skinsdb/meta/character_20.txt b/patches/mods-multiplayer/skinsdb/meta/character_20.txt new file mode 100644 index 0000000..36231aa --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_20.txt @@ -0,0 +1,3 @@ +lisa +hansuke123 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_21.txt b/patches/mods-multiplayer/skinsdb/meta/character_21.txt new file mode 100644 index 0000000..402310f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_21.txt @@ -0,0 +1,3 @@ +lordphoenixmh +lordphoenixmh +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_22.txt b/patches/mods-multiplayer/skinsdb/meta/character_22.txt new file mode 100644 index 0000000..26c8ca0 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_22.txt @@ -0,0 +1,3 @@ +Mammu +hansuke123 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_23.txt b/patches/mods-multiplayer/skinsdb/meta/character_23.txt new file mode 100644 index 0000000..1271f4f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_23.txt @@ -0,0 +1,3 @@ +manoel1500 +manoel1500 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_24.txt b/patches/mods-multiplayer/skinsdb/meta/character_24.txt new file mode 100644 index 0000000..a6e1d94 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_24.txt @@ -0,0 +1,3 @@ +Mcc457 +Mccc457 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_25.txt b/patches/mods-multiplayer/skinsdb/meta/character_25.txt new file mode 100644 index 0000000..453b954 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_25.txt @@ -0,0 +1,3 @@ +My_younger_Brother +philipbenr +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_26.txt b/patches/mods-multiplayer/skinsdb/meta/character_26.txt new file mode 100644 index 0000000..1977906 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_26.txt @@ -0,0 +1,3 @@ +New_Ferdi_Napoli_Skin +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_27.txt b/patches/mods-multiplayer/skinsdb/meta/character_27.txt new file mode 100644 index 0000000..6b9f7b1 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_27.txt @@ -0,0 +1,3 @@ +Older_Man_Sam +philipbenr +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_28.txt b/patches/mods-multiplayer/skinsdb/meta/character_28.txt new file mode 100644 index 0000000..8ce980c --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_28.txt @@ -0,0 +1,3 @@ +oOChainLynxOo +oOChainLynxOo +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_29.txt b/patches/mods-multiplayer/skinsdb/meta/character_29.txt new file mode 100644 index 0000000..d9923e6 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_29.txt @@ -0,0 +1,3 @@ +philipbenr +philipbenr +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_3.txt b/patches/mods-multiplayer/skinsdb/meta/character_3.txt new file mode 100644 index 0000000..3483961 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_3.txt @@ -0,0 +1,3 @@ +Bajancanadian +bajanhgk +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_30.txt b/patches/mods-multiplayer/skinsdb/meta/character_30.txt new file mode 100644 index 0000000..80d8cb2 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_30.txt @@ -0,0 +1,3 @@ +rantathe +ranta +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_31.txt b/patches/mods-multiplayer/skinsdb/meta/character_31.txt new file mode 100644 index 0000000..45022f5 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_31.txt @@ -0,0 +1,3 @@ +Renan123 +sou_o_melhor +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_32.txt b/patches/mods-multiplayer/skinsdb/meta/character_32.txt new file mode 100644 index 0000000..2b9748e --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_32.txt @@ -0,0 +1,3 @@ +Rubber +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_33.txt b/patches/mods-multiplayer/skinsdb/meta/character_33.txt new file mode 100644 index 0000000..776b652 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_33.txt @@ -0,0 +1,3 @@ +Sdzen +sdzen +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_34.txt b/patches/mods-multiplayer/skinsdb/meta/character_34.txt new file mode 100644 index 0000000..76e186f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_34.txt @@ -0,0 +1,3 @@ +Seth_Rollins +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_35.txt b/patches/mods-multiplayer/skinsdb/meta/character_35.txt new file mode 100644 index 0000000..8a6c11f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_35.txt @@ -0,0 +1,3 @@ +skin_minecraft +lestouem +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_36.txt b/patches/mods-multiplayer/skinsdb/meta/character_36.txt new file mode 100644 index 0000000..f0df471 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_36.txt @@ -0,0 +1,3 @@ +Summer +lizzie +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_37.txt b/patches/mods-multiplayer/skinsdb/meta/character_37.txt new file mode 100644 index 0000000..9237692 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_37.txt @@ -0,0 +1,3 @@ +Tree +Evergreen +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_38.txt b/patches/mods-multiplayer/skinsdb/meta/character_38.txt new file mode 100644 index 0000000..704d8e1 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_38.txt @@ -0,0 +1,3 @@ +Trevor +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_39.txt b/patches/mods-multiplayer/skinsdb/meta/character_39.txt new file mode 100644 index 0000000..f5cd707 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_39.txt @@ -0,0 +1,3 @@ +Tuxedo_Sam +Jordach +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_4.txt b/patches/mods-multiplayer/skinsdb/meta/character_4.txt new file mode 100644 index 0000000..6a8eb5f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_4.txt @@ -0,0 +1,3 @@ +C55 +Jordach +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_40.txt b/patches/mods-multiplayer/skinsdb/meta/character_40.txt new file mode 100644 index 0000000..9362f54 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_40.txt @@ -0,0 +1,3 @@ +VanessaE +Jordach +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_41.txt b/patches/mods-multiplayer/skinsdb/meta/character_41.txt new file mode 100644 index 0000000..33356c9 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_41.txt @@ -0,0 +1,3 @@ +Wants +Wants +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_42.txt b/patches/mods-multiplayer/skinsdb/meta/character_42.txt new file mode 100644 index 0000000..3d179c2 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_42.txt @@ -0,0 +1,3 @@ +wheat_farmer +addi +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_43.txt b/patches/mods-multiplayer/skinsdb/meta/character_43.txt new file mode 100644 index 0000000..db0b290 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_43.txt @@ -0,0 +1,3 @@ +Zeg9 +Zeg9 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_44.txt b/patches/mods-multiplayer/skinsdb/meta/character_44.txt new file mode 100644 index 0000000..22e2cb6 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_44.txt @@ -0,0 +1,3 @@ +Zenohelds_default_player +sdzen +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_45.txt b/patches/mods-multiplayer/skinsdb/meta/character_45.txt new file mode 100644 index 0000000..77a5bae --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_45.txt @@ -0,0 +1,3 @@ +BlackAndGold +Abiyahh +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_46.txt b/patches/mods-multiplayer/skinsdb/meta/character_46.txt new file mode 100644 index 0000000..2362fff --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_46.txt @@ -0,0 +1,3 @@ +ClassicBandit +Abiyahh +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_47.txt b/patches/mods-multiplayer/skinsdb/meta/character_47.txt new file mode 100644 index 0000000..e4141be --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_47.txt @@ -0,0 +1,3 @@ +ClassySurfer +Abiyahh +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_48.txt b/patches/mods-multiplayer/skinsdb/meta/character_48.txt new file mode 100644 index 0000000..ddf2067 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_48.txt @@ -0,0 +1,3 @@ +SalesmanLarry +Abiyahh +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_49.txt b/patches/mods-multiplayer/skinsdb/meta/character_49.txt new file mode 100644 index 0000000..12b1f6f --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_49.txt @@ -0,0 +1,3 @@ +thefox963 +thefox963 +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_5.txt b/patches/mods-multiplayer/skinsdb/meta/character_5.txt new file mode 100644 index 0000000..c4974a1 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_5.txt @@ -0,0 +1,3 @@ +CaligoPL +CaligoPL +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_50.txt b/patches/mods-multiplayer/skinsdb/meta/character_50.txt new file mode 100644 index 0000000..32adeee --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_50.txt @@ -0,0 +1,3 @@ +yelby + +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_6.txt b/patches/mods-multiplayer/skinsdb/meta/character_6.txt new file mode 100644 index 0000000..6be04b5 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_6.txt @@ -0,0 +1,3 @@ +Chop +Ferdi_Napoli +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_7.txt b/patches/mods-multiplayer/skinsdb/meta/character_7.txt new file mode 100644 index 0000000..79513c4 --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_7.txt @@ -0,0 +1,3 @@ +Demon_Farmer_Sam_(ray8888_server) +sdzen +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_8.txt b/patches/mods-multiplayer/skinsdb/meta/character_8.txt new file mode 100644 index 0000000..5a0d93a --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_8.txt @@ -0,0 +1,3 @@ +DJSTEREO +DJOZZY +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/character_9.txt b/patches/mods-multiplayer/skinsdb/meta/character_9.txt new file mode 100644 index 0000000..babbc1e --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/character_9.txt @@ -0,0 +1,3 @@ +Esteban +Esteban +CC BY-SA 3.0 diff --git a/patches/mods-multiplayer/skinsdb/meta/placeholder.txt b/patches/mods-multiplayer/skinsdb/meta/placeholder.txt new file mode 100644 index 0000000..a9e6fce --- /dev/null +++ b/patches/mods-multiplayer/skinsdb/meta/placeholder.txt @@ -0,0 +1 @@ +Please run the update_from_db.py script to update the skins. diff --git a/patches/mods-multiplayer/skinsdb/textures/character_1.png b/patches/mods-multiplayer/skinsdb/textures/character_1.png new file mode 100644 index 0000000..8d0dd99 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_1.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_10.png b/patches/mods-multiplayer/skinsdb/textures/character_10.png new file mode 100644 index 0000000..52e55f0 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_10.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_10_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_10_preview.png new file mode 100644 index 0000000..e5e32f6 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_10_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_11.png b/patches/mods-multiplayer/skinsdb/textures/character_11.png new file mode 100644 index 0000000..5815fee Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_11.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_11_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_11_preview.png new file mode 100644 index 0000000..97cb58a Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_11_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_12.png b/patches/mods-multiplayer/skinsdb/textures/character_12.png new file mode 100644 index 0000000..6dc7bfb Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_12.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_12_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_12_preview.png new file mode 100644 index 0000000..6cda7ce Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_12_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_13.png b/patches/mods-multiplayer/skinsdb/textures/character_13.png new file mode 100644 index 0000000..965b646 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_13.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_13_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_13_preview.png new file mode 100644 index 0000000..8db5f1f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_13_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_14.png b/patches/mods-multiplayer/skinsdb/textures/character_14.png new file mode 100644 index 0000000..54fb932 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_14.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_14_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_14_preview.png new file mode 100644 index 0000000..b4a2c27 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_14_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_15.png b/patches/mods-multiplayer/skinsdb/textures/character_15.png new file mode 100644 index 0000000..9dff2b2 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_15.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_15_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_15_preview.png new file mode 100644 index 0000000..7147be8 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_15_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_16.png b/patches/mods-multiplayer/skinsdb/textures/character_16.png new file mode 100644 index 0000000..c2a7fbb Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_16.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_16_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_16_preview.png new file mode 100644 index 0000000..5212215 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_16_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_17.png b/patches/mods-multiplayer/skinsdb/textures/character_17.png new file mode 100644 index 0000000..72896f2 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_17.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_17_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_17_preview.png new file mode 100644 index 0000000..dedc39c Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_17_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_18.png b/patches/mods-multiplayer/skinsdb/textures/character_18.png new file mode 100644 index 0000000..0ad9bfe Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_18.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_18_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_18_preview.png new file mode 100644 index 0000000..20b55cf Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_18_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_19.png b/patches/mods-multiplayer/skinsdb/textures/character_19.png new file mode 100644 index 0000000..80ed4e0 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_19.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_19_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_19_preview.png new file mode 100644 index 0000000..78feb41 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_19_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_1_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_1_preview.png new file mode 100644 index 0000000..62a9ff2 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_1_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_2.png b/patches/mods-multiplayer/skinsdb/textures/character_2.png new file mode 100644 index 0000000..d794b87 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_2.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_20.png b/patches/mods-multiplayer/skinsdb/textures/character_20.png new file mode 100644 index 0000000..fc8d2ef Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_20.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_20_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_20_preview.png new file mode 100644 index 0000000..c0b93cb Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_20_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_21.png b/patches/mods-multiplayer/skinsdb/textures/character_21.png new file mode 100644 index 0000000..16f7aea Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_21.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_21_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_21_preview.png new file mode 100644 index 0000000..c5ddb46 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_21_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_22.png b/patches/mods-multiplayer/skinsdb/textures/character_22.png new file mode 100644 index 0000000..3e64c5d Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_22.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_22_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_22_preview.png new file mode 100644 index 0000000..0bc0401 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_22_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_23.png b/patches/mods-multiplayer/skinsdb/textures/character_23.png new file mode 100644 index 0000000..9e65746 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_23.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_23_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_23_preview.png new file mode 100644 index 0000000..67e3f8a Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_23_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_24.png b/patches/mods-multiplayer/skinsdb/textures/character_24.png new file mode 100644 index 0000000..bee6b45 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_24.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_24_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_24_preview.png new file mode 100644 index 0000000..264333b Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_24_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_25.png b/patches/mods-multiplayer/skinsdb/textures/character_25.png new file mode 100644 index 0000000..272d659 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_25.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_25_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_25_preview.png new file mode 100644 index 0000000..6f48f10 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_25_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_26.png b/patches/mods-multiplayer/skinsdb/textures/character_26.png new file mode 100644 index 0000000..c3277ee Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_26.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_26_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_26_preview.png new file mode 100644 index 0000000..7fdea7f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_26_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_27.png b/patches/mods-multiplayer/skinsdb/textures/character_27.png new file mode 100644 index 0000000..52d10e9 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_27.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_27_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_27_preview.png new file mode 100644 index 0000000..9d7b4ea Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_27_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_28.png b/patches/mods-multiplayer/skinsdb/textures/character_28.png new file mode 100644 index 0000000..6987918 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_28.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_28_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_28_preview.png new file mode 100644 index 0000000..01473be Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_28_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_29.png b/patches/mods-multiplayer/skinsdb/textures/character_29.png new file mode 100644 index 0000000..7e5437f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_29.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_29_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_29_preview.png new file mode 100644 index 0000000..dd4c587 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_29_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_2_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_2_preview.png new file mode 100644 index 0000000..0736def Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_2_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_3.png b/patches/mods-multiplayer/skinsdb/textures/character_3.png new file mode 100644 index 0000000..a5d270f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_3.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_30.png b/patches/mods-multiplayer/skinsdb/textures/character_30.png new file mode 100644 index 0000000..0d542b7 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_30.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_30_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_30_preview.png new file mode 100644 index 0000000..3d75f52 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_30_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_31.png b/patches/mods-multiplayer/skinsdb/textures/character_31.png new file mode 100644 index 0000000..52cab4d Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_31.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_31_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_31_preview.png new file mode 100644 index 0000000..fd8887d Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_31_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_32.png b/patches/mods-multiplayer/skinsdb/textures/character_32.png new file mode 100644 index 0000000..9b53b9b Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_32.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_32_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_32_preview.png new file mode 100644 index 0000000..5f38b41 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_32_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_33.png b/patches/mods-multiplayer/skinsdb/textures/character_33.png new file mode 100644 index 0000000..666440f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_33.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_33_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_33_preview.png new file mode 100644 index 0000000..fa2c88c Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_33_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_34.png b/patches/mods-multiplayer/skinsdb/textures/character_34.png new file mode 100644 index 0000000..ef95ea5 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_34.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_34_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_34_preview.png new file mode 100644 index 0000000..698e8a9 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_34_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_35.png b/patches/mods-multiplayer/skinsdb/textures/character_35.png new file mode 100644 index 0000000..13d8f50 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_35.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_35_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_35_preview.png new file mode 100644 index 0000000..b136a79 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_35_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_36.png b/patches/mods-multiplayer/skinsdb/textures/character_36.png new file mode 100644 index 0000000..73cf632 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_36.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_36_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_36_preview.png new file mode 100644 index 0000000..de5e83e Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_36_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_37.png b/patches/mods-multiplayer/skinsdb/textures/character_37.png new file mode 100644 index 0000000..12ed73c Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_37.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_37_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_37_preview.png new file mode 100644 index 0000000..0e99f3e Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_37_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_38.png b/patches/mods-multiplayer/skinsdb/textures/character_38.png new file mode 100644 index 0000000..743d7c6 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_38.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_38_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_38_preview.png new file mode 100644 index 0000000..f70a8a2 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_38_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_39.png b/patches/mods-multiplayer/skinsdb/textures/character_39.png new file mode 100644 index 0000000..716bb94 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_39.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_39_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_39_preview.png new file mode 100644 index 0000000..e8acb09 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_39_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_3_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_3_preview.png new file mode 100644 index 0000000..ecb3864 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_3_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_4.png b/patches/mods-multiplayer/skinsdb/textures/character_4.png new file mode 100644 index 0000000..4e72683 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_4.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_40.png b/patches/mods-multiplayer/skinsdb/textures/character_40.png new file mode 100644 index 0000000..cd06952 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_40.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_40_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_40_preview.png new file mode 100644 index 0000000..1347d94 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_40_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_41.png b/patches/mods-multiplayer/skinsdb/textures/character_41.png new file mode 100644 index 0000000..ff1fc5e Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_41.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_41_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_41_preview.png new file mode 100644 index 0000000..4c7ec0e Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_41_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_42.png b/patches/mods-multiplayer/skinsdb/textures/character_42.png new file mode 100644 index 0000000..3542765 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_42.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_42_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_42_preview.png new file mode 100644 index 0000000..299c5a8 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_42_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_43.png b/patches/mods-multiplayer/skinsdb/textures/character_43.png new file mode 100644 index 0000000..f583b8c Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_43.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_43_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_43_preview.png new file mode 100644 index 0000000..fbb11ba Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_43_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_44.png b/patches/mods-multiplayer/skinsdb/textures/character_44.png new file mode 100644 index 0000000..4e9b9a5 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_44.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_44_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_44_preview.png new file mode 100644 index 0000000..c3ac44b Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_44_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_45.png b/patches/mods-multiplayer/skinsdb/textures/character_45.png new file mode 100644 index 0000000..3eb50f0 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_45.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_45_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_45_preview.png new file mode 100644 index 0000000..47a688a Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_45_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_46.png b/patches/mods-multiplayer/skinsdb/textures/character_46.png new file mode 100644 index 0000000..635bf51 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_46.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_46_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_46_preview.png new file mode 100644 index 0000000..7628608 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_46_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_47.png b/patches/mods-multiplayer/skinsdb/textures/character_47.png new file mode 100644 index 0000000..fe5dcc3 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_47.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_47_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_47_preview.png new file mode 100644 index 0000000..725f9b9 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_47_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_48.png b/patches/mods-multiplayer/skinsdb/textures/character_48.png new file mode 100644 index 0000000..022fca9 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_48.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_48_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_48_preview.png new file mode 100644 index 0000000..a8a1f41 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_48_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_49.png b/patches/mods-multiplayer/skinsdb/textures/character_49.png new file mode 100644 index 0000000..a82c28f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_49.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_49_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_49_preview.png new file mode 100644 index 0000000..b6508c9 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_49_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_4_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_4_preview.png new file mode 100644 index 0000000..6438b77 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_4_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_5.png b/patches/mods-multiplayer/skinsdb/textures/character_5.png new file mode 100644 index 0000000..d76129b Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_5.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_50.png b/patches/mods-multiplayer/skinsdb/textures/character_50.png new file mode 100644 index 0000000..d498961 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_50.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_50_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_50_preview.png new file mode 100644 index 0000000..d482fdb Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_50_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_5_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_5_preview.png new file mode 100644 index 0000000..8b5d69a Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_5_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_6.png b/patches/mods-multiplayer/skinsdb/textures/character_6.png new file mode 100644 index 0000000..1056df2 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_6.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_6_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_6_preview.png new file mode 100644 index 0000000..ed5524e Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_6_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_7.png b/patches/mods-multiplayer/skinsdb/textures/character_7.png new file mode 100644 index 0000000..2dc78cb Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_7.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_7_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_7_preview.png new file mode 100644 index 0000000..c4e8b88 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_7_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_8.png b/patches/mods-multiplayer/skinsdb/textures/character_8.png new file mode 100644 index 0000000..3c8d866 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_8.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_8_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_8_preview.png new file mode 100644 index 0000000..192f4bf Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_8_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_9.png b/patches/mods-multiplayer/skinsdb/textures/character_9.png new file mode 100644 index 0000000..980a298 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_9.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/character_9_preview.png b/patches/mods-multiplayer/skinsdb/textures/character_9_preview.png new file mode 100644 index 0000000..e62e8ba Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/character_9_preview.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/inventory_plus_skins.png b/patches/mods-multiplayer/skinsdb/textures/inventory_plus_skins.png new file mode 100644 index 0000000..781b42f Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/inventory_plus_skins.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/u_skins_button.png b/patches/mods-multiplayer/skinsdb/textures/u_skins_button.png new file mode 100644 index 0000000..cb49531 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/u_skins_button.png differ diff --git a/patches/mods-multiplayer/skinsdb/textures/ui_misc_form.png b/patches/mods-multiplayer/skinsdb/textures/ui_misc_form.png new file mode 100644 index 0000000..d34d326 Binary files /dev/null and b/patches/mods-multiplayer/skinsdb/textures/ui_misc_form.png differ