Final version of release 0.2

This commit is contained in:
2022-11-22 15:54:42 -05:00
parent 71d289d98e
commit e5c3ae4ba0
5 changed files with 86 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ storyText[3] = "It didn't bother you much until last week when you were watching
storyText[4] = "The government started forcefully drafting people into the military."
storyText[5] = "You were among the first people to get their draft notice in the mail."
storyText[6] = "You were devastated when you realized that you'll be sent away to die in a war that doesn't even concern you."
storyText[7] = "\"I've got nothing to lose at this point, how about I teach those damn bastards a lesson.\", you thought to yourself."
storyText[7] = "\"I've got nothing to lose at this point, how about I teach them a lesson.\", you thought to yourself."
storyText[8] = "Click \"Next\" to generate the world."
story = {}
@@ -48,7 +48,7 @@ minetest.register_on_joinplayer(function(player)
player:get_inventory():add_item("main", "more_fire:pipebomb 48")
player:get_inventory():add_item("main", "more_fire:molotov_cocktail 48")
minetest.setting_set("time_speed", 0)
minetest.set_timeofday(.21)
minetest.set_timeofday(.2)
end)
@@ -58,9 +58,10 @@ minetest.register_on_newplayer(function(ObjectRef)
ObjectRef:set_pos({x = 180, y = 42, z = 145})
end)
minetest.register_on_respawnplayer(function(ObjectRef)
minetest.register_on_respawnplayer(function(player)
minetest.after(.1, function()
ObjectRef:set_pos({x = 180, y = 42, z = 145})
player:set_pos({x = 180, y = 42, z = 145})
end)
end)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB