0 |
In this folder the skin files could be placed according the following file naming convention. |
1 |
|
2 |
skinsdb uses an underscore as default seperator for filename splitting which can cause problems with playernames containing "_", |
3 |
see https://github.com/minetest-mods/skinsdb/issues/54. |
4 |
The config setting skinsdb_fsep (texture filename seperator) was added as a workaround which also offers "."(dot) as seperator, |
5 |
dot is the only character which is allowed in textures but not in playernames. |
6 |
To keep compatibility with older versions underscore is the default value. |
7 |
|
8 |
fresh install: |
9 |
you should change the seperator to "." to avoid that problem. |
10 |
existing install: |
11 |
- change the filenames according to the naming convention with dot as seperator instead of underscore |
12 |
- change the texture filename seperator in settings or add "skinsdb_fsep = ." to your minetest.conf before starting your server |
13 |
|
14 |
Public skin available for all users: |
15 |
character_[number-or-name].png |
16 |
|
17 |
One or multiple private skins for player "nick": |
18 |
player_[nick].png or |
19 |
player_[nick]_[number-or-name].png |
20 |
|
21 |
Preview files for public and private skins. |
22 |
Optional, overrides the generated preview |
23 |
character_*_preview.png or |
24 |
player_*_*_preview.png |