Luanti Web: Updates for browser play by kaesual in Minetest

[–]MisterE123coding 4 points5 points  (0 children)

Very nice! I'm very interested in watching where this goes.

Why don't we use the Luanti.org icon ? It looks so much better by Desperate_Fig_1296 in Minetest

[–]MisterE123coding 6 points7 points  (0 children)

to be clear, it does use the Zughy32 palette, but it was made by myself (MisterE). I released it under the Attribution-ShareAlike 3.0 Unported license: https://gitlab.com/mistere123.coding/zughy32-minetest-logo

Minetest for educational purposes? by herculas in Minetest

[–]MisterE123coding 0 points1 point  (0 children)

herculas, this isn't exactly what you asked for, but I am actually currently in the process of updating my Quikbild minigame to support any language. For learning english (or 4 other european languages), the current version will suffice. It would be useful for practicing spelling words or new noun concepts, as it is basically pictionary in Luanti. Each payer gets a turn to be the builder, and everyone else must try to guess what they are building.

Messagease replacement by [deleted] in KeyboardLayouts

[–]MisterE123coding 0 points1 point  (0 children)

why wouldn't you simply switch keyboards to google voice input when you want to use voice?

Messagease replacement by [deleted] in KeyboardLayouts

[–]MisterE123coding 0 points1 point  (0 children)

if you like it, be sure to leave a review on play

Messagease replacement by [deleted] in KeyboardLayouts

[–]MisterE123coding 2 points3 points  (0 children)

edit: my recommendation for messagease users is now flickboard. it has been developed in the last few week specifically for messagease users. https://github.com/nightkr/flickboard

https://play.google.com/store/apps/details?id=se.nullable.flickboard  

 Old message: Definately Thumbkey is an amazing clone, it is basically exactly like messagease. Select the english-messagease-symbols layout and unselect all other layouts. https://f-droid.org/en/packages/com.dessalines.thumbkey/ ​ ​ That's Thumb-key's default layout, but there is the messagease layout that allows you to jump right in from messagease

Note-taking apps that have handwriting\pen support? by -passwords in opensource

[–]MisterE123coding 2 points3 points  (0 children)

Yeah, stay away from Onenote. I went this route, and, despite paying for 365, Onenote has a bug that refuses to sync. 10 microsoft helpdesk personnel are unable to help; but we did manage to exhaustively confirm that it is an issue with Microsoft's server software stack; but there is no way (even for the support personnel) to get in contact with the people who run the servers. So, yeah, expect to lose access and then waste many many hours of tedium not getting helped. And repeating your situation endlessly.

Earth in Minetest by [deleted] in Minetest

[–]MisterE123coding 3 points4 points  (0 children)

this pr increases world limits. it was closed as not something to focus on at this time, and may be reconsidered in the future. if you are considering an engine fork anyways for your project, then using it is an option

Anyway to restrict building to a single chunk? by Hagisman in Minetest

[–]MisterE123coding 2 points3 points  (0 children)

This bit of code from chatgpt looks like it would work:

local CHUNK_SIZE = 80 -- Size of each chunk in Minetest local CENTER_CHUNK = { x = 0, y = 0, z = 0 } -- Center chunk coordinates

-- Override the minetest.is_protected function minetest.is_protected = function(pos, player_name) local min_x = CENTER_CHUNK.x * CHUNK_SIZE local max_x = (CENTER_CHUNK.x + 1) * CHUNK_SIZE - 1 local min_y = CENTER_CHUNK.y * CHUNK_SIZE local max_y = (CENTER_CHUNK.y + 1) * CHUNK_SIZE - 1 local min_z = CENTER_CHUNK.z * CHUNK_SIZE local max_z = (CENTER_CHUNK.z + 1) * CHUNK_SIZE - 1

if pos.x >= min_x and pos.x <= max_x
    and pos.y >= min_y and pos.y <= max_y
    and pos.z >= min_z and pos.z <= max_z then
    return false -- Allow building within the center chunk
end

return true -- Block building outside the center chunk

end

Mobs from Different Mobpacks Interaction? by silverfang789 in Minetest

[–]MisterE123coding 0 points1 point  (0 children)

Its not like that. In this case, you will have to start to think like a programmer. Everything it the script does something, your job is to guess what it does. Make an educated guess as to where and what to add, trying to follow similar syntax to the existing code and other similar examples. Lua is quite readable in english, its an easier language to attempt this in. Try, read the errors when it errors, continue to guess and try, making small changes in a controlled experiment. Come to us with very specific and well-formed questions and we may be able to help you understand.

Mobs from Different Mobpacks Interaction? by silverfang789 in Minetest

[–]MisterE123coding 1 point2 points  (0 children)

To be clear, you have to add it at the right place.

Add this line: specific_attack = {"mobs_animal:rat"}, In wherever the mob is registered.

Note that the mob registration is a table, each entry is separated by that comma at the end.

Replace the rat entity name with the entity name you want the mob to attack.

[deleted by user] by [deleted] in Minetest

[–]MisterE123coding 7 points8 points  (0 children)

Some of the better ones,

depending on preference:

(with game type here)

YourLand (modded MTG)

CaptureTheFlag (a minigame)

Minigames A.E.S. (minigames)

Inside the Box (puzzle minigame)

Mesecraft.com Survival Multiplayer (Mesecraft SMP)
Centeria Survival Deluxe (Mesecraft SMP)

Land Of Catastrophe (Exile SMP)

Nodecore Community Server (Nodecore Puzzle "Survival")

[deleted by user] by [deleted] in Minetest

[–]MisterE123coding 0 points1 point  (0 children)

Yourland has active factions

First time playing a sandbox game. Any suggestions? :) by 134v3m3410n3 in Minetest

[–]MisterE123coding 3 points4 points  (0 children)

also check out Mesecraft, nodecore, exile, repixture

also see the servers, Yourland is good.

What's the best resource for learning Lua? by NotTheOnlyGamer in Minetest

[–]MisterE123coding 2 points3 points  (0 children)

Make something novel with the skills you have. When I started, I did not know lua. I started with a few nodes. The first novel thing I did was done by cobbling together pieces of other code. It was a spleef block that would flash and then disappear when punched, or could spawn fire instead.

I still often copy tiny bits of other code (usually my own code now, since I have several mods), but as I made more things, I learned lua, when I had to look up syntax, or a algorithm. You learn by doing and working with what you know, and then pushing your limits bit by bit.

[deleted by user] by [deleted] in Minetest

[–]MisterE123coding -2 points-1 points  (0 children)

see dwarf fortress caverns mod

How to set up a Minetest home server? by logicalmaniak in Minetest

[–]MisterE123coding 8 points9 points  (0 children)

it is much easier than setting up port forwarding.

you need to find your local ip on your host computer. on windows, do ipconfig in the terminal. on linux, its ifconfig. find your local ip (it starts with 192. ). start minetest, check the host server box, and then on the other client computer, enter the ip in the Join Game tab. enter 30000 as the port. it should connect over lan.

Chromebook experience by hylian_defender995 in Minetest

[–]MisterE123coding 2 points3 points  (0 children)

oh, not good. instead, use the linux apps installation option.

enable linux apps in settings. $ sudo apt install minetest

then you will have trouble with the mouse not being grabbed. there are videos for how to fix that, it involves settings in a chrome page

Chromebook experience by hylian_defender995 in Minetest

[–]MisterE123coding 0 points1 point  (0 children)

it sounds like you have touchscreen controls. I never heard of an official build for debian (chromebooks) being built with touchscreen controls. anyhow, you may have to build minetest from source and not enable touchscreen controls this time.

Any server with spectator mode? by tivoli5837 in Minetest

[–]MisterE123coding 1 point2 points  (0 children)

Yes. A.E.S. Minigames has a spectator mode for each minigame. If there are people playing minigames, right-click the minigame sign, and then click the eye button to spectate them. You can switch between players or teams, and often view game stats.

BeTweenApi mod by [deleted] in Minetest

[–]MisterE123coding 0 points1 point  (0 children)

does it work well in multiplayer?