README, depends.txt and init.lua (empty)

master
Ben Deutsch 2017-07-31 23:08:21 +02:00
parent acfd042b81
commit c04ea822ab
3 changed files with 69 additions and 2 deletions

View File

@ -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

0
depends.txt Normal file
View File

29
init.lua Normal file
View File

@ -0,0 +1,29 @@
--[[
Cloud control [cloudcontrol]
==========================
A simple mod to control your own clouds.
Copyright (C) 2015 Ben Deutsch <ben@bendeutsch.de>
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
]]