Initial commit

master
mr-draxs 2022-08-26 21:59:39 -03:00
commit b23ac86276
5 changed files with 43 additions and 0 deletions

23
LICENSE.txt Normal file
View File

@ -0,0 +1,23 @@
License for Code
----------------
Copyright (C) 2010-2013 MrDraxs <guilhermedoctormaster@gmail.com>
This program 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 program 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 program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
License for Textures, Models and Sounds
---------------------------------------
CC-BY-SA 3.0 UNPORTED. Created by Your Name

11
README.txt Normal file
View File

@ -0,0 +1,11 @@
this mod adds autoclimb to minetest.
this mod is licensed under the LGPL 2.1.
mod version 0.1.
download the mod from contentdb and put/install the mod in the mod folder or download the mod using minetest integraded content downlaoder in the game.
dependencies = default.
report bugs/help in element.io (@mrdraxs:matrix.org).

1
description.txt Normal file
View File

@ -0,0 +1 @@
this mod adds the ability for the player to autoclimb by changing the stepheight variable in the basegame from less than 1.1 to 1.1.

5
init.lua Normal file
View File

@ -0,0 +1,5 @@
minetest.register_globalstep(function()
for _, player in pairs(minetest.get_connected_players()) do
player:set_properties({stepheight = 1.1})
end
end)

3
mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = autoclimb
description = Adds autoclimb, idea by mrdraxs and code by ( FatalError, once again seasoned ) and ( ElCeejo ).
depends = default