changed texture to make more seemless
and reduced color to go with base textures better
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 670 B After Width: | Height: | Size: 496 B |
Before Width: | Height: | Size: 639 B After Width: | Height: | Size: 498 B |
Before Width: | Height: | Size: 803 B After Width: | Height: | Size: 293 B |
27
update in C games Minetest games ENLIVEN.bat
Normal file
@ -0,0 +1,27 @@
|
||||
IF NOT EXIST ".\textures" GOTO ENDNOSOURCE
|
||||
SET MT_PATH=C:\games\Minetest
|
||||
IF NOT EXIST "%MT_PATH%" GOTO ENDNOMINETEST
|
||||
SET MT_GAMES_PATH=%MT_PATH%\games
|
||||
SET MT_GAME_PATH=%MT_GAMES_PATH%\ENLIVEN
|
||||
IF NOT EXIST "%MT_GAME_PATH%" GOTO ENDNOGAME
|
||||
|
||||
SET MODS_PATH=%MT_GAME_PATH%\mods
|
||||
SET MOD_DEST_PATH=%MODS_PATH%\birthstones
|
||||
IF NOT EXIST "%MOD_DEST_PATH%" md "%MOD_DEST_PATH%"
|
||||
copy *.* "%MOD_DEST_PATH%\"
|
||||
IF NOT EXIST "%MOD_DEST_PATH%\textures" md "%MOD_DEST_PATH%\textures"
|
||||
copy .\textures\*.* "%MOD_DEST_PATH%\textures"
|
||||
|
||||
GOTO ENDSILENTLY
|
||||
:ENDNOMINETEST:
|
||||
echo "Minetest is not installed at %MT_PATH% -- extract minetest there first or edit this batch file in your favorite text editor and edit the value for MT_PATH.
|
||||
pause
|
||||
GOTO ENDSILENTLY
|
||||
:ENDNOGAME
|
||||
echo "Subgame %MT_ENLIVEN_PATH% is not installed -- extract that subgame there first or edit this batch file in your favorite text editor and edit the value for MT_GAME_PATH.
|
||||
pause
|
||||
GOTO ENDSILENTLY
|
||||
:ENDNOSOURCE
|
||||
echo "Missing source folder. You must extract all files and run from a drive letter, so that textures folder is in current working directory"
|
||||
pause
|
||||
:ENDSILENTLY
|