(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
description = A game where you shit on the floor and put your feces in boxes.
allowed_mapgens = singlenode
disabled_settings = enable_damage
disabled_settings = !enable_damage, creative_mode, enable_server
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, ""))
end
--[[
minetest.register_item(":", { -- Hand
type = "none",
wield_image = "Poop.png",
@ -45,32 +45,32 @@ tool_capabilities = {
},
damage_groups = {fleshy = 3, snappy = 2},
}
})
})]]
minetest.register_on_player_receive_fields(function(player, formname, fields)
if formname ~= "story:story_formspec" then
if formname ~= "poop:cutscene" then
return
end
if formname == "story:story_formspec" then
if formname == "poop:cutscene" then
if fields.next 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
player:setpos({x=15,y=21,z=15})
return
end
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
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
minetest.kick_player(player:get_player_name(), "")
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)
@ -102,17 +102,24 @@ is_game_started = false
is_game_finished = false
minetest.register_on_newplayer(function(ObjectRef)
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.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.fix_light({x = 0, y = 0, z = 0}, {x = 100, y = 100, z = 100})--)
end)
function ending()
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
destruction_counter = {}
@ -468,9 +475,8 @@ minetest.register_craftitem("poop:pooper", {
})
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(), "story:story_formspec", table.concat(getStoryFormspec(1), "\n"))
minetest.show_formspec(player:get_player_name(), "poop:cutscene", table.concat(getStoryFormspec(1), "\n"))
player:get_inventory():set_list("main", {})
-- set time to day
minetest.set_timeofday(0.5)
@ -486,5 +492,4 @@ minetest.register_on_joinplayer(function(player)
minetest.setting_set("time_speed", 0)
minetest.set_timeofday(0)
begining()
end)