Ehm, yes you can. You replace the mod the mod textures on the server.sfan5 wrote:Its currently not possible to use you own Textures on a Server
Jordach wrote:Ehm, yes you can. You replace the mod the mod textures on the server.sfan5 wrote:Its currently not possible to use you own Textures on a Server
sfan5 wrote:Jordach wrote:Ehm, yes you can. You replace the mod the mod textures on the server.sfan5 wrote:Its currently not possible to use you own Textures on a Server
What I meant: If you go on a Server, you can't use your own textures
sfan5 wrote:Jordach wrote:Ehm, yes you can. You replace the mod the mod textures on the server.sfan5 wrote:Its currently not possible to use you own Textures on a Server
What I meant: If you go on a Server, you can't use your own textures
VanessaE wrote:minetest.conf: texture_path = /foo/blah
(or dump everything into minetest/textures/all of course)
VanessaE wrote:The folder you mentioned is not the main texture folder, but one of many.
If you change the textures on the server, which is done by outright replacing them in every mod folder they exist in, all clients who connect to your server will see and reflect the change (except where they run their own texture packs of course).
If you add a music mod such as Ambiance, or the music player in Technic, there will be a much larger download time. Timeouts are normal in this case (if undesirable).
The overall speed of your server has little effect on the speed of data transmission, because of the way the network stack has been written. This will be improved in the future I'm sure.
VanessaE wrote:No need to apologize. Every one of us on these forums, from the newest casual player to the most seasoned core developer, has been in that "n00b!" stage before.
By "network stack", I mean the code specific to the Minetest engine that is responsible for handling the connection between your server and the various clients who are connecting to it.
It is not a problem with your hardware or your Internet connection, nor anything that you're doing with your server. The network stack in Minetest is just not currently capable of fast communication, but improvements to this code are expected some time in the not-too-distant future.
Also of note, there is some capability to play sounds on a client's local machine without them first having gone through the server. Rather, a user can download a sound pack from some random website, install it to his client, and those sounds will play when your server tells the client to play them, if you have the appropriate mods to do this (I don't remember which ones use this feature).
#! /bin/sh
MINETESTDIR="$HOME/.minetest";
TPDIR="$MINETESTDIR/textures/default";
cd "$MINETESTDIR";
mkdir "textures/default";
for file in `find games/common/ games/minetest_game/ -name '*.png'`; do
cp -f "$file" "$TPDIR/";
done
texture_path = /home/bleh/.minetest/textures/default
Now I remember why Bash is awesome.kaeza wrote:I just use something to the effect of:Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
#! /bin/sh
MINETESTDIR="$HOME/.minetest";
TPDIR="$MINETESTDIR/textures/default";
cd "$MINETESTDIR";
mkdir "textures/default";
for file in `find games/common/ games/minetest_game/ -name '*.png'`; do
cp -f "$file" "$TPDIR/";
done
Then set texture_path in minetest.conf to point to $TPDIR:Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
texture_path = /home/bleh/.minetest/textures/default
kaeza wrote:I just use something to the effect of:Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
#! /bin/sh
MINETESTDIR="$HOME/.minetest";
TPDIR="$MINETESTDIR/textures/default";
cd "$MINETESTDIR";
mkdir "textures/default";
for file in `find games/common/ games/minetest_game/ -name '*.png'`; do
cp -f "$file" "$TPDIR/";
done
Then set texture_path in minetest.conf to point to $TPDIR:Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
texture_path = /home/bleh/.minetest/textures/default
keyxmakerx wrote:I am using the beta Linux version.
keyxmakerx wrote:would it effect windows users?
kaeza wrote:keyxmakerx wrote:I am using the beta Linux version.keyxmakerx wrote:would it effect windows users?
wat
Return to Minetest Texture Packs
Users browsing this forum: No registered users and 11 guests