Post your screenshots!

User avatar
Hugues Ross
Developer
Posts: 72
Joined: Mon May 06, 2019 22:52
GitHub: Df458
Location: Kitchens, Pantries, etc.
Contact:

Re: Post your screenshots!

by Hugues Ross » Post

Valleys mapgen is starting to grow on me, rivers are a really nice feature.
Image

User avatar
texmex
Member
Posts: 1753
Joined: Mon Jul 11, 2016 21:08
GitHub: tacotexmex
In-game: tacotexmex

Re: Post your screenshots!

by texmex » Post

@Hugues Ross What's the texture pack?

User avatar
Hugues Ross
Developer
Posts: 72
Joined: Mon May 06, 2019 22:52
GitHub: Df458
Location: Kitchens, Pantries, etc.
Contact:

Re: Post your screenshots!

by Hugues Ross » Post

It's a WIP texturepack that I'm working on. It won't be released for a little while, but I've been taking a lot of screenshots as part of testing. Figured I should post some of the better ones form time to time.

ShadMOrdre
Member
Posts: 1118
Joined: Mon Dec 29, 2014 08:07
Location: USA

Re: Post your screenshots!

by ShadMOrdre » Post

Makin' progresssss....... (in the voice of Rob Schnieder's SNL copyman)

Before:
Image

Current:
Image

Birds-eye:
Image
Attachments
screenshot_20190520_040428.jpg
screenshot_20190520_040428.jpg (389.22 KiB) Viewed 782 times
screenshot_20190520_010748.jpg
screenshot_20190520_010748.jpg (391.07 KiB) Viewed 782 times
screenshot_20190520_040319.jpg
screenshot_20190520_040319.jpg (341.22 KiB) Viewed 782 times

Termos
Member
Posts: 417
Joined: Sun Dec 16, 2018 12:50

Re: Post your screenshots!

by Termos » Post

Carpathian has a potential of becoming my favourite mapgen.
Image
It surely will if I find a way to shrink those vast plains without making everything else look all crazy.

Sokomine
Member
Posts: 4276
Joined: Sun Sep 09, 2012 17:31
GitHub: Sokomine
IRC: Sokomine
In-game: Sokomine

Re: Post your screenshots!

by Sokomine » Post

socerykid wrote: The AI will follow the calculated route, avoiding obstacles -- even opening doors and climbing ladders automatically as depicted in the animated GIF below!
That sounds fantastic! I was able to calculate paths for villagers in my villages mod from door to bed/workplace/front of house and from house to house, but actually letting a mob walk such a path seldom worked. They got stuck at doors and corners, and ladders where not yet included.

How expensive are those parts of your mod? That is, actually walking a path and finding one using ladders. Safe places and places of intrest are precalculated in my mod at mapgen time.
A list of my mods can be found here.

User avatar
benrob0329
Member
Posts: 1341
Joined: Thu Aug 06, 2015 22:39
GitHub: Benrob0329
IRC: benrob0329
In-game: benrob03
Location: Michigan
Contact:

Re: Post your screenshots!

by benrob0329 » Post

Image
Attachments
screenshot_20190520_235010.png
screenshot_20190520_235010.png (290.9 KiB) Viewed 782 times

User avatar
voxelproof
Member
Posts: 1087
Joined: Sat Aug 05, 2017 08:13
Location: Europe

On preying habits of dragons

by voxelproof » Post

Some quite impressive images from the Monsters Game showcasing the fearsome dragon in action.

This horse by falling prey to the monster probably saved me from similar fate in spite of having enabled 'fly' mode.

Image

Image

Another example shows an attack on a human-like creature.

Image
Attachments
monsters3.jpg
monsters3.jpg (64.57 KiB) Viewed 782 times
monsters2.jpg
monsters2.jpg (64.37 KiB) Viewed 782 times
monsters1.jpg
monsters1.jpg (64.3 KiB) Viewed 782 times
To miss the joy is to miss all. Robert Louis Stevenson

User avatar
voxelproof
Member
Posts: 1087
Joined: Sat Aug 05, 2017 08:13
Location: Europe

Re: Post your screenshots!

by voxelproof » Post

This sequence of shots taken from a safe distance leaves little doubt about the chances of a player's character in such encounter.

Image

Image

Image
Attachments
monsters6.jpg
monsters6.jpg (64.64 KiB) Viewed 782 times
monsters5.jpg
monsters5.jpg (64.6 KiB) Viewed 782 times
monsters4.jpg
monsters4.jpg (64.95 KiB) Viewed 782 times
To miss the joy is to miss all. Robert Louis Stevenson

User avatar
SB66
Member
Posts: 258
Joined: Sat May 17, 2014 17:50

Re: On preying habits of dragons

by SB66 » Post

voxelproof wrote:Some quite impressive images from the Monsters Game showcasing the fearsome dragon in action. .....
Maybe I should have a look into this game ....


More friendly creature...
Image
Attachments
screenshot_20190519_120125.jpg
screenshot_20190519_120125.jpg (367.56 KiB) Viewed 782 times

User avatar
SB66
Member
Posts: 258
Joined: Sat May 17, 2014 17:50

Re: Post your screenshots!

by SB66 » Post

Image
Attachments
screenshot_20190519_120214.jpg
screenshot_20190519_120214.jpg (181.2 KiB) Viewed 782 times

User avatar
sorcerykid
Member
Posts: 1841
Joined: Fri Aug 26, 2016 15:36
GitHub: sorcerykid
In-game: Nemo
Location: Illinois, USA

Re: Post your screenshots!

by sorcerykid » Post

Here's an interactive tool I created to test screen DPI settings. It was a breeze to make, using my new Scarlet mod :)

When the screen_dpi setting in minetest.conf is correct, then the upper bar should measure 72 on-screen pixels and the lower bar should measure 1 physical inch. This is good way to visualize how formspec elements scale using point vs. dot units of measurement.

Image

Code: Select all

minetest.register_chatcommand( "dpi", {
        description = "Test screen DPI settings (requires Scarlet)",
        privs = { server = true },
        func = function( name, param )
                local dpi = 72
                local function get_formspec( )
                        local fs =
                                "size[4.6c,5.325c]" ..
                                "no_prepend[]" ..
                                "bgcolor[#333333;false]" ..
                                "margin[]" ..
                                "label[0c,-0.2c;72 pixels]" ..
                                "label[0c,0.3c;1.0 inches]" ..
                                "box[1.4c,0c;72d,10p;#00FF00]" ..
                                "box[1.4c,0.5c;72p,10p;#00FF00]" ..
                                "label[0c,0.8c;100x100 points]" ..
                                "label[2c,0.8c;100x100 dots]" ..
                                "image[0c,1.5c;100p,100p;default_mese_block.png]" ..
                                "image[2c,1.5c;100d,100d;default_mese_block.png]" ..
                                "button[0c,4c;0.5c,1b;dec;-]" ..
                                "box[0.5c,4c;1c,1b;#000000]" ..
                                "label[0.55c,4c;" .. dpi .. " dpi]" ..
                                "button[1.5c,4c;0.5c,1b;inc;+]" ..
                                "button_exit[2c,4c;2c,1b;close;Close]" ..
                                "margin_end[]"
                        return scarlet.translate( fs, dpi )
                end

                local function on_close( meta, player, fields )
                        if fields.dec and dpi > 72 then
                                dpi = dpi - 1
                                minetest.create_form( nil, name, get_formspec( ), on_close )
                        elseif fields.inc and dpi < 144  then
                                dpi = dpi + 1
                                minetest.create_form( nil, name, get_formspec( ), on_close )
                        end
                end

                minetest.create_form( nil, name, get_formspec( ), on_close )
        end
} )

User avatar
duane
Member
Posts: 1715
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r
Location: Oklahoma City
Contact:

Re: Post your screenshots!

by duane » Post

Image
Attachments
screenshot_20190524_082404.jpg
screenshot_20190524_082404.jpg (78.72 KiB) Viewed 782 times
Believe in people and you don't need to believe anything else.

User avatar
Linuxdirk
Member
Posts: 3216
Joined: Wed Sep 17, 2014 11:21
In-game: Linuxdirk
Location: Germany
Contact:

Re: Post your screenshots!

by Linuxdirk » Post

Just played around with roof designs …

Image

… and accidentally made a tiny church …

Image

… oops :)

User avatar
duane
Member
Posts: 1715
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r
Location: Oklahoma City
Contact:

Re: Post your screenshots!

by duane » Post

Image
Attachments
screenshot_20190525_042453.jpg
screenshot_20190525_042453.jpg (420.32 KiB) Viewed 782 times
Believe in people and you don't need to believe anything else.

User avatar
duane
Member
Posts: 1715
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r
Location: Oklahoma City
Contact:

Re: Post your screenshots!

by duane » Post

Image
Attachments
screenshot_20190525_091507.jpg
screenshot_20190525_091507.jpg (360.79 KiB) Viewed 782 times
Believe in people and you don't need to believe anything else.

User avatar
duane
Member
Posts: 1715
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r
Location: Oklahoma City
Contact:

Re: Post your screenshots!

by duane » Post

Image
Attachments
screenshot_20190525_225234.jpg
screenshot_20190525_225234.jpg (192.18 KiB) Viewed 782 times
Believe in people and you don't need to believe anything else.

User avatar
duane
Member
Posts: 1715
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r
Location: Oklahoma City
Contact:

Re: Post your screenshots!

by duane » Post

Image

Image

Image
Attachments
screenshot_20190526_035229.jpg
screenshot_20190526_035229.jpg (200.07 KiB) Viewed 782 times
screenshot_20190526_035448.jpg
screenshot_20190526_035448.jpg (289.06 KiB) Viewed 782 times
screenshot_20190526_034920.jpg
screenshot_20190526_034920.jpg (126.89 KiB) Viewed 782 times
Believe in people and you don't need to believe anything else.

User avatar
voxelproof
Member
Posts: 1087
Joined: Sat Aug 05, 2017 08:13
Location: Europe

Re: Post your screenshots!

by voxelproof » Post

Image
Stuck and furious
Attachments
stuck.jpg
stuck.jpg (64.26 KiB) Viewed 782 times
To miss the joy is to miss all. Robert Louis Stevenson

User avatar
duane
Member
Posts: 1715
Joined: Wed Aug 19, 2015 19:11
GitHub: duane-r
Location: Oklahoma City
Contact:

Re: Post your screenshots!

by duane » Post

Image

Image
Attachments
screenshot_20190526_232906.jpg
screenshot_20190526_232906.jpg (108.97 KiB) Viewed 782 times
screenshot_20190526_231401.jpg
screenshot_20190526_231401.jpg (429.93 KiB) Viewed 782 times
Believe in people and you don't need to believe anything else.

User avatar
v-rob
Developer
Posts: 969
Joined: Thu Mar 24, 2016 03:19
GitHub: v-rob
IRC: v-rob
Location: Right behind you.

Re: Post your screenshots!

by v-rob » Post

Those caves look very interesting, Duane. Quite a bit different than the caves that virtually every mapgen has, and much more diverse looking.

OSS:

Fun with particlespawners:

Image

Funny how much a JPEG will compress your file size...
Attachments
screenshot_20190203_192116.jpg
screenshot_20190203_192116.jpg (605.99 KiB) Viewed 782 times
Core Developer | My Best Mods: Bridger - Slats - Stained Glass

User avatar
texmex
Member
Posts: 1753
Joined: Mon Jul 11, 2016 21:08
GitHub: tacotexmex
In-game: tacotexmex

Re: Post your screenshots!

by texmex » Post

@v-rob Yesss!! More stuff like this. Particles are so underrated atm.

User avatar
davidthecreator
Member
Posts: 452
Joined: Mon Aug 18, 2014 19:48
GitHub: daviddoesminetest
In-game: DavidDoesMinetest
Location: Lithuania

Re: Post your screenshots!

by davidthecreator » Post

texmex wrote:@v-rob Yesss!! More stuff like this. Particles are so underrated atm.
Are you sure about that?

User avatar
Linuxdirk
Member
Posts: 3216
Joined: Wed Sep 17, 2014 11:21
In-game: Linuxdirk
Location: Germany
Contact:

Re: Post your screenshots!

by Linuxdirk » Post

davidthecreator wrote:
texmex wrote:@v-rob Yesss!! More stuff like this. Particles are so underrated atm.
Are you sure about that?
Yes, we need more particles for everything!

User avatar
texmex
Member
Posts: 1753
Joined: Mon Jul 11, 2016 21:08
GitHub: tacotexmex
In-game: tacotexmex

Re: Post your screenshots!

by texmex » Post

Linuxdirk wrote:
davidthecreator wrote:
texmex wrote:@v-rob Yesss!! More stuff like this. Particles are so underrated atm.
Are you sure about that?
Yes, we need more particles for everything!
Oilboi’s game is a good example.

Post Reply

Who is online

Users browsing this forum: No registered users and 5 guests