diff --git a/nonamegame/game.conf b/nonamegame/game.conf deleted file mode 100644 index a8df02d..0000000 --- a/nonamegame/game.conf +++ /dev/null @@ -1,2 +0,0 @@ -name = Noname Game - diff --git a/nonamegame/menu/background-ld.png b/nonamegame/menu/background-ld.png deleted file mode 100644 index bce0cac..0000000 Binary files a/nonamegame/menu/background-ld.png and /dev/null differ diff --git a/nonamegame/menu/icon-ld.png b/nonamegame/menu/icon-ld.png deleted file mode 100644 index 9756679..0000000 Binary files a/nonamegame/menu/icon-ld.png and /dev/null differ diff --git a/nonamegame/menu/icon.PNG b/nonamegame/menu/icon.PNG deleted file mode 100644 index 20b5310..0000000 Binary files a/nonamegame/menu/icon.PNG and /dev/null differ diff --git a/nonamegame/mods/default/commands.lua b/nonamegame/mods/default/commands.lua deleted file mode 100644 index d5dbe13..0000000 --- a/nonamegame/mods/default/commands.lua +++ /dev/null @@ -1,14 +0,0 @@ --- HP: Die HP des Spielers festlegen ---minetest.register_chatcommand("hp", { --- func = function(name, hp) --- local player = minetest.get_player_by_name(name) --- if player then --- if hp == "" then --- minetest.chat_send_player(name, "Bitte gebe einen Parameter an.") --- end --- if name then --- player:set_hp(tonumber(hp)) --- end --- end --- end ---}) diff --git a/nonamegame/mods/default/init.lua b/nonamegame/mods/default/init.lua deleted file mode 100644 index b38bab5..0000000 --- a/nonamegame/mods/default/init.lua +++ /dev/null @@ -1,6 +0,0 @@ -local default_path = minetest.get_modpath("default") - -dofile(default_path.."/commands.lua") -dofile(default_path.."/nodes.lua") -dofile(default_path.."/items.lua") -dofile(default_path.."/void.lua") diff --git a/nonamegame/mods/default/items.lua b/nonamegame/mods/default/items.lua deleted file mode 100644 index 4ee972b..0000000 --- a/nonamegame/mods/default/items.lua +++ /dev/null @@ -1,6 +0,0 @@ --- Stock ---minetest.register_craftitem("default:stick", { --- description = "Stock", --- inventory_image = "default_stick.png", --- on_use = minetest.item_eat(20) ---}) \ No newline at end of file diff --git a/nonamegame/mods/default/mod.conf b/nonamegame/mods/default/mod.conf deleted file mode 100644 index 6a53c38..0000000 --- a/nonamegame/mods/default/mod.conf +++ /dev/null @@ -1,2 +0,0 @@ -name = default -description = Minimal default, adds basic nodes, items, Entities and Commands diff --git a/nonamegame/mods/default/nodes.lua b/nonamegame/mods/default/nodes.lua deleted file mode 100644 index 254745a..0000000 --- a/nonamegame/mods/default/nodes.lua +++ /dev/null @@ -1,69 +0,0 @@ --- Stein -minetest.register_node("default:stone", { - description = "Stein", - tiles = {"default_stone.png"}, - is_ground_content = true, - drop = "", - groups = {dig_immediate=3} -}) - --- Holz -minetest.register_node("default:wood", { - description = "Holzbretter", - paramtype2 = "facedir", - place_param2 = 0, - tiles = {"default_wood.png"}, - drop = "", - groups = {dig_immediate=3} -}) - --- Erde -minetest.register_node("default:dirt", { - description = "Simple Erde", - tiles = {"default_dirt.png"}, - drop = "", - groups = {dig_immediate=3} -}) - --- Erde mit Gras -minetest.register_node("default:dirt_with_grass", { - description = "Erde mit Gras", - tiles = {"default_grass.png", "default_dirt.png", {name = "default_dirt.png^default_grass_side.png", tileable_vertical = false}}, - drop = "", - groups = {dig_immediate=3} -}) - --- kaputte Truhe -minetest.register_node("default:nonworking_chest", { - description = "kaputte Truhe", - drop = "", - groups = {dig_immediate=3}, - tiles = { - "default_wood.png", - "default_wood.png", - "default_wood.png", - "default_wood.png", - "default_wood.png", - "default_wood.png" - }, - drawtype = "nodebox", - paramtype = "light", - node_box = { - type = "fixed", - fixed = { - {-0.4375, -0.5, -0.4375, 0.4375, 0.125, 0.4375}, -- Unterseite - {-0.4375, 0.125, -0.4375, 0.4375, 0.4375, 0.4375}, -- Oberseite - {0.4375, 0, -0.0625, 0.5, 0.3125, 0.125}, -- Griff - } - }, -}) - --- Meseblock -minetest.register_node("default:meseblock", { - description = 'Wertvolles Stück "Gold"', - tiles = {"default_mese.png"}, - light_source = 6, - is_ground_content = false, - drop = "", - groups = {dig_immediate=3} -}) \ No newline at end of file diff --git a/nonamegame/mods/default/textures/bubble.png b/nonamegame/mods/default/textures/bubble.png deleted file mode 100644 index 3bca7e1..0000000 Binary files a/nonamegame/mods/default/textures/bubble.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/crack_anylength.png b/nonamegame/mods/default/textures/crack_anylength.png deleted file mode 100644 index d9b49f9..0000000 Binary files a/nonamegame/mods/default/textures/crack_anylength.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_apple.png b/nonamegame/mods/default/textures/default_apple.png deleted file mode 100644 index 4473dca..0000000 Binary files a/nonamegame/mods/default/textures/default_apple.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_book.png b/nonamegame/mods/default/textures/default_book.png deleted file mode 100644 index ea14a37..0000000 Binary files a/nonamegame/mods/default/textures/default_book.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_bookshelf.png b/nonamegame/mods/default/textures/default_bookshelf.png deleted file mode 100644 index f225e34..0000000 Binary files a/nonamegame/mods/default/textures/default_bookshelf.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_brick.png b/nonamegame/mods/default/textures/default_brick.png deleted file mode 100644 index def1cf0..0000000 Binary files a/nonamegame/mods/default/textures/default_brick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_cactus_side.png b/nonamegame/mods/default/textures/default_cactus_side.png deleted file mode 100644 index 128a4d2..0000000 Binary files a/nonamegame/mods/default/textures/default_cactus_side.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_cactus_top.png b/nonamegame/mods/default/textures/default_cactus_top.png deleted file mode 100644 index eda1a0b..0000000 Binary files a/nonamegame/mods/default/textures/default_cactus_top.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_chest.png b/nonamegame/mods/default/textures/default_chest.png deleted file mode 100644 index 9746a3f..0000000 Binary files a/nonamegame/mods/default/textures/default_chest.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_clay.png b/nonamegame/mods/default/textures/default_clay.png deleted file mode 100644 index 070b69e..0000000 Binary files a/nonamegame/mods/default/textures/default_clay.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_clay_brick.png b/nonamegame/mods/default/textures/default_clay_brick.png deleted file mode 100644 index e25633b..0000000 Binary files a/nonamegame/mods/default/textures/default_clay_brick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_clay_lump.png b/nonamegame/mods/default/textures/default_clay_lump.png deleted file mode 100644 index ceed6fa..0000000 Binary files a/nonamegame/mods/default/textures/default_clay_lump.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_cloud.png b/nonamegame/mods/default/textures/default_cloud.png deleted file mode 100644 index faf0ec1..0000000 Binary files a/nonamegame/mods/default/textures/default_cloud.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_coal_lump.png b/nonamegame/mods/default/textures/default_coal_lump.png deleted file mode 100644 index dae47e3..0000000 Binary files a/nonamegame/mods/default/textures/default_coal_lump.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_cobble.png b/nonamegame/mods/default/textures/default_cobble.png deleted file mode 100644 index 2a28d25..0000000 Binary files a/nonamegame/mods/default/textures/default_cobble.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_dirt.png b/nonamegame/mods/default/textures/default_dirt.png deleted file mode 100644 index 7cb9c89..0000000 Binary files a/nonamegame/mods/default/textures/default_dirt.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_fence.png b/nonamegame/mods/default/textures/default_fence.png deleted file mode 100644 index e3510c5..0000000 Binary files a/nonamegame/mods/default/textures/default_fence.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_furnace_fire_bg.png b/nonamegame/mods/default/textures/default_furnace_fire_bg.png deleted file mode 100644 index e3370f4..0000000 Binary files a/nonamegame/mods/default/textures/default_furnace_fire_bg.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_furnace_fire_fg.png b/nonamegame/mods/default/textures/default_furnace_fire_fg.png deleted file mode 100644 index 7a126e3..0000000 Binary files a/nonamegame/mods/default/textures/default_furnace_fire_fg.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_furnace_front.png b/nonamegame/mods/default/textures/default_furnace_front.png deleted file mode 100644 index 4da398c..0000000 Binary files a/nonamegame/mods/default/textures/default_furnace_front.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_furnace_front_active.png b/nonamegame/mods/default/textures/default_furnace_front_active.png deleted file mode 100644 index 06c4ab3..0000000 Binary files a/nonamegame/mods/default/textures/default_furnace_front_active.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_furnace_side.png b/nonamegame/mods/default/textures/default_furnace_side.png deleted file mode 100644 index c729de9..0000000 Binary files a/nonamegame/mods/default/textures/default_furnace_side.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_glass.png b/nonamegame/mods/default/textures/default_glass.png deleted file mode 100644 index fd665a4..0000000 Binary files a/nonamegame/mods/default/textures/default_glass.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_grass.png b/nonamegame/mods/default/textures/default_grass.png deleted file mode 100644 index 1d76708..0000000 Binary files a/nonamegame/mods/default/textures/default_grass.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_grass_footsteps.png b/nonamegame/mods/default/textures/default_grass_footsteps.png deleted file mode 100644 index 8349033..0000000 Binary files a/nonamegame/mods/default/textures/default_grass_footsteps.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_grass_side.png b/nonamegame/mods/default/textures/default_grass_side.png deleted file mode 100644 index 4f4f680..0000000 Binary files a/nonamegame/mods/default/textures/default_grass_side.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_gravel.png b/nonamegame/mods/default/textures/default_gravel.png deleted file mode 100644 index 4b47e23..0000000 Binary files a/nonamegame/mods/default/textures/default_gravel.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_iron_lump.png b/nonamegame/mods/default/textures/default_iron_lump.png deleted file mode 100644 index 6b515f6..0000000 Binary files a/nonamegame/mods/default/textures/default_iron_lump.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_junglegrass.png b/nonamegame/mods/default/textures/default_junglegrass.png deleted file mode 100644 index 7066f7d..0000000 Binary files a/nonamegame/mods/default/textures/default_junglegrass.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_ladder.png b/nonamegame/mods/default/textures/default_ladder.png deleted file mode 100644 index 46757b8..0000000 Binary files a/nonamegame/mods/default/textures/default_ladder.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_lava.png b/nonamegame/mods/default/textures/default_lava.png deleted file mode 100644 index a4cf649..0000000 Binary files a/nonamegame/mods/default/textures/default_lava.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_lava_flowing_animated.png b/nonamegame/mods/default/textures/default_lava_flowing_animated.png deleted file mode 100644 index 0bbd136..0000000 Binary files a/nonamegame/mods/default/textures/default_lava_flowing_animated.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_lava_source_animated.png b/nonamegame/mods/default/textures/default_lava_source_animated.png deleted file mode 100644 index 54f4c0d..0000000 Binary files a/nonamegame/mods/default/textures/default_lava_source_animated.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_leaves.png b/nonamegame/mods/default/textures/default_leaves.png deleted file mode 100644 index 00ce447..0000000 Binary files a/nonamegame/mods/default/textures/default_leaves.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_mese.png b/nonamegame/mods/default/textures/default_mese.png deleted file mode 100644 index 123f0f4..0000000 Binary files a/nonamegame/mods/default/textures/default_mese.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_mineral_coal.png b/nonamegame/mods/default/textures/default_mineral_coal.png deleted file mode 100644 index 0f52062..0000000 Binary files a/nonamegame/mods/default/textures/default_mineral_coal.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_mineral_iron.png b/nonamegame/mods/default/textures/default_mineral_iron.png deleted file mode 100644 index 6c894ce..0000000 Binary files a/nonamegame/mods/default/textures/default_mineral_iron.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_mossycobble.png b/nonamegame/mods/default/textures/default_mossycobble.png deleted file mode 100644 index 5082953..0000000 Binary files a/nonamegame/mods/default/textures/default_mossycobble.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_nc_back.png b/nonamegame/mods/default/textures/default_nc_back.png deleted file mode 100644 index e479ace..0000000 Binary files a/nonamegame/mods/default/textures/default_nc_back.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_nc_front.png b/nonamegame/mods/default/textures/default_nc_front.png deleted file mode 100644 index c9dd6a3..0000000 Binary files a/nonamegame/mods/default/textures/default_nc_front.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_nc_rb.png b/nonamegame/mods/default/textures/default_nc_rb.png deleted file mode 100644 index 685a22c..0000000 Binary files a/nonamegame/mods/default/textures/default_nc_rb.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_nc_side.png b/nonamegame/mods/default/textures/default_nc_side.png deleted file mode 100644 index bc85427..0000000 Binary files a/nonamegame/mods/default/textures/default_nc_side.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_paper.png b/nonamegame/mods/default/textures/default_paper.png deleted file mode 100644 index 3c31f77..0000000 Binary files a/nonamegame/mods/default/textures/default_paper.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_papyrus.png b/nonamegame/mods/default/textures/default_papyrus.png deleted file mode 100644 index 3707e40..0000000 Binary files a/nonamegame/mods/default/textures/default_papyrus.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_rail.png b/nonamegame/mods/default/textures/default_rail.png deleted file mode 100644 index 777e10c..0000000 Binary files a/nonamegame/mods/default/textures/default_rail.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_rail_crossing.png b/nonamegame/mods/default/textures/default_rail_crossing.png deleted file mode 100644 index a988c47..0000000 Binary files a/nonamegame/mods/default/textures/default_rail_crossing.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_rail_curved.png b/nonamegame/mods/default/textures/default_rail_curved.png deleted file mode 100644 index f87e826..0000000 Binary files a/nonamegame/mods/default/textures/default_rail_curved.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_rail_t_junction.png b/nonamegame/mods/default/textures/default_rail_t_junction.png deleted file mode 100644 index fd25b5b..0000000 Binary files a/nonamegame/mods/default/textures/default_rail_t_junction.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_river_water.png b/nonamegame/mods/default/textures/default_river_water.png deleted file mode 100644 index 3b55c5f..0000000 Binary files a/nonamegame/mods/default/textures/default_river_water.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_sand.png b/nonamegame/mods/default/textures/default_sand.png deleted file mode 100644 index 1a56cc7..0000000 Binary files a/nonamegame/mods/default/textures/default_sand.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_sandstone.png b/nonamegame/mods/default/textures/default_sandstone.png deleted file mode 100644 index bd9cb86..0000000 Binary files a/nonamegame/mods/default/textures/default_sandstone.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_sapling.png b/nonamegame/mods/default/textures/default_sapling.png deleted file mode 100644 index 9360232..0000000 Binary files a/nonamegame/mods/default/textures/default_sapling.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_scorched_stuff.png b/nonamegame/mods/default/textures/default_scorched_stuff.png deleted file mode 100644 index c7efc7e..0000000 Binary files a/nonamegame/mods/default/textures/default_scorched_stuff.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_sign_wall.png b/nonamegame/mods/default/textures/default_sign_wall.png deleted file mode 100644 index 93c075a..0000000 Binary files a/nonamegame/mods/default/textures/default_sign_wall.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_steel_block.png b/nonamegame/mods/default/textures/default_steel_block.png deleted file mode 100644 index 9c0a0e2..0000000 Binary files a/nonamegame/mods/default/textures/default_steel_block.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_steel_ingot.png b/nonamegame/mods/default/textures/default_steel_ingot.png deleted file mode 100644 index ad133bc..0000000 Binary files a/nonamegame/mods/default/textures/default_steel_ingot.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_stick.png b/nonamegame/mods/default/textures/default_stick.png deleted file mode 100644 index 055a6ac..0000000 Binary files a/nonamegame/mods/default/textures/default_stick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_stone.png b/nonamegame/mods/default/textures/default_stone.png deleted file mode 100644 index a835fe0..0000000 Binary files a/nonamegame/mods/default/textures/default_stone.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tnt_bottom.png b/nonamegame/mods/default/textures/default_tnt_bottom.png deleted file mode 100644 index 4eda060..0000000 Binary files a/nonamegame/mods/default/textures/default_tnt_bottom.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tnt_side.png b/nonamegame/mods/default/textures/default_tnt_side.png deleted file mode 100644 index c259726..0000000 Binary files a/nonamegame/mods/default/textures/default_tnt_side.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tnt_top.png b/nonamegame/mods/default/textures/default_tnt_top.png deleted file mode 100644 index a031a34..0000000 Binary files a/nonamegame/mods/default/textures/default_tnt_top.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_mesepick.png b/nonamegame/mods/default/textures/default_tool_mesepick.png deleted file mode 100644 index 2b5e12c..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_mesepick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_steelaxe.png b/nonamegame/mods/default/textures/default_tool_steelaxe.png deleted file mode 100644 index fae19dd..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_steelaxe.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_steelpick.png b/nonamegame/mods/default/textures/default_tool_steelpick.png deleted file mode 100644 index 3a8f586..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_steelpick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_steelshovel.png b/nonamegame/mods/default/textures/default_tool_steelshovel.png deleted file mode 100644 index d5b1bc6..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_steelshovel.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_steelsword.png b/nonamegame/mods/default/textures/default_tool_steelsword.png deleted file mode 100644 index efc61a0..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_steelsword.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_stoneaxe.png b/nonamegame/mods/default/textures/default_tool_stoneaxe.png deleted file mode 100644 index 532e16f..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_stoneaxe.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_stonepick.png b/nonamegame/mods/default/textures/default_tool_stonepick.png deleted file mode 100644 index d9156ee..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_stonepick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_stoneshovel.png b/nonamegame/mods/default/textures/default_tool_stoneshovel.png deleted file mode 100644 index 7bbd2d4..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_stoneshovel.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_stonesword.png b/nonamegame/mods/default/textures/default_tool_stonesword.png deleted file mode 100644 index 533b873..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_stonesword.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_woodaxe.png b/nonamegame/mods/default/textures/default_tool_woodaxe.png deleted file mode 100644 index 6e70f4a..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_woodaxe.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_woodpick.png b/nonamegame/mods/default/textures/default_tool_woodpick.png deleted file mode 100644 index 15c61f4..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_woodpick.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_woodshovel.png b/nonamegame/mods/default/textures/default_tool_woodshovel.png deleted file mode 100644 index e0b3608..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_woodshovel.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tool_woodsword.png b/nonamegame/mods/default/textures/default_tool_woodsword.png deleted file mode 100644 index 8099af1..0000000 Binary files a/nonamegame/mods/default/textures/default_tool_woodsword.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_torch.png b/nonamegame/mods/default/textures/default_torch.png deleted file mode 100644 index 21d98bd..0000000 Binary files a/nonamegame/mods/default/textures/default_torch.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_torch_on_ceiling.png b/nonamegame/mods/default/textures/default_torch_on_ceiling.png deleted file mode 100644 index dccd380..0000000 Binary files a/nonamegame/mods/default/textures/default_torch_on_ceiling.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_torch_on_floor.png b/nonamegame/mods/default/textures/default_torch_on_floor.png deleted file mode 100644 index c220107..0000000 Binary files a/nonamegame/mods/default/textures/default_torch_on_floor.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tree.png b/nonamegame/mods/default/textures/default_tree.png deleted file mode 100644 index 65abfc2..0000000 Binary files a/nonamegame/mods/default/textures/default_tree.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_tree_top.png b/nonamegame/mods/default/textures/default_tree_top.png deleted file mode 100644 index 3e6bd52..0000000 Binary files a/nonamegame/mods/default/textures/default_tree_top.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_water.png b/nonamegame/mods/default/textures/default_water.png deleted file mode 100644 index 3e385ae..0000000 Binary files a/nonamegame/mods/default/textures/default_water.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/default_wood.png b/nonamegame/mods/default/textures/default_wood.png deleted file mode 100644 index 57c1d7c..0000000 Binary files a/nonamegame/mods/default/textures/default_wood.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/heart.png b/nonamegame/mods/default/textures/heart.png deleted file mode 100644 index c25f43b..0000000 Binary files a/nonamegame/mods/default/textures/heart.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/player.png b/nonamegame/mods/default/textures/player.png deleted file mode 100644 index cf5d83f..0000000 Binary files a/nonamegame/mods/default/textures/player.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/player_back.png b/nonamegame/mods/default/textures/player_back.png deleted file mode 100644 index d498674..0000000 Binary files a/nonamegame/mods/default/textures/player_back.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/treeprop.png b/nonamegame/mods/default/textures/treeprop.png deleted file mode 100644 index eb8a8e6..0000000 Binary files a/nonamegame/mods/default/textures/treeprop.png and /dev/null differ diff --git a/nonamegame/mods/default/textures/wieldhand.png b/nonamegame/mods/default/textures/wieldhand.png deleted file mode 100644 index dbed6ad..0000000 Binary files a/nonamegame/mods/default/textures/wieldhand.png and /dev/null differ diff --git a/nonamegame/mods/default/void.lua b/nonamegame/mods/default/void.lua deleted file mode 100644 index a8a1fd6..0000000 --- a/nonamegame/mods/default/void.lua +++ /dev/null @@ -1,24 +0,0 @@ -local voidtimer = 0 - -minetest.register_globalstep(function(dtime) - voidtimer = voidtimer + dtime - if voidtimer > 0.5 then - voidtimer = 0 - local objs = minetest.object_refs - for id, obj in pairs(objs) do - local pos = obj:get_pos() - if pos.y < -10 then - minetest.set_node({ x = 1, y = 0, z = 0 }, { name = "default:stone" }) - minetest.set_node({ x = -1, y = 0, z = 0 }, { name = "default:stone" }) - minetest.set_node({ x = 1, y = 0, z = 1 }, { name = "default:stone" }) - minetest.set_node({ x = -1, y = 0, z = 1 }, { name = "default:stone" }) - minetest.set_node({ x = 1, y = 0, z = -1 }, { name = "default:stone" }) - minetest.set_node({ x = -1, y = 0, z = -1 }, { name = "default:stone" }) - minetest.set_node({ x = 0, y = 0, z = 1 }, { name = "default:stone" }) - minetest.set_node({ x = 0, y = 0, z = -1 }, { name = "default:stone" }) - minetest.set_node({ x = 0, y = 0, z = 0 }, { name = "default:meseblock" }) - obj:set_pos({ x = 0, y = 5, z = 0 }) - end - end - end -end) diff --git a/nonamegame/mods/do_initial_stuff/init.lua b/nonamegame/mods/do_initial_stuff/init.lua deleted file mode 100644 index 6dec280..0000000 --- a/nonamegame/mods/do_initial_stuff/init.lua +++ /dev/null @@ -1,27 +0,0 @@ -function minetest.item_drop(itemstack, dropper, pos) - return itemstack -end - - -minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack) - return true -end) - - -minetest.register_on_newplayer(function(player) - player:setpos({ x = 0, y = 5, z = 0 }) --- player:get_inventory():add_item('main', 'default:stick') - player:get_inventory():add_item('main', 'default:stone') - player:get_inventory():add_item('main', 'default:meseblock') - player:get_inventory():add_item('main', 'default:wood') - player:get_inventory():add_item('main', 'default:dirt') - player:get_inventory():add_item('main', 'default:dirt_with_grass') --- player:get_inventory():add_item('main', 'default:chest') - minetest.chat_send_player("singleplayer", "Du hast Startitems bekommen!") - - local privs = minetest.get_player_privs(player:get_player_name()) - privs.interact = true - privs.fly = true - privs.fast = true - minetest.set_player_privs(player:get_player_name(), privs) -end) diff --git a/nonamegame/mods/do_initial_stuff/mod.conf b/nonamegame/mods/do_initial_stuff/mod.conf deleted file mode 100644 index ea28988..0000000 --- a/nonamegame/mods/do_initial_stuff/mod.conf +++ /dev/null @@ -1,3 +0,0 @@ -name = do_initial_stuff -description = Runs commands on player registration -depends = default diff --git a/nonamegame/mods/do_initial_stuff/textures/splash.png b/nonamegame/mods/do_initial_stuff/textures/splash.png deleted file mode 100644 index 24aa4a3..0000000 Binary files a/nonamegame/mods/do_initial_stuff/textures/splash.png and /dev/null differ diff --git a/nonamegame/mods/do_initial_stuff/textures/splash.xcf b/nonamegame/mods/do_initial_stuff/textures/splash.xcf deleted file mode 100644 index 8803d20..0000000 Binary files a/nonamegame/mods/do_initial_stuff/textures/splash.xcf and /dev/null differ