work in progress farming system
Before Width: | Height: | Size: 143 B After Width: | Height: | Size: 143 B |
Before Width: | Height: | Size: 231 B After Width: | Height: | Size: 231 B |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 769 B |
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 610 B After Width: | Height: | Size: 610 B |
Before Width: | Height: | Size: 882 B After Width: | Height: | Size: 882 B |
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 769 B |
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 769 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 182 B |
3
extras/LogoSkyBlock/readme.txt
Normal file
@ -0,0 +1,3 @@
|
||||
This folder contains the original automation mods used on my previously hosted LogoSkyBlock server.
|
||||
|
||||
Updated versions of these can be found in Atvomat.
|
Before Width: | Height: | Size: 869 B After Width: | Height: | Size: 869 B |
BIN
extras/i.png
Before Width: | Height: | Size: 262 KiB |
Before Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 392 B |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 392 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 3.0 KiB |
@ -1 +0,0 @@
|
||||
Allows changing your sky to unimaginably epic scenes.
|
@ -1,115 +0,0 @@
|
||||
|
||||
--[[
|
||||
|
||||
Copyright (C) 2015 - Auke Kok <sofar@foo-projects.org>
|
||||
|
||||
"crops" 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.
|
||||
|
||||
--]]
|
||||
|
||||
--
|
||||
-- Builtin sky box textures and color/shadings
|
||||
--
|
||||
|
||||
local skies = {
|
||||
{"DarkStormy", "#1f2226", 0.5},
|
||||
{"CloudyLightRays", "#5f5f5e", 0.9},
|
||||
{"FullMoon", "#24292c", 0.2},
|
||||
{"SunSet", "#72624d", 0.4},
|
||||
{"ThickCloudsWater", "#a57850", 0.8},
|
||||
{"TropicalSunnyDay", "#f1f4ee", 1.0},
|
||||
{"test", "#72624d", 0.4},
|
||||
}
|
||||
|
||||
--
|
||||
-- API
|
||||
--
|
||||
|
||||
skybox = {}
|
||||
|
||||
skybox.set = function(player, number)
|
||||
local sky = skies[number]
|
||||
player:override_day_night_ratio(sky[3])
|
||||
player:set_sky(sky[2], "skybox", {
|
||||
sky[1] .. "Up.jpg",
|
||||
sky[1] .. "Down.jpg",
|
||||
sky[1] .. "Front.jpg",
|
||||
sky[1] .. "Back.jpg",
|
||||
sky[1] .. "Left.jpg",
|
||||
sky[1] .. "Right.jpg",
|
||||
})
|
||||
player:set_attribute("skybox:skybox", sky[1])
|
||||
end
|
||||
|
||||
skybox.add = function(def)
|
||||
table.add(skies, def)
|
||||
end
|
||||
|
||||
skybox.clear = function(player)
|
||||
player:override_day_night_ratio(nil)
|
||||
player:set_sky("white", "regular")
|
||||
player:set_attribute("skybox:skybox", "off")
|
||||
end
|
||||
|
||||
--
|
||||
-- registrations and load/save code
|
||||
--
|
||||
|
||||
minetest.register_on_joinplayer(function(player)
|
||||
local sky = player:get_attribute("skybox:skybox")
|
||||
print(dump(sky))
|
||||
if not sky or sky == "" then
|
||||
skybox.clear(player)
|
||||
else
|
||||
print(dump(skies))
|
||||
for k, v in ipairs(skies) do
|
||||
print(dump(v))
|
||||
if sky == v[1] then
|
||||
skybox.set(player, k)
|
||||
return
|
||||
end
|
||||
end
|
||||
skybox.clear(player)
|
||||
end
|
||||
end)
|
||||
|
||||
minetest.register_privilege("skybox", {
|
||||
description = "Change sky box for yourself",
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("skybox", {
|
||||
params = "<skybox> or <number> or \"off\" or empty to list skyboxes",
|
||||
description = "Change your sky box set",
|
||||
privs = "skybox",
|
||||
func = function(name, param)
|
||||
local player = minetest.get_player_by_name(name)
|
||||
if not player then
|
||||
return
|
||||
end
|
||||
if param == nil or param == "" then
|
||||
minetest.chat_send_player(name, "Available sky boxes:")
|
||||
for _, v in ipairs(skies) do
|
||||
minetest.chat_send_player(name,
|
||||
v[1])
|
||||
end
|
||||
return
|
||||
elseif tonumber(param) ~= nil and tonumber(param) >= 1 and tonumber(param) <= table.getn(skies) then
|
||||
skybox.set(player, tonumber(param))
|
||||
return
|
||||
elseif param == "off" then
|
||||
skybox.clear(player)
|
||||
return
|
||||
end
|
||||
for k, v in ipairs(skies) do
|
||||
if v[1] == param then
|
||||
skybox.set(player, k)
|
||||
return
|
||||
end
|
||||
end
|
||||
minetest.chat_send_player(name,
|
||||
"Could not find that sky box.")
|
||||
end
|
||||
})
|
@ -1 +0,0 @@
|
||||
name = skybox
|
@ -1,42 +0,0 @@
|
||||
|
||||
## skybox - a player skybox mod (and API!)
|
||||
|
||||
### License of code and artwork
|
||||
|
||||
Copyright (C) 2017 - Auke Kok <sofar@foo-projects.org>
|
||||
|
||||
Provides a basic API for modifying a player sky box in a coherent
|
||||
fashion.
|
||||
|
||||
SkyboxSet by Heiko Irrgang ( http://gamvas.com ) is licensed under
|
||||
the Creative Commons Attribution-ShareAlike 3.0 Unported License.
|
||||
Based on a work at http://93i.de.
|
||||
|
||||
### Usage
|
||||
|
||||
The `skybox` privilege allows players to change their own sky boxes.
|
||||
The command allows listing, and changing skyboxes, or turning skybox
|
||||
settings `off`.
|
||||
|
||||
### API
|
||||
|
||||
The `skybox` handle can be used to perform various actions:
|
||||
|
||||
`skybox.clear(player)`
|
||||
-- Reverts the player skybox setting to the default.
|
||||
|
||||
`skybox.set(player, number)`
|
||||
-- Sets the skybox to the `number` in the list of current skyboxes.
|
||||
|
||||
`skybox.add(skyboxdef)`
|
||||
-- Add a new skybox with skyboxdef to the list of available skyboxes.
|
||||
|
||||
|
||||
```
|
||||
skyboxdef = {
|
||||
[1] -- Base name of texture. The 6 textures you need to
|
||||
-- provide need to start with this value, and then
|
||||
-- have "Up", "Down", "Front", "Back", "Left" and
|
||||
-- "Right", Followed by ".jpg" as the file name.
|
||||
[2] -- Sky color (colorstring)
|
||||
[3] -- Day/Night ratio value (float - [0.0, 1.0])
|
Before Width: | Height: | Size: 804 KiB |
Before Width: | Height: | Size: 540 KiB |
Before Width: | Height: | Size: 671 KiB |
Before Width: | Height: | Size: 880 KiB |
Before Width: | Height: | Size: 494 KiB |
Before Width: | Height: | Size: 519 KiB |
Before Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 173 KiB |
Before Width: | Height: | Size: 193 KiB |
Before Width: | Height: | Size: 266 KiB |
Before Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 343 KiB |
Before Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 318 KiB |
Before Width: | Height: | Size: 913 KiB |
Before Width: | Height: | Size: 2.3 MiB |
Before Width: | Height: | Size: 456 KiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 451 KiB |
Before Width: | Height: | Size: 2.0 MiB |
Before Width: | Height: | Size: 260 KiB |
Before Width: | Height: | Size: 2.4 MiB |
@ -1,8 +0,0 @@
|
||||
SkyboxSet by Heiko Irrgang ( http://gamvas.com ) is licensed under
|
||||
the Creative Commons Attribution-ShareAlike 3.0 Unported License.
|
||||
Based on a work at http://93i.de.
|
||||
|
||||
To view a copy of this license, visit
|
||||
http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to
|
||||
Creative Commons, 444 Castro Street, Suite 900, Mountain View,
|
||||
California, 94041, USA.
|
@ -1,16 +0,0 @@
|
||||
You may use this textures for free in games, even commercial.
|
||||
|
||||
See LICENSE.txt for details.
|
||||
|
||||
Please also have a look on my other projects:
|
||||
|
||||
Gamvas - a HTML5 game engine for the canvas element
|
||||
|
||||
http://gamvas.com
|
||||
|
||||
Brukkon - a puzzle game using the skybox textures
|
||||
|
||||
http://93i.de/cms/products/games/brukkon
|
||||
|
||||
Kind Regards,
|
||||
Heiko Irrgang <hi@93-interactive.com>
|
Before Width: | Height: | Size: 218 KiB |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 220 KiB |
Before Width: | Height: | Size: 366 KiB |
Before Width: | Height: | Size: 222 KiB |
Before Width: | Height: | Size: 288 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 786 KiB |
Before Width: | Height: | Size: 1009 KiB |
Before Width: | Height: | Size: 1006 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 686 KiB |
Before Width: | Height: | Size: 166 KiB |
Before Width: | Height: | Size: 590 KiB |
Before Width: | Height: | Size: 554 KiB |
Before Width: | Height: | Size: 586 KiB |
Before Width: | Height: | Size: 505 KiB |
Before Width: | Height: | Size: 7.2 MiB |
Before Width: | Height: | Size: 5.1 MiB |
Before Width: | Height: | Size: 6.8 MiB |
Before Width: | Height: | Size: 5.5 MiB |
Before Width: | Height: | Size: 7.6 MiB |
Before Width: | Height: | Size: 811 KiB |
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 826 KiB |
Before Width: | Height: | Size: 329 KiB |
Before Width: | Height: | Size: 217 KiB |
Before Width: | Height: | Size: 264 KiB |
@ -1,153 +0,0 @@
|
||||
Farming Redo Mod
|
||||
by TenPlus1
|
||||
|
||||
https://forum.minetest.net/viewtopic.php?id=9019
|
||||
|
||||
Farming Redo is a simplified version of the built-in farming mod in minetest and comes with wheat, cotton, carrot, cucumber, potato and tomato to start out with which spawn throughout the map... new foods need only be planted on tilled soil so no seeds are required, original wheat and cotton will require seeds which are found inside normal and jungle grass...
|
||||
|
||||
This mod works by adding your new plant to the {growing=1} group and numbering the stages from _1 to as many stages as you like, but the underscore MUST be used only once in the node name to separate plant from stage number e.g.
|
||||
|
||||
"farming:cotton_1" through to "farming:cotton_8"
|
||||
"farming:wheat_1" through to "farming:wheat_8"
|
||||
"farming:cucumber_4" through to "farming:cucumber_4"
|
||||
|
||||
Changelog:
|
||||
|
||||
1.23 - Huge code tweak and tidy done and added barley seeds to be found in dry grass, barley can make flour for bread also.
|
||||
1.22 - Added grape bushes at high climates which can be cultivated into grape vines using trellis (9 sticks).
|
||||
1.21 - Added auto-refill code for planting crops (thanks crabman77), also fixed a few bugs
|
||||
1.20b- Tidied code, made api compatible with new 0.4.13 changes and changed to soil texture overlays
|
||||
1.20 - NEW growing routine added that allows crops to grow while player is away doing other things (thanks prestidigitator)
|
||||
1.14 - Added Green Beans from Crops mod (thanks sofar), little bushels in the wild but need to be grown using beanpoles crafted with 4 sticks (2 either side)
|
||||
1.13 - Fixed seed double-placement glitch. Mapgen now uses 0.4.12+ for plant generation
|
||||
1.12 - Player cannot place seeds in protected area, also growing speeds changed to match defaults
|
||||
1.11 - Added Straw Bale, streamlined growing abm a little, fixed melon rotation bug with screwdriver
|
||||
1.10 - Added Blueberry Bush and Blueberry Muffins, also Pumpkin/Melon easier to pick up, added check for unloaded map
|
||||
1.09 - Corn now uses single nodes instead of 1 ontop of the other, Ethanol recipe is more expensive (requires 5 corn) and some code cleanup.
|
||||
1.08 - Added Farming Plus compatibility, plus can be removed and no more missing nodes
|
||||
1.07 - Added Rhubarb and Rhubarb Pie
|
||||
1.06 - register_hoe and register_plant added for compatibility with default farming mod, although any plants registered will use farming redo to grow
|
||||
1.05 - Added Raspberry Bushels and Raspberry Smoothie
|
||||
1.04 - Added Donuts... normal, chocolate and apple... and a few code cleanups and now compatible with jungletree's from MoreTrees mod
|
||||
1.03 - Bug fixes and more compatibility as drop-in replacement for built-in farming mod
|
||||
1.02 - Added farming.mod string to help other mods identify which farming mod is running, if it returns "redo" then you're using this one, "" empty is built-in mod
|
||||
1.01 - Crafting coffee or ethanol returns empty bucket/bottle, also Cocoa spawns a little rarer
|
||||
1.0 - Added Cocoa which randomly grows on jungle tree's, pods give cocoa beans which can be used to farm more pods on a jungle trunk or make Cookies which have been added (or other treats)
|
||||
0.9 - Added Pumpkin, Jack 'O Lantern, Pumpkin Slice and Sugar
|
||||
(a huge thanks to painterly.net for allowing me to use their textures)
|
||||
0.8 - Added Watermelon and Melon Slice
|
||||
0.7 - Added Coffee, Coffee Beans, Drinking Cup, Cold and Hot Cup of Coffee
|
||||
0.6 - Added Corn, Corn on the Cob... Also reworked Abm
|
||||
0.5 - Added Carrot, Cucumber, Potato (and Baked Potato), Tomato
|
||||
0.4 - Checks for Protection, also performance changes
|
||||
0.3 - Added Diamond and Mese hoe
|
||||
0.2 - Fixed check for wet soil
|
||||
0.1 - Fixed growing bug
|
||||
0.0 - Initial release
|
||||
|
||||
Lucky Blocks: 10 (plus 3 for default farming items)
|
||||
|
||||
|
||||
License of media (textures):
|
||||
----------------------------
|
||||
Created by PilzAdam (License: WTFPL):
|
||||
farming_bread.png
|
||||
farming_soil.png
|
||||
farming_soil_wet.png
|
||||
farming_soil_wet_side.png
|
||||
farming_string.png
|
||||
|
||||
Created by Calinou (License: CC BY-SA):
|
||||
farming_tool_bronzehoe.png
|
||||
farming_tool_steelhoe.png
|
||||
farming_tool_stonehoe.png
|
||||
farming_tool_woodhoe.png
|
||||
farming_tool_mesehoe.png
|
||||
farming_tool_diamondhoe.png
|
||||
|
||||
Created by VanessaE (License: WTFPL):
|
||||
farming_cotton_seed.png
|
||||
farming_wheat_seed.png
|
||||
farming_flour.png
|
||||
farming_wheat.png
|
||||
farming_wheat_1.png
|
||||
farming_wheat_2.png
|
||||
farming_wheat_3.png
|
||||
farming_wheat_4.png
|
||||
farming_wheat_5.png
|
||||
farming_wheat_5.png
|
||||
farming_wheat_7.png
|
||||
farming_wheat_8.png
|
||||
farming_cotton_1.png
|
||||
farming_cotton_2.png
|
||||
farming_cotton_3.png
|
||||
farming_cotton_4.png
|
||||
farming_cotton_5.png
|
||||
farming_cotton_6.png
|
||||
farming_cotton_7.png
|
||||
farming_cotton_8.png
|
||||
|
||||
Created by Doc (License: WTFPL):
|
||||
farming_cucumber.png
|
||||
farming_cucumber_1.png
|
||||
farming_cucumber_2.png
|
||||
farming_cucumber_3.png
|
||||
farming_cucumber_4.png
|
||||
farming_potato.png
|
||||
farming_potato_1.png
|
||||
farming_potato_2.png
|
||||
farming_potato_3.png
|
||||
farming_potato_4.png
|
||||
farming_raspberries.png
|
||||
farming_raspberry_1.png
|
||||
farming_raspberry_2.png
|
||||
farming_raspberry_3.png
|
||||
farming_raspberry_4.png
|
||||
|
||||
Created by Gambit:
|
||||
default_junglegrass.png
|
||||
farming_carrot.png
|
||||
farming_carrot_1.png
|
||||
farming_carrot_2.png
|
||||
farming_carrot_3.png
|
||||
farming_carrot_4.png
|
||||
farming_carrot_5.png
|
||||
farming_carrot_6.png
|
||||
farming_carrot_7.png
|
||||
farming_carrot_8.png
|
||||
|
||||
Created by JoseTheCrafter and edited by TenPlus1:
|
||||
farming_tomato.png
|
||||
farming_tomato_1.png
|
||||
farming_tomato_2.png
|
||||
farming_tomato_3.png
|
||||
farming_tomato_4.png
|
||||
farming_tomato_5.png
|
||||
farming_tomato_6.png
|
||||
farming_tomato_7.png
|
||||
farming_tomato_8.png
|
||||
|
||||
Created by GeMinecraft and edited by TenPlus1:
|
||||
farming_corn.png
|
||||
farming_corn_cob.png
|
||||
farming_corn_1.png
|
||||
farming_corn_2.png
|
||||
farming_corn_3.png
|
||||
farming_corn_4.png
|
||||
farming_corn_5.png
|
||||
farming_corn_6.png
|
||||
farming_corn_7.png
|
||||
farming_corn_8.png
|
||||
|
||||
Created by TenPlus1
|
||||
farming_cocoa_1.png
|
||||
farming_cocoa_2.png
|
||||
farming_cocoa_3.png
|
||||
farming_cocoa_beans.png
|
||||
farming_cookie.png
|
||||
farming_raspberry_smoothie.png
|
||||
farming_rhubarb_1.png
|
||||
farming_rhubarb_2.png
|
||||
farming_rhubarb_3.png
|
||||
farming_rhubarb.png
|
||||
farming_rhubarb_pie.png
|