(hopefully) Final changes

This commit is contained in:
Functioning Member of Society 2022-11-21 19:54:35 -05:00
parent 40b29be85f
commit 8c838a9dde
2 changed files with 23 additions and 18 deletions

View File

@ -1,5 +1,5 @@
title = Shitting Simulator title = Shitting Simulator
description = A game where you shit on the floor and put your feces in boxes. description = A game where you shit on the floor and put your feces in boxes.
allowed_mapgens = singlenode allowed_mapgens = singlenode
disabled_settings = enable_damage disabled_settings = !enable_damage, creative_mode, enable_server
author = kacperks, Looki2000, Kacperek, and MCL author = kacperks, Looki2000, Kacperek, and MCL

View File

@ -25,7 +25,7 @@ function you_win(player)
} }
minetest.show_formspec(player:get_player_name(), "poop:story", table.concat(storyFormspec, "")) minetest.show_formspec(player:get_player_name(), "poop:story", table.concat(storyFormspec, ""))
end end
--[[
minetest.register_item(":", { -- Hand minetest.register_item(":", { -- Hand
type = "none", type = "none",
wield_image = "Poop.png", wield_image = "Poop.png",
@ -45,32 +45,32 @@ tool_capabilities = {
}, },
damage_groups = {fleshy = 3, snappy = 2}, damage_groups = {fleshy = 3, snappy = 2},
} }
}) })]]
minetest.register_on_player_receive_fields(function(player, formname, fields) minetest.register_on_player_receive_fields(function(player, formname, fields)
if formname ~= "story:story_formspec" then if formname ~= "poop:cutscene" then
return return
end end
if formname == "story:story_formspec" then if formname == "poop:cutscene" then
if fields.next then if fields.next then
if currentPage >= 4 then if currentPage >= 4 then
minetest.close_formspec(player:get_player_name(), "story:story_formspec") minetest.close_formspec(player:get_player_name(), "poop:cutscene")
-- teleport player to 10 9.5 18 -- teleport player to 10 9.5 18
player:setpos({x=15,y=21,z=15}) player:setpos({x=15,y=21,z=15})
return return
end end
currentPage = currentPage + 1 currentPage = currentPage + 1
minetest.show_formspec(player:get_player_name(), "story:story_formspec", table.concat(getStoryFormspec(currentPage), "\n")) minetest.show_formspec(player:get_player_name(), "poop:cutscene", table.concat(getStoryFormspec(currentPage), "\n"))
elseif fields.back and currentPage >= 0 then elseif fields.back and currentPage >= 0 then
currentPage = currentPage - 1 currentPage = currentPage - 1
minetest.show_formspec(player:get_player_name(), "story:story_formspec", table.concat(getStoryFormspec(currentPage), "\n")) minetest.show_formspec(player:get_player_name(), "poop:cutscene", table.concat(getStoryFormspec(currentPage), "\n"))
elseif fields.exit then elseif fields.exit then
minetest.kick_player(player:get_player_name(), "") minetest.kick_player(player:get_player_name(), "")
elseif fields.quit then elseif fields.quit then
minetest.after(0.2, function() minetest.show_formspec(player:get_player_name(), "story:story_formspec", table.concat(getStoryFormspec(currentPage), "\n")) end) minetest.after(0.2, function() minetest.show_formspec(player:get_player_name(), "poop:cutscene", table.concat(getStoryFormspec(currentPage), "\n")) end)
end end
end end
end) end)
@ -102,17 +102,24 @@ is_game_started = false
is_game_finished = false is_game_finished = false
minetest.register_on_newplayer(function(ObjectRef) minetest.register_on_newplayer(function(ObjectRef)
minetest.set_node({x = 32, y = 12, z = 34}, {name = "poop:floor"})
ObjectRef:set_pos({x = 32, y = 13, z = 34})
--minetest.after(1, function()
minetest.place_schematic({x = 0, y = 0, z = 0}, minetest.get_modpath("poop") .. "/map.mts", "0", nil, true) minetest.place_schematic({x = 0, y = 0, z = 0}, minetest.get_modpath("poop") .. "/map.mts", "0", nil, true)
ObjectRef:set_pos({x = 15, y = 31, z = 15}) minetest.fix_light({x = 0, y = 0, z = 0}, {x = 100, y = 100, z = 100})--)
minetest.fix_light({x = 0, y = 0, z = 0}, {x = 100, y = 100, z = 100})
end) end)
function ending() function ending()
end end
function begining() function beginning()
minetest.place_schematic({x = 0, y = 0, z = 0}, minetest.get_modpath("poop") .. "/map.mts", "0", nil, true)
minetest.fix_light({x = 0, y = 0, z = 0}, {x = 100, y = 100, z = 100})
end end
destruction_counter = {} destruction_counter = {}
@ -468,9 +475,8 @@ minetest.register_craftitem("poop:pooper", {
}) })
minetest.register_on_joinplayer(function(player) minetest.register_on_joinplayer(function(player)
-- teleport to 0,0,0
player:setpos({x=0, y=0, z=0}) minetest.show_formspec(player:get_player_name(), "poop:cutscene", table.concat(getStoryFormspec(1), "\n"))
minetest.show_formspec(player:get_player_name(), "story:story_formspec", table.concat(getStoryFormspec(1), "\n"))
player:get_inventory():set_list("main", {}) player:get_inventory():set_list("main", {})
-- set time to day -- set time to day
minetest.set_timeofday(0.5) minetest.set_timeofday(0.5)
@ -486,5 +492,4 @@ minetest.register_on_joinplayer(function(player)
minetest.setting_set("time_speed", 0) minetest.setting_set("time_speed", 0)
minetest.set_timeofday(0) minetest.set_timeofday(0)
begining()
end) end)