[Mod] Temperature Survive 2.01 [tempsurvive]
Re: [Mod] Temperature Survive 2 [tempsurvive]
Would it be possible to make it so that when it gets cold, or something, it may give a notification like, "It's cold!", or, "I'm cold!", or something like that on screen so it may be harder to not notice you are freezing before you start to get hurt and you might know why you are getting hurt? Like maybe text that has the same color as the bar color. Like progressively maybe, like "I'm freezing!", or something. "I'm burning up!" I don't know anything about modding at this time, so I don't know if it would be possible. Thank you.
Re: [Mod] Temperature Survive 2 [tempsurvive]
I don't know much about modding and don't know if this would be hard to do but I may have some thoughts from trying to play with this mod. The first thing is it seems to be hard. If furnaces took longer to cook things then maybe they would stay on longer and might help out more. I was thinking if there could be something like insulated boots that I could make that would help me not get as cold if I were standing on something like ice or snow then that may make it easier to survive. I am still trying stuff out. Thank you for your time.
Also, if when I am getting really cold, instead or maybe in addition to the screen getting foggy, it may add some snowflake images on there then that may be interesting. Just an idea.
Also, if when I am getting really cold, instead or maybe in addition to the screen getting foggy, it may add some snowflake images on there then that may be interesting. Just an idea.
Re: [Mod] Temperature Survive 2 [tempsurvive]
Though, that being said, I may not know what the mod was exactly intended for, so yeah. Alrighty then.
- Inky_Bendy
- Member
- Posts: 19
- Joined: Wed Jan 15, 2020 21:22
- In-game: Inky_Bendy
Re: [Mod] Temperature Survive 2 [tempsurvive]
I have a problem: I just turned this mod on on my survival world, but my temperature keeps going up... and up... and I'm not even in a hot biome. It's a pain getting it down, as it takes like 3 times longer to get the bar to go down 1, than it takes for it to go up 1. Any thing I should know on how to cool down fast?
;
;
Re: [Mod] Temperature Survive 2 [tempsurvive]
I'm having a similiar issue as Inky.
- Inky_Bendy
- Member
- Posts: 19
- Joined: Wed Jan 15, 2020 21:22
- In-game: Inky_Bendy
Re: [Mod] Temperature Survive 2 [tempsurvive]
Makes me feel better.Winter94 wrote:I'm having a similiar issue as Inky.
I've also tried going into the code to change the time it takes for the bar to change, but that isn't really a solution as while it does slow down how fast my temperature rises, it also slows down how fast my temperature goes down too.
Re: [Mod] Temperature Survive 2 [tempsurvive]
I think the main issue is that mammals maintain homeostasis, that is to say, our internal temperatures are always trying to level back out to normal, and the code doesnt do that. you get hot, you stay hot until you are around something that cools you off.
There needs to be a cap to how much the environment can raise or lower your temperature, and there needs to be some code added to make you return to normal faster/more realistically.
I'd do it myself, but I'm very new to lua, and my coding skills are self-taught, so pretty much anything that I can do, anyone who has actually gone to school for programming can do 1000% better.
There needs to be a cap to how much the environment can raise or lower your temperature, and there needs to be some code added to make you return to normal faster/more realistically.
I'd do it myself, but I'm very new to lua, and my coding skills are self-taught, so pretty much anything that I can do, anyone who has actually gone to school for programming can do 1000% better.
Re: [Mod] Temperature Survive 2 [tempsurvive]
Yes,i am having the same issue too(minetest5.1.0).it really annoys me when this happens.Inky_Bendy wrote:I have a problem: I just turned this mod on on my survival world, but my temperature keeps going up... and up... and I'm not even in a hot biome. It's a pain getting it down, as it takes like 3 times longer to get the bar to go down 1, than it takes for it to go up 1. Any thing I should know on how to cool down fast?
;
NfAPhpmGaVphBjK8NIr9Mit5xNW2emD2
Re: [Mod] Temperature Survive 2 [tempsurvive]
File https://github.com/AiTechEye/tempsurviv ... ctions.lua
Function tempsurvive.get_bio_temperature, line 114.
Is this good? Or it should be
?
From other code it looks like only one return value is expected from this function.
Function tempsurvive.get_bio_temperature, line 114.
Code: Select all
return temp,temp+(l*0.1)
Code: Select all
return temp+(l*0.1)
From other code it looks like only one return value is expected from this function.
cdb_3P0AYqjEIn68
Re: [Mod] Temperature Survive 2 [tempsurvive]
Are clothes working? If so, would you document how a player uses them?
Wuzzy's documentation system could be used.
Wuzzy's documentation system could be used.
Re: [Mod] Temperature Survive 2 [tempsurvive]
this mod is using the default perlin, that are used to generate the world -40 ... 0 where snow starts, 10 somwehat cold, 20 pleasing, 30 hot etc... if you are using mapgens mods that doesn't match the default perlin there can be problems :)Inky_Bendy wrote: ↑Sun Feb 02, 2020 18:05I have a problem: I just turned this mod on on my survival world, but my temperature keeps going up... and up... and I'm not even in a hot biome...
https://github.com/AiTechEye/tempsurviv ... s.lua#L109
- Attachments
-
- screenshot_20200603_224837.png
- (130.81 KiB) Not downloaded yet
Re: [Mod] Temperature Survive 2 [tempsurvive]
I try to put the clothes on as I do armor, but the clothes are not accepted. They don't occupy the clothing/armor boxes.
Re: [Mod] Temperature Survive 2 [tempsurvive]
After update to minetest 5.3.0 i started to have problem with liquid flowing. These stop to work with error:
By experiment I have recognized that code in init.lua of tempsurvive mod is responsible for it.
When I deactivate this part of code, liquids starts to work.
Code: Select all
2020-09-07 17:06:34: ERROR[Server]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (62,-133,54) (block (3,-9,3))
Code: Select all
minetest.after(0.1, function()
etc...
cdb_3P0AYqjEIn68
Re: [Mod] Temperature Survive 2 [tempsurvive]
Problem can be solved by use functiion minetest.register_on_mods_loaded instead of minetest.after.SFENCE wrote: ↑Mon Sep 07, 2020 15:15After update to minetest 5.3.0 i started to have problem with liquid flowing. These stop to work with error:
By experiment I have recognized that code in init.lua of tempsurvive mod is responsible for it.Code: Select all
2020-09-07 17:06:34: ERROR[Server]: Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (62,-133,54) (block (3,-9,3))
When I deactivate this part of code, liquids starts to work.Code: Select all
minetest.after(0.1, function() etc...
Code: Select all
minetest.register_on_mods_loaded(function()
etc...
cdb_3P0AYqjEIn68
Who is online
Users browsing this forum: Bing [Bot], gigomaf and 5 guests