From c04ea822ab9385882b87708950db20408f576c9d Mon Sep 17 00:00:00 2001 From: Ben Deutsch Date: Mon, 31 Jul 2017 23:08:21 +0200 Subject: [PATCH] README, depends.txt and init.lua (empty) --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++-- depends.txt | 0 init.lua | 29 +++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 depends.txt create mode 100644 init.lua diff --git a/README.md b/README.md index 8c3d5de..9e95841 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,40 @@ -# minetest-cloudcontrol -Simple cloud control mod for Minetest +# Cloud control [cloudcontrol] + +Simple cloud control mod for Minetest. + +Version: 0.1.0 + +License: + Code: LGPL 2.1 (see included LICENSE file) + +Report bugs or request help on the forum topic. + +## Description + +This mod aims to replace the original `cloud_height` client configuration +setting. Since the introduction of the Lua API for clouds, the only use +case of this setting is when the player cares about their clouds, but the +server does not. This mod aims to cover this use case. + +For single player games, just install this mod, and configure your clouds +to your heart's desire. For servers, ask the server administrators to +install this mod; it only allows players to set their own clouds (which is +a client-only effect anyway), everyone else can ignore it. + +## Dependencies +* A recent enough client and server with the clouds Lua API (0.4.16 and up) +* No dependencies on mods + +## Installation + +Unzip the archive, rename the folder to to `cloudcontrol` if it is named +differently and place it in `minetest/mods/` + +( Linux: If you have a linux system-wide installation place + it in `~/.minetest/mods/.` ) + +( If you only want this to be used in a single world, place + the folder in worldmods/ in your worlddirectory. ) + +For further information or help see: +http://wiki.minetest.com/wiki/Installing_Mods diff --git a/depends.txt b/depends.txt new file mode 100644 index 0000000..e69de29 diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..ff61ff8 --- /dev/null +++ b/init.lua @@ -0,0 +1,29 @@ +--[[ + +Cloud control [cloudcontrol] +========================== + +A simple mod to control your own clouds. + +Copyright (C) 2015 Ben Deutsch + +License +------- + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 +USA + +]] +