[Server] just test

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Water

by m8ii » Post

Sometimes water doesn't flows, when i place it in flat place. it just stays.
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

843jdc
Member
Posts: 361
Joined: Tue Jan 19, 2016 16:46
GitHub: jdc843
IRC: jdc843
In-game: 843jdc
Location: USA

Can not craft cart rails

by 843jdc » Post

And they are not in the crafting guide.

Why are items in the crafting guide that we can't craft? Like desert stone and a lot of other items.

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

No lava at spawn center

by m8ii » Post

No lava at spawn center.
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

talamh
Member
Posts: 156
Joined: Sun Nov 12, 2017 18:24

Re: No lava at spawn center

by talamh » Post

m8ii wrote:No lava at spawn center.
Looks like someone dropped gravel from high above spawn down onto the lava. They also dropped gravel onto the teleport at spawn.

Cleared one stack of lava from one of the lava holes, cant seem to remove the other one. I'm guessing they will survive server restart so lag will have to remove them.

843jdc
Member
Posts: 361
Joined: Tue Jan 19, 2016 16:46
GitHub: jdc843
IRC: jdc843
In-game: 843jdc
Location: USA

It's a mess

by 843jdc » Post

The server is unresponsive to /status command. Map isn't Fully loading either. While climbing, I'm banging my head into nothing but air. Time for a couple of aspirin :)

And:
At around 10:20PM EST, soon after talamh logged out, the server claimed I was moving too fast while walking on nearly flat surface. I died. (Server killed me?) My bones were quite far away from where I saw myself die.

I'm currently trying to log in to get to my bones before they age.

Lag - your attention is requested concerning a few issues as posted in the forums. A yea or nay response at least please.

The server was busier earlier today. Will it return to 70 players online at once again? The Chaos Server might be reborn:D

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: [Server] just test

by lag01 » Post

By chance i was there when server hit 30 players today.
It also hit 100% one CPU core, gave me some unresponsive times, then was not accepting connections from me, said my client use unsupported protocol...
Investigating...

843jdc
Member
Posts: 361
Joined: Tue Jan 19, 2016 16:46
GitHub: jdc843
IRC: jdc843
In-game: 843jdc
Location: USA

Re: Lag01

by 843jdc » Post

That's the same problem I have. It does not seem to matter if there are 30 or 2 players. It still happens.

If 100% on the CPU, maybe too many mobs? Though I well remember long ago the large hordes of mobs out in the wilds and the server was fine. These giant stone mobs you got are a nuisance as I'm sure you intend them to be.

There are bones around that never age. But if treated as an entity, the numbers might be adding up and increasing server load. One is in my field at my place south of spawn. Follow my road to find it. Another is NW of spawn where I've placed snow. There are others. Those two I frequently see and remember.

Thanks for responding. Even if nothing changes, knowing that the admin listens is very good :)

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: [Server] just test

by lag01 » Post

I turned off mobs and did /clearobjects.
Let's see what will that do.

talamh
Member
Posts: 156
Joined: Sun Nov 12, 2017 18:24

Map of area around spawn at aprox. 19:00 UTC

by talamh » Post

Image

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: [Server] just test

by lag01 » Post

Next week for few days server is expected to be down.

P.s. Nice maps talamh, thanks!

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Far building

by m8ii » Post

If i build something far away (20000, 1, 20000), protect it, will it be deleted by shrink or other way?
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: Far building

by lag01 » Post

m8ii wrote:If i build something far away (20000, 1, 20000), protect it, will it be deleted by shrink or other way?
As it will have protection block in it, it should be saved. But, unlike 1500 block radius around spawn, it is at risk to be cut on block boundary.

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Re: Far building

by m8ii » Post

lag01 wrote:
m8ii wrote:If i build something far away (20000, 1, 20000), protect it, will it be deleted by shrink or other way?
As it will have protection block in it, it should be saved. But, unlike 1500 block radius around spawn, it is at risk to be cut on block boundary.
So square area from [-1500,x,-1500] to [1500,x,1500] is safe for building, cut is out of it?
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: Far building

by lag01 » Post

So square area from [-1500,x,-1500] to [1500,x,1500] is safe for building, cut is out of it?[/quote]

Good thing you reminded me...
Next time i do mapshrink,
i will set remap.py code to 1600 nodes around spawn. (+ all blocks on entire map it will detect as used by players, of course)

Code: Select all

if pos[0]**2 + pos[2]**2 < (160/16)**2 and pos[1]>(-60/16):    #160 nodes radius and 60 nodes deep

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Re: Far building

by m8ii » Post

lag01 wrote:
m8ii wrote:So square area from [-1500,x,-1500] to [1500,x,1500] is safe for building, cut is out of it?
Good thing you reminded me...
Next time i do mapshrink,
i will set remap.py code to 1600 nodes around spawn. (+ all blocks on entire map it will detect as used by players, of course)

Code: Select all

if pos[0]**2 + pos[2]**2 < (160/16)**2 and pos[1]>(-60/16):    #160 nodes radius and 60 nodes deep
1 node is 16x16x16 blocks?

pos[0] - in blocks or nodes?
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: [Server] just test

by lag01 » Post

1 map "block" is 16x16x16 nodes. That is how minetest developers calls these things.

pos[0] is in map blocks.

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Offline

by m8ii » Post

Server is offline often.
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

User avatar
lag01
Member
Posts: 321
Joined: Sun Mar 16, 2014 03:41
GitHub: AndrejIT
IRC: lag01
In-game: lag
Contact:

Re: Offline

by lag01 » Post

m8ii wrote:Server is offline often.
Yes, it is.
It is errors on USB WiFi dongle.
I have troubles finding good place where i can place server where i can connect wire.

talamh
Member
Posts: 156
Joined: Sun Nov 12, 2017 18:24

Map of area around spawn at aprox. 15:00 UTC

by talamh » Post

Image

talamh
Member
Posts: 156
Joined: Sun Nov 12, 2017 18:24

Lags evil eye is always watching!

by talamh » Post

Image

Lagger01
New member
Posts: 6
Joined: Sun Dec 16, 2018 09:06
GitHub: Lagger01
IRC: Lagger01
In-game: Lagger01

Re: [Server] just test

by Lagger01 » Post

Dear lag, I vanek2, remove cheritto please player TheMask just kick, load of the server and it automatically restarts!!!

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Spawn is flooded

by m8ii » Post

Spawn is flooded by gravel. Help. Lava was surround by gravel.
Image
Attachments
screenshot_20190106_222239.png
screenshot_20190106_222239.png (258.24 KiB) Viewed 2441 times
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

Lagger01
New member
Posts: 6
Joined: Sun Dec 16, 2018 09:06
GitHub: Lagger01
IRC: Lagger01
In-game: Lagger01

Re: [Server] just test

by Lagger01 » Post

spawn is covered in gravel, help us!
Attachments
57sLTirt.png
57sLTirt.png (789.63 KiB) Viewed 2441 times

talamh
Member
Posts: 156
Joined: Sun Nov 12, 2017 18:24

Area near spawn on 8th April 2019

by talamh » Post

Image

Repost of the last map I made.

User avatar
m8ii
Member
Posts: 88
Joined: Fri Dec 02, 2016 11:28

Water

by m8ii » Post

Water at spawn.
Image
Attachments
water.png
water.png (829.54 KiB) Viewed 2441 times
2016-12-02 17:20:25: ACTION[Server]: singleplayer places node default:furnace at (402,-47,349)

Post Reply

Who is online

Users browsing this forum: No registered users and 10 guests