when i upload a skin it gets wierd and none of the parts are in the right spot(like the texture for back of charechter is on the head) and idk what i did wrong.
and also when i want to upload a skin it says no permision, so i thougth it was bc of limit, and when i tried increasing my limit using the command /skinlimit Abtin_t1 99 but it increased for a player named "t1"
The reason for the first issue is that the skin you uploaded doesn't have the layout expected by the player model. The most common reason for this is that you're trying to upload a Minecraft skin, in which case you can just crop off the bottom 32 pixels of the image. I'll probably just add a note that if the preview looks wrong it's because you uploaded a wrongly-laid-out image (since it's not really possible to programmatically 'validate' UVs).
The 'no permission' error is likely because you did /grantme all, and that granted you the no_skin_upload privilege that prevents you from uploading skins. Revoking that should suffice. (The reason I did it this way, by the way, is to allow players on servers to upload skins by default (i.e. without the admin modifying minetest.conf) while still using a privilege check. A better solution could be to just implement my own privilege system so this doesn't happen.) (Also note that if your request limit has been reached, subsequent requests will silently overwrite prior ones.)
The /skinlimit bug is caused by a silly mistake on my part in which I forgot that %w doesn't include dashes and underscores.
I'll fix/address these issues in the next release.
when i upload a skin it gets wierd and none of the parts are in the right spot(like the texture for back of charechter is on the head) and idk what i did wrong. and also when i want to upload a skin it says no permision, so i thougth it was bc of limit, and when i tried increasing my limit using the command
/skinlimit Abtin_t1 99
but it increased for a player named "t1"/grantme all
, and that granted you the no_skin_upload privilege that prevents you from uploading skins. Revoking that should suffice. (The reason I did it this way, by the way, is to allow players on servers to upload skins by default (i.e. without the admin modifying minetest.conf) while still using a privilege check. A better solution could be to just implement my own privilege system so this doesn't happen.) (Also note that if your request limit has been reached, subsequent requests will silently overwrite prior ones.)/skinlimit
bug is caused by a silly mistake on my part in which I forgot that %w doesn't include dashes and underscores.I'll fix/address these issues in the next release.
thanks it worked.