a multiplayer game of parenting and civilization building
You are not logged in.
Pages: 1
Alright so basically i was playing 2 hours 1 life which is a really awesome OHOL mod which all of you should play but i was spawned into this village and i saw a locked door. I made a key but it didn't work so a older man brought me to a vault and he said we needed to unlock it so i was like K, and i started to make a steel key mold. I was like an hour in because im new to the game and then i was about to be finished. I STARVED TO DEATH! No starving sound, so thats why i didnt eat. I thought i was full since i had no sounds for me starving.
"No there aint nothing in life but to be legit" ~~ Eazy E
Offline
It might be changed in the Mod but in normal game after a certain age you loose the hunger sound. My guess is that that age might not be changed in 2hol mod.
My other guess is that the number to change is in livinglife.cpp
else if( ourLiveObject->foodStore <= 3 &&
computeCurrentAge( ourLiveObject ) < 57 ) {
// don't play hunger sounds at end of life
// because it interrupts our end-of-life song
// currently it's 2:37 long
This starts at line 11833. I think sammoh is the one who runs the 2hol server. If the bug is the one I think it is it should be easy to fix, just change 57 to 114 or multiply it by the constant he uses to change the lifespan (how I would've done it for lazyness's sake).
"be prepared and one person cant kill all city, if he can, then you deserve it" -pein
https://kazetsukai.github.io/onetech/#
https://onehouronelife.com/forums/viewtopic.php?id=1438
Offline
It might be changed in the Mod but in normal game after a certain age you loose the hunger sound. My guess is that that age might not be changed in 2hol mod.
My other guess is that the number to change is in livinglife.cpp
else if( ourLiveObject->foodStore <= 3 && computeCurrentAge( ourLiveObject ) < 57 ) { // don't play hunger sounds at end of life // because it interrupts our end-of-life song // currently it's 2:37 long
This starts at line 11833. I think sammoh is the one who runs the 2hol server. If the bug is the one I think it is it should be easy to fix, just change 57 to 114 or multiply it by the constant he uses to change the lifespan (how I would've done it for lazyness's sake).
where do i find that file?
"No there aint nothing in life but to be legit" ~~ Eazy E
Offline
https://github.com/jasonrohrer/OneLife/ … fePage.cpp
You can see all the game files https://github.com/jasonrohrer most of
the goodies are in the OneLife section, the LivingLifePage.cpp seems to
have the fun parts of the game client like zoom, how much you can
say, etc. I don't know if it controls your hunger or just reads it, hopefully
the more important things like that are server side.
"be prepared and one person cant kill all city, if he can, then you deserve it" -pein
https://kazetsukai.github.io/onetech/#
https://onehouronelife.com/forums/viewtopic.php?id=1438
Offline
Pages: 1