skinsdb/README.md

69 lines
2.3 KiB
Markdown
Raw Permalink Normal View History

# skinsdb
2017-06-21 21:36:30 +02:00
This Minetest mod offers changeable player skins with a graphical interface for multiple inventory mods.
2017-06-21 21:36:30 +02:00
## Features
2017-06-21 21:36:30 +02:00
- Flexible skins API to manage the database
- [character_creator](https://github.com/minetest-mods/character_creator) support for custom skins
- Skin change menu for sfinv (in minetest_game) and [unified_inventory](https://forum.minetest.net/viewtopic.php?t=12767)
2018-02-14 20:26:14 +01:00
- Skins change menu and command line using chat command /skinsdb (set | show | list | list private | list public | ui)
- Supported by [smart_inventory](https://forum.minetest.net/viewtopic.php?t=16597) for the skin selection
2021-01-03 09:36:20 +01:00
- Supported by [i3](https://github.com/minetest-mods/i3) inventory mod
- Skin previews supported in selection
- Additional information for each skin
- Support for different skins lists: public and a per-player list are currently implemented
- Full [3d_armor](https://forum.minetest.net/viewtopic.php?t=4654) support
2018-04-15 01:09:38 +02:00
- Compatible to 1.0 and 1.8 Minecraft skins format
2022-02-15 18:57:14 +01:00
- Skinned hand in 1st person view (1.0 skins only)
2017-06-21 21:36:30 +02:00
## Installing skins
### Download from the [database](https://skinsdb.terraqueststudios.net/)
2020-06-07 13:39:57 +02:00
#### Ingame Downloader
1) Get Minetest 5.1.0-dev-cb00632 or newer
2) In the settings menu show advanced options, find the "Developer Options" tab and add "skinsdb" to "Trusted mods" (secure.trusted_mods in minetest.conf)
3) Start your world
4) Run `/skinsdb_download_skins <skindb start page> <amount of pages>`
5) Wait for the Minetest server to shut down
6) Start the server again
You might want to run `minetest` in a Terminal/Console window to check the log output instantly.
2020-06-07 13:39:57 +02:00
#### Python Download script
**Requirements:**
* Python 3
* `requests` library: `pip3 install requests`
Go to the updater folder of this mod and run `python3 update_skins.py`
The Script will download all the skins from the database for you.
### Manual addition
1) Copy your skin textures to `textures` as documented in `textures/readme.txt`
2) Create `meta/character_<name>.txt` with the following fields (separated by new lines):
* Skin name
* Author
* Skin license
## License:
- GPLv3
- skin texture licenses: See "meta" folder
2022-02-15 18:57:14 +01:00
- hand model: CC0
2017-06-21 21:36:30 +02:00
### Credits
2017-06-21 21:36:30 +02:00
- RealBadAngel (unified_inventory)
- Zeg9 (skinsdb)
- cornernote (source code)
- Krock (source code)
2018-02-14 20:26:14 +01:00
- bell07 (source code)
2018-04-15 01:09:38 +02:00
- stujones11 (player models)
2022-02-15 18:57:14 +01:00
- jordan4ibanez (1st person view hand)