Minetest - Education Version

alanpt
New member
 
Posts: 6
Joined: Tue Jun 10, 2014 02:00
In-game: alanpt

Minetest - Education Version

by alanpt » Tue Jun 10, 2014 02:12

Hello there. I use Minetest in classes and holiday programmes I run. But I always have to start each session with these three rules:
* Don't use Water, Lava or Fire blocks
* No punching
* No chatting

I know. I'm mean, but I think the most fun comes when we collaborate and build things together.
I would like to create a full modification/Game that disables those functions but also allows a non-destructive road block and fence that only the admin/server host can create. That also prevents stacking above it (still allow tunnels).

With those changes in place, this will be perfect for my use. This is a serious project for me and I won't stop till I can get it working like this. Minetest has far more potential than Minecraft Education does.

So can I have some help/tips to point me in the right direction for this. Thanks
 

User avatar
stormchaser3000
Member
 
Posts: 407
Joined: Sun Oct 06, 2013 21:02

Re: Minetest - Education Version

by stormchaser3000 » Tue Jun 10, 2014 06:46

do you all use windows or mac or linux or bsd or what operating system?
 

User avatar
Topywo
Member
 
Posts: 1718
Joined: Fri May 18, 2012 20:27

Re: Minetest - Education Version

by Topywo » Tue Jun 10, 2014 08:41

There might be/probably are better/different methods, but to kick off:

-- Water and lava --> (re)move the bucket mod from games/minetest_game/mods
-- Fire --> (re)move the fire mod from games/minetest_game/mods or remove the word fire out of the flammable blocks their groups. Example:

minetest.register_node("default:junglewood", {
description = "Junglewood Planks",
tiles = {"default_junglewood.png"},
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
sounds = default.node_sound_wood_defaults(),
})


-- Punching --> In the file minetest.conf.example you'll find these lines:
# Whether to enable players killing each other
#enable_pvp = true
I don't think it will prevent punching, since that has also other uses, but should prevent killing. Copy/paste this:
enable_pvp = false in your file minetest.conf

-- Chatting --> In the file minetest.conf.example you'll find this line:
#default_privs = interact, shout
Copy/paste the following line, without shout, in your minetest.conf file:
default_privs = interact

-- Indesctructible blocks --> Create a new node or change an old one, which has no 'breaking' words in its groups. So no words like choppy, oddly_breakable_by_hand, cracky and crumbly)

-- That only the administrator can create --> The administrator normally has all the privs, including the giveme priv. You can remove the line 'description' under the minetest.register_node code, so it isn't visible in creative, while you can still give it yourself.

There's also this mod admin tools, from Calinou, that might be useful for you: viewtopic.php?f=11&t=1882&hilit=admin
 

User avatar
Wuzzy
Member
 
Posts: 2161
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy

Re: Minetest - Education Version

by Wuzzy » Tue Jun 10, 2014 09:28

Topywo, two of your alternative solutions are not best solutions as well. :P

Topywo wrote:-- Indesctructible blocks --> Create a new node or change an old one, which has no 'breaking' words in its groups. So no words like choppy, oddly_breakable_by_hand, cracky and crumbly)

The node may still be damaged by other events somehow where you don’t expect it. Indesctructible nodes should be added to the group “immortal” with value 1. This is a special group which disables the damage system for the node. I think this is the most elegant solution.

Topywo wrote:That only the administrator can create --> The administrator normally has all the privs, including the giveme priv. You can remove the line 'description' under the minetest.register_node code, so it isn't visible in creative, while you can still give it yourself.

This is pretty hacky and it is pointless to remove the description. Much more elegant is adding the node to the group “not_in_creative_inventory” with value 1. Creativity mods ought to expude all members of this group. Also the privilege is called “give”, not “giveme”. :P

Further reading:
Minetest community wiki on privileges
Minetest developer wiki on groups (It is a bit outdated …)
 

User avatar
Topywo
Member
 
Posts: 1718
Joined: Fri May 18, 2012 20:27

Re: Minetest - Education Version

by Topywo » Tue Jun 10, 2014 09:45

Wuzzy wrote:Indesctructible nodes should be added to the group “immortal” with value 1. This is a special group which disables the damage system for the node. I think this is the most elegant solution.

Much more elegant is adding the node to the group “not_in_creative_inventory” with value 1. Creativity mods ought to expude all members of this group.

Also the privilege is called “give”, not “giveme”. :P



True, true and true, sloppy me...

P.s. alanpt, ingame you can use the command /help to see the available commands
 

alanpt
New member
 
Posts: 6
Joined: Tue Jun 10, 2014 02:00
In-game: alanpt

Re: Minetest - Education Version

by alanpt » Tue Jun 10, 2014 10:52

Thank you for your help stormchaser3000, Topywo and Wuzzy. I am running on Windows Stormchaser3000.

Is it best I just modify a build and upload it with adjustments for others to download, or are these adjustments best done (or able to be done) within a mod? Does hosting with these modified settings override client settings?

The indestructible block would be for laying out paths, when recreating locations or defining neighbourhoods. I don't mind the students digging tunnels under or even building from two blocks above. So tunnels and garages can be built. Just not concealing them by directly placing on the blocks.

I'll get to work on this in the next couple of days,
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

Re: Minetest - Education Version

by sfan5 » Tue Jun 10, 2014 13:41

alanpt wrote:Is it best I just modify a build and upload it with adjustments for others to download, or are these adjustments best done (or able to be done) within a mod? Does hosting with these modified settings override client settings?

Any changes you do to the settings or Lua code on the server will apply to all clients.
More technical explanation: When the client connects to the server it downloads all game data (including textures), this means clients could even connect without having any subgames or textures for those installed.
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

User avatar
stormchaser3000
Member
 
Posts: 407
Joined: Sun Oct 06, 2013 21:02

Re: Minetest - Education Version

by stormchaser3000 » Tue Jun 10, 2014 16:03

alanpt wrote:Thank you for your help stormchaser3000, Topywo and Wuzzy. I am running on Windows Stormchaser3000.

Is it best I just modify a build and upload it with adjustments for others to download, or are these adjustments best done (or able to be done) within a mod? Does hosting with these modified settings override client settings?

The indestructible block would be for laying out paths, when recreating locations or defining neighbourhoods. I don't mind the students digging tunnels under or even building from two blocks above. So tunnels and garages can be built. Just not concealing them by directly placing on the blocks.

I'll get to work on this in the next couple of days,


ok um so now time for me to attempt to get rid of the chat system and then ask sfan5 or another person that makes windows builds to compile it.
 

User avatar
Topywo
Member
 
Posts: 1718
Joined: Fri May 18, 2012 20:27

Re: Minetest - Education Version

by Topywo » Tue Jun 10, 2014 17:04

alanpt wrote:Just not concealing them by directly placing on the blocks.

I'll get to work on this in the next couple of days,


Maybe a protector block mod will suit this purpose (you probably can change the reach of the protection/and also the texture):

viewtopic.php?f=11&t=4212&p=143126#p143126

There are some more protection mods, just look in the mod releases (there are also links to those mods in the games and server threads of this server).


Edit: just some text
Last edited by Topywo on Tue Jun 10, 2014 17:05, edited 2 times in total.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

Re: Minetest - Education Version

by Jordach » Tue Jun 10, 2014 17:04

stormchaser3000 wrote:
alanpt wrote:Thank you for your help stormchaser3000, Topywo and Wuzzy. I am running on Windows Stormchaser3000.

Is it best I just modify a build and upload it with adjustments for others to download, or are these adjustments best done (or able to be done) within a mod? Does hosting with these modified settings override client settings?

The indestructible block would be for laying out paths, when recreating locations or defining neighbourhoods. I don't mind the students digging tunnels under or even building from two blocks above. So tunnels and garages can be built. Just not concealing them by directly placing on the blocks.

I'll get to work on this in the next couple of days,


ok um so now time for me to attempt to get rid of the chat system and then ask sfan5 or another person that makes windows builds to compile it.

You can simply remove chat by simply revoking the users shout priv.

Then to make sure that sticks;

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
default_privs = interact


Which means putting that into the minetest.conf.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

alanpt
New member
 
Posts: 6
Joined: Tue Jun 10, 2014 02:00
In-game: alanpt

Re: Minetest - Education Version

by alanpt » Thu Jun 12, 2014 01:51

Modifying it as a game has been incredibly easy. In one hour I had accomplished most of what I had wanted. I am definitely going to show my club members how to make their own game mods.

Besides myself the main users are teachers, who generally don't have a high knowledge in coding, so I need to have either gui buttons or the most used commands displayed on the command/chat window.

I just need to implement:
  • Disable chat
  • Admin/Host - Show LAN IP Address
  • Admin/Host - Show main admin commands //pos1 /teleport etc
 

User avatar
stormchaser3000
Member
 
Posts: 407
Joined: Sun Oct 06, 2013 21:02

Re: Minetest - Education Version

by stormchaser3000 » Thu Jun 12, 2014 04:49

alanpt wrote:Modifying it as a game has been incredibly easy. In one hour I had accomplished most of what I had wanted. I am definitely going to show my club members how to make their own game mods.

Besides myself the main users are teachers, who generally don't have a high knowledge in coding, so I need to have either gui buttons or the most used commands displayed on the command/chat window.

I just need to implement:
  • Disable chat
  • Admin/Host - Show LAN IP Address
  • Admin/Host - Show main admin commands //pos1 /teleport etc


worldedit: https://forum.minetest.net/viewtopic.php?id=572

sethome: https://forum.minetest.net/viewtopic.php?id=741


and then to disable the students ability to chat ingame:

go into the world folder: /(minetest folder)/worlds/(worldname)/
then delete the auth.txt
then exit out of the folder and go to the minetest folder and then open minetest.conf in notepad (if you have notepad intalled other wies use word pad) and ten make a new line at the bottom and put:

default_privs = interact

then save the file and then open the lan server and have your students connect. they won't be able to use the chat

as for the showing the lan ip..... that hasn't been added yet but someone could add it mabey
 

alanpt
New member
 
Posts: 6
Joined: Tue Jun 10, 2014 02:00
In-game: alanpt

Re: Minetest - Education Version

by alanpt » Thu Jun 12, 2014 09:20

stormchaser3000 wrote:and then to disable the students ability to chat ingame:

go into the world folder: /(minetest folder)/worlds/(worldname)/
then delete the auth.txt
then exit out of the folder and go to the minetest folder and then open minetest.conf in notepad (if you have notepad intalled other wies use word pad) and ten make a new line at the bottom and put:

default_privs = interact

then save the file and then open the lan server and have your students connect. they won't be able to use the chat

as for the showing the lan ip..... that hasn't been added yet but someone could add it mabey


I would prefer to just make all the changes only within the Games folder if possible. This would make it more portable and easier to maintain. Am I right in assume that minecraft.conf can't be implemented within the Game folder?
 

Amaz
Member
 
Posts: 328
Joined: Wed May 08, 2013 08:26
GitHub: Amaz1
IRC: Amaz
In-game: Amaz

Re: Minetest - Education Version

by Amaz » Thu Jun 12, 2014 10:21

alanpt wrote:I would prefer to just make all the changes only within the Games folder if possible. This would make it more portable and easier to maintain. Am I right in assume that minecraft.conf can't be implemented within the Game folder?

Make a minetest.conf in the game folder, and then add the line default_privs = interact to it. It overwrites the default minetest.conf!
 

User avatar
PilzAdam
Member
 
Posts: 4026
Joined: Fri Jul 20, 2012 16:19
GitHub: PilzAdam
IRC: PilzAdam

Re: Minetest - Education Version

by PilzAdam » Thu Jun 12, 2014 11:11

Amaz wrote:
alanpt wrote:I would prefer to just make all the changes only within the Games folder if possible. This would make it more portable and easier to maintain. Am I right in assume that minecraft.conf can't be implemented within the Game folder?

Make a minetest.conf in the game folder, and then add the line default_privs = interact to it. It overwrites the default minetest.conf!

The minetest.conf of the user overrides the one from the game. But the game settings override the default values (not sure what you mean by "default minetest.conf").
 

Amaz
Member
 
Posts: 328
Joined: Wed May 08, 2013 08:26
GitHub: Amaz1
IRC: Amaz
In-game: Amaz

Re: Minetest - Education Version

by Amaz » Thu Jun 12, 2014 11:13

I meant the default values.
 

alanpt
New member
 
Posts: 6
Joined: Tue Jun 10, 2014 02:00
In-game: alanpt

Re: Minetest - Education Version

by alanpt » Thu Jun 12, 2014 11:33

This is what I have in my
Minetest\games\educationversion\minestest.conf

creative_mode = true
enable_damage = false
default_privs = interact
enable_pvp = false

Can someone please point me towards making gui buttons (or at least adding text) to the command/chat overlay?

Also is Lua Socket installed in Minetest, so I cna integrate this: http://forums.coronalabs.com/topic/2110 ... ua-socket/
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: Minetest - Education Version

by Krock » Fri Jun 13, 2014 12:20

alanpt wrote:Also is Lua Socket installed in Minetest, so I cna integrate this: http://forums.coronalabs.com/topic/2110 ... ua-socket/

Do it like in this IRC mod: (not Win16/32/64 compatible, yet)
viewtopic.php?id=3905
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

alanpt
New member
 
Posts: 6
Joined: Tue Jun 10, 2014 02:00
In-game: alanpt

Re: Minetest - Education Version

by alanpt » Sun Jun 15, 2014 11:51

Needs to be Windows compatible. That's at least what all NZ schools seem to run.
 

summercamp12
New member
 
Posts: 1
Joined: Wed Jan 13, 2016 11:14

Re: Minetest - Education Version

by summercamp12 » Wed Jan 13, 2016 11:28

I know. I'm mean, but I think the most fun comes when we collaborate and build things together.
I would like to create a full modification/Game that disables those functions but also allows a non-destructive road block and fence that only the admin/server host can create. That also prevents stacking above it (still allow tunnels).

With those changes in place, this will be perfect for my use. This is a serious project for me and I won't stop till I can get it working like this. Minetest has far more potential than Minecraft Education does.



Actually in my point of view you would prefer to change the folder if it is possible for you so it makes more easier to handle or maintain.
 

christoferlevich
Member
 
Posts: 55
Joined: Thu Dec 01, 2016 23:44

Re: Minetest - Education Version

by christoferlevich » Mon Dec 12, 2016 11:33

I guess this IS the Minetest Education community? I am currently ramping up a Minetest "mess" to start using in our Elementary Schools. Learning is easy and a lot of fun in the minetest community, even if it seems a little less than busy. I call it a mess because whatever we want to call the project I am working on, its definitely evolving.

I started with a model of the new school our district just built, and we are incorporating mods from others, and mods we've hacked (for lack of a better word).

We've messed with modified textures.
We've modified a currency mod (is that technically called a fork?) to deal with US Currency and we issue the currency based on in game goals as well as out-of-game goals that the teacher must reward (academic, behavioral, etc).
We are removing swords and weapons (both are obviously issues in public school) and modifying them to be virus defense tools, as we have also had to exclude monsters and thus we are re-inventing them in the form of viruses (teaching kids to avoid fishing scams, certain file types, websites, etc).
We have one in-game "game" designed by the kids so far, but it was a game made on paper that I designed in Minetest using simple messecon switches and the dice2 mod.

The point of all this is to demonstrate that if you are a school looking into Minetest, you aren't alone. Its very doable, but it takes a person like myself willing to immerse themselves into the system and really learn the ins and outs (not that I am there yet).

We should have our server up and running this week, so the 'world' will be open for inspection, suggestions, and criticism. Let me know if you're doing something similar. Colaborating would be awesome!

I am more than happy to help in any way I can. I'd share our US Currency mod but I haven't got a clue how to do that properly.

As an incentive, we are using items found in home decor mods in shops to get the kids to buy.

Image
 

User avatar
toby109tt
Member
 
Posts: 296
Joined: Sun May 29, 2016 23:42
GitHub: tobyplowy
In-game: Toby109tt

Re: Minetest - Education Version

by toby109tt » Mon Dec 12, 2016 17:10

christoferlevich wrote:I guess this IS the Minetest Education community? I am currently ramping up a Minetest "mess" to start using in our Elementary Schools. Learning is easy and a lot of fun in the minetest community, even if it seems a little less than busy. I call it a mess because whatever we want to call the project I am working on, its definitely evolving.

I started with a model of the new school our district just built, and we are incorporating mods from others, and mods we've hacked (for lack of a better word).

We've messed with modified textures.
We've modified a currency mod (is that technically called a fork?) to deal with US Currency and we issue the currency based on in game goals as well as out-of-game goals that the teacher must reward (academic, behavioral, etc).
We are removing swords and weapons (both are obviously issues in public school) and modifying them to be virus defense tools, as we have also had to exclude monsters and thus we are re-inventing them in the form of viruses (teaching kids to avoid fishing scams, certain file types, websites, etc).
We have one in-game "game" designed by the kids so far, but it was a game made on paper that I designed in Minetest using simple messecon switches and the dice2 mod.

The point of all this is to demonstrate that if you are a school looking into Minetest, you aren't alone. Its very doable, but it takes a person like myself willing to immerse themselves into the system and really learn the ins and outs (not that I am there yet).

We should have our server up and running this week, so the 'world' will be open for inspection, suggestions, and criticism. Let me know if you're doing something similar. Colaborating would be awesome!

I am more than happy to help in any way I can. I'd share our US Currency mod but I haven't got a clue how to do that properly.

As an incentive, we are using items found in home decor mods in shops to get the kids to buy.

Image

Nice screenshot you got There Must Have tekenen Ages to build that 0_o
( ͡° ͜ʖ ͡°) i love pixels and voxels ( ͡° ͜ʖ ͡°)
 

twoelk
Member
 
Posts: 1092
Joined: Fri Apr 19, 2013 16:19

Re: Minetest - Education Version

by twoelk » Tue Dec 13, 2016 10:36

Looks real well done christoferlevich. Don't hesitate to explain more details - please.
I added your post to the list of "Modelling Realworld Content" links in the http://wiki.minetest.net/Mods:Learning page.
 

christoferlevich
Member
 
Posts: 55
Joined: Thu Dec 01, 2016 23:44

Re: Minetest - Education Version

by christoferlevich » Fri Dec 23, 2016 11:35

As our project is growing, there are new ideas coming and lots of creation to be done. The first big thing has been to convert the idea of 'monsters' into 'viruses', and convert weapons into 'anti-virus' devices or avd's (using names inspired by computers in sci-fi literacy) to combat the 'viruses'. This has really been a matter of tweaking the weapons and textures, but it leads me to the next big step in forming a new educational mechanism within Minetest.

We would like to introduce a turn based combat system (formspec?) that will quiz the kids to cause damage to 'virus' that is impacted by the strength of their avd. For instance, when a student hits another student with an adv, it heals the opposing players health (again, in accordance to the level of the avd), but when they hit a 'virus' it brings up a screen much like the 'trader' screen, but instead of offering merchandise for trade, we want to force the student to solve simple questions to cause damage. The first general area we need to focus is simple math, then, perhaps, other forms of quizes (determined by avd) to cover English, social studies, etc.

We are hoping to find a way for the program to randomize the numbers used (for example, single digit addition, double and single digit addition, etc.) and interpret the students answers as true or false to determine the damage done to the virus until the virus is eradicated.

At the end of the battle, the virus should drop something of value (as the claim of the game narration will be that viruses steal blocks around the map, damaging structures as well as the enviroment.)

I know a lot of this is completely un-Minetest like, but if we can pull it together, I KNOW teachers will flock to the game.

Thus, if you've seen a mod like this and can share it, that would be great... if you have any suggestions or ideas, please share... any help at all is welcomed... in the meanwhile, I'm studying up on Lua till I can get it done.
 

christoferlevich
Member
 
Posts: 55
Joined: Thu Dec 01, 2016 23:44

Re: Minetest - Education Version

by christoferlevich » Thu Jan 05, 2017 21:46

So though it seems this forum is slow, I will post here anyway. I understand a Minetest Education Edition isn't all that exciting for hardcore players, but let me tell you, we are starting to really get the kids in our town excited about Minetest.

Over the last three days we have been testing the program (which I've been calling Minetest Education in an effort to shield the program from accusations of being just a game) with classes of 14 students at a time. It has quickly become a huge hit in our first elementary school and I am in the process of working up a version for our second elementary school.

I am running into some issues that I am working on but if anyone can assist on this one it would be highly appreciated.

Even though I have set the coordinates for the default spawn to bring the students to a specific spot players are continually spawning over a lake. On the plus side, every student now knows how to swim in MT with a keyboard (they all want touch screen or controller)... on the bad side, its a nice little hike to get to the starting point of what we are doing. It was almost too funny seeing students grades 1-4 just falling from the sky into a lake - lol. So I guess if anyone knows why this happens - it's something I would like to repair. :)
 

User avatar
rubenwardy
Member
 
Posts: 4500
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy

Re: Minetest - Education Version

by rubenwardy » Thu Jan 05, 2017 21:54

Have you definitely set static_spawnpoint correctly?

If you type /set static_spawnpoint in game, what does it say?
 

User avatar
TheReaperKing
Member
 
Posts: 493
Joined: Sun Nov 22, 2015 21:36

Re: Minetest - Education Version

by TheReaperKing » Fri Jan 06, 2017 00:30

Just FYI I am working on a educational version of Minetest for my students that I plan on releasing soon. I'd be very interested in ideas for things to change/add to it as well. So far I have survival and "HouseAndCityBuilder" modes and I might add a destruction.

Also, nice work on constructing your school :)
-Mike
Project Lead of the Doom 3 Mod Last Man Standing - http://Doom3Coop.com

Project Lead of Platinum Arts Sandbox Free 3D Game Maker - http://SandboxGameMaker.com

Youtube Channel - https://www.youtube.com/user/PlatinumArtsKids
 

User avatar
Alcyone
Member
 
Posts: 32
Joined: Mon Dec 12, 2016 18:47
IRC: Alcyone
In-game: Alcyone

Re: Minetest - Education Version

by Alcyone » Fri Jan 06, 2017 09:34

Hi christoferlevich !

You're probably right, most of the people are not interested in Minetest for an Education purpose but I think we should take care of it.

I sadly can't help you with your problems but I can tell you that there is a bug/problem part on this forum, post there and you surely will have a quick answer. You can also reach the IRC canal of Minetest, I always got help there knowing that not everyone check the forum regularly.

I already really appreciate to read all the forum post about Minetest for education, please keep it updated :) it will become a good source of inspiration and maybe create a network of teachers involved.

You're probably not the only one involved in your town. In my local hackerspace, there are 4/5 people playing Minetest and already 1 using it in an education purpose. We are thinking to create and Educational server through Mesecons, Pipeworks and Technic mods. You may find some other people not so far though :)
-- Alcyone --

Website with french articles on MT : alcyone.toile-libre.org
 

hajo
Member
 
Posts: 262
Joined: Thu Oct 13, 2016 10:45

Re: Minetest - Education Version

by hajo » Fri Jan 06, 2017 10:17

TheReaperKing wrote:Just FYI I am working on a educational version of Minetest for my students

What is the difference between a regular and an educational version of Minetest ?

I mean, beyond some admin-commands for world-control / herding students,
a simple one-button-startmenu (plus a tiny setup-button for the regular main-menu),
and maybe disabling potentially dangerous stuff, like lava, tnt etc. ?
Last edited by hajo on Fri Jan 06, 2017 14:39, edited 2 times in total.
Some of 'my' wiki-pages: Build-a-home - basic-robot - basic-machines - digtron
 

BirgitLachner
Member
 
Posts: 135
Joined: Thu May 05, 2016 10:18
In-game: Bibs

Re: Minetest - Education Version

by BirgitLachner » Fri Jan 06, 2017 13:32

I read with interessest all you ideas and informations. I'm a teacher from germany and started a page at the wiki for german teachers with informations about Minetest, how to use it and improve the possibilites with Mods and Mini-Games. And how to install a server on your own http://wiki.minetest.net/Minetest_in_der_Schule

Specially for younger children some features that are well known from MinecraftEDU should be added, like freeze, teleport all to at once and so on.
If you put such a mod with some usefull Mods together in a Minigame it would be at first the most simple possibility. But of cause the best would be, if you should not install a Mod/Minigame on you own but just need to install it and start it without the need of choosing Mods that are needed.
 

Next

Return to Minetest General

Who is online

Users browsing this forum: Google [Bot] and 73 guests

cron