This commit is contained in:
Xeno333 2024-11-17 23:57:28 -06:00
parent 811a821224
commit a4679a87b6
4 changed files with 15 additions and 3 deletions

View File

@ -28,11 +28,12 @@ We Hope you enjoy playing it and all feedback is welcome!
- Some sounds
- Basic mobs (Fish and pigs, as of last update)
- Basic smelting and crafting recipies.
- Working hardcore mode.
- Crafting of items
## Planned
- Add moddable mapgen API
- Crafting of items
- More trees and plants
- Add More sounds and music
- More general gameplay
@ -42,7 +43,6 @@ We Hope you enjoy playing it and all feedback is welcome!
#### pre-alpha v0.1.0 to alpha v0.2.0 goals
- Add more trees and plants, flowers maybe.
- Add sounds
- Add pvp physics and more weapons (Bow and club)
- Add lootable structures

View File

@ -16,4 +16,5 @@
- Add proper multiplayer weather system -Xeno333
- Improve UI add new function to core_1042 -Xeno333
- Add cooking and improve food API -Xeno333
- Add aux1 uses via _1042_on_use -Xeno333
- Add aux1 uses via _1042_on_use -Xeno333
- Add sounds and hardcore setting -Xeno333

View File

@ -22,6 +22,13 @@ if core.features.hotbar_hud_element ~= true then
end
end
if core.settings:get("1042_enable_hardcore") == "true" then
core.register_on_dieplayer(function(player, reason)
local name = player:get_player_name()
core.kick_player(name, "You died in 1042 while playing in hardcore mode.", false)
core.ban_player(name)
end)
end
-- key = {single_player, value}
local required_settings = {

View File

@ -6,6 +6,10 @@
# Recomended for novice players
1042_auto_adjust_settings (Automaticly adjust settings) bool false
# Hardcore Mode
#
# Not recomended for novice players
1042_enable_hardcore (Enable Hardcore Mode) bool false
[Server settings]