a multiplayer game of parenting and civilization building
You are not logged in.
Pages: 1
You're on the right track, but this could be a daunting task without using the editor. To make matters worse, there's little-to-no documentation on how to use the editor. Jason has a full video of him using the editor to implement sheep, along with its various transitions, which may or may not help in that regard. An oversimplification is that combining the top two objects will transition, or produce, the bottom two objects.
As far as looking at the transition text files themselves, if you're specifically wanting to remove decay (IE: deleting a transition)...then you'd want to delete the appropriate transition file associated with the object in question.
For example, let's say you want Wheelbarrows to last forever. Effectively, all you'd really need to do is remove the transition of a Wheelbarrow "decaying" into an Old Wheelbarrow.
D:\OneLife\objects>findstr /C:"Old Wheelbarrow" *.txt
1321.txt:Old Wheelbarrow
D:\OneLife\transitions>findstr /C:" 1321 " *.txt
-1_483.txt:0 1321 -10 0.000000 0.000000 0 0 0 1 0 0
Here we can see that "Old Wheelbarrow" has an object ID of 1321, and the associated transition for it is the -1_483.txt file. You may also note that the 483 portion of this filename corresponds to the "Wheelbarrow" object ID. Simply delete this -1_483.txt transition file from both the client & server folder(s), rebuild the caches, and your game should no longer have a Wheelbarrow decay. Keep in mind that all clients connecting to your modified server will require the same modifications/deletions!
There will still be "leftover" transitions that will, now, never be used (-1_1321.txt & -1_1322.txt, as well as the "Old Wheelbarrow" and "Broken Wheelbarrow" objects themselves)...but removing that one transition file effectively halts its decay "chain." 483 (Wheelbarrow) turns into 1321 (Old Wheelbarrow), which turns into 1322 (Broken Wheelbarrow), then finally disappears into thin air.
Another quick example can be found in this commit where Jason removed the decay of backpacks by deleting the associated decay transition files.
I'm no expert with using the editor, but performing this task can also be done within its UI...however that will take some experimentation on your part. Given the sheer amount of items you're likely to dig through, using the editor is probably going to be your best bet...although you can absolutely accomplish this manually.
There are plenty of folks who have messed with the editor, likely much more than I have, so you might be able to solicit some help from the community here or on Discord. Meanwhile, I hope this helps in some way and wish you luck with your project!
Like was already mentioned, it sounds like you used the "win_full" package, which is meant mostly as a Windows version of the test instance that you can setup on Linux (client/server/editor) all-in-one. Run your own private server, etc. There's a description of this package in the "Requirements" section, but I'll add it to the info below the releases on the next update.
If you're on Windows and already have the game installed, you'd want to use the top-most zip in the latest releases section and unzip that file (it should have 1 executable and 4 text files) into your game folder. The install process is exactly the same as in the video that KrissJin made, only the installation folder will be wherever your game resides.
At this point, it's probably easier to just reinstall the game from scratch and then let it fully update before installing the mod.
As far as the black bar on the left side of the screen, that's a known issue that I'm working on fixing and related to the way I'm resizing elements on the screen when you adjust your zoom scale. It seems to happen most when you're "fully" zoomed in at the default scale. I think I know what the issue is, but until I fix it you can try to set your "fovScale" to something other than 1.0 (like 1.1 or something) and it shouldn't happen as much. At least, I hope not!
Thanks! A couple questions about that though, as I don't know a ton about linux, would I just use the 'rm' command? Also would these folders and files just re-create themselves on server start?
Yes, and yes. Here's a quick-and-dirty one-liner you can run in your server folder from the terminal that should get the job done. Or you can copy & paste it into a bash shell script so that you can just use that to run the command whenever you need.
In the terminal:
rm -rf curseLog failureLog foodLog lifeLog *.db curseSave.txt eveRadius.txt log.txt mapDummyRecall.txt recentPlacements.txt
As a bash script, IE: /server/wipeServer.sh
#!/bin/sh -e
rm -rf curseLog failureLog foodLog lifeLog *.db curseSave.txt eveRadius.txt log.txt mapDummyRecall.txt recentPlacements.txt
For rm, the -r flag means recursively remove folder contents and -f is to force. For bash, the -e flag means to halt on any errors in the script.
I got my server up and running now but have a question if anyone can answer. Does anyone know a way to reset/wipe the world? Not using the apocalypses, by using the terminal. I could just reinstall the server but that seems like a lot.
You can safely delete these folders & files to completely "reset" your server:
/curseLog
/failureLog
/foodLog
/lifeLog
*.db
curseSave.txt
eveRadius.txt
log.txt
mapDummyRecall.txt
recentPlacements.txt
Has Jason said what the official names are for each biome? Might be nice to standardize this since the wiki and onetech are different. I've seen the following:
1. Grasslands
2. Marsh/Swamp
3. Yellow Prairie/Plains/Savannah
4. Rocky/Mountain/Badlands
5. Polar/Tundra/Snow
6. DesertFeel free to chime in Jason. I will update onetech.info with the names.
Based on some commit message searches, these are the "official" biome names Jason used:
1. Woodland Meadow
2. Marsh
3. Plains
4. Rocky
5. Polar
6. Desert
7. Jungle
Obs wrote:Jason pushed out an update to fix some things and it inadvertently broke the networking in Windows clients. For non-steam users, I also noticed that the auto-updater doesn't seem to work for updating the broken v166 clients to the fixed v167. You can tell which version of the client that you currently have by reading the `binary.txt` file in your game folder.
If this is the case, simply re-install the game from scratch and let it fully update to v167. Things should be fine after that. Hope this helps!
Thanks, I'll do that ! Now if you'd just explain me how to reinstall the game, that would be lovely ^^ I don't want to accidentally do something wrong
Just hit the download link that should be in your Emails (Jason includes this even on his update notifications), or if you still have the original zip file you can use that again. Then extract all of the zip file's contents into a new folder and that should be it! (Also make sure it's a folder that isn't write-protected or has funky permissions.)
Jason pushed out an update to fix some things and it inadvertently broke the networking in Windows clients. For non-steam users, I also noticed that the auto-updater doesn't seem to work for updating the broken v166 clients to the fixed v167. You can tell which version of the client that you currently have by reading the `binary.txt` file in your game folder.
If this is the case, simply re-install the game from scratch and let it fully update to v167. Things should be fine after that. Hope this helps!
On Windows, you can use ALT + PrtScn to capture just the currently focused window. The game also uses the equals sign = to save a .tga file into a "screenShots" sub-folder within your game.
The game is designed to run in a 16:9 letterbox at a 1280x720 scaled resolution, so I don't think there's anything wrong with your particular setup or that it's all that much different than anyone else. It will even attempt to draw "black bars" across the top and bottom to create this letterbox on a 4:3 aspect ratio, as you might also see in some screenshots.
There are ways to force the game to disobey this 16:9 ratio, but then some funky things start to happen. Like your clicks might not register exactly where you expect them, plus the overall game looks a bit funky.
It's rare, but it can "naturally" happen where two people are born to the same mother within a relatively short time span and therefore be twins without having queued up specifically for twins.
if( inOurObject->age < inTheirObject->age - 0.1 ) {
big = true;
}
else if( inOurObject->age > inTheirObject->age + 0.1 ) {
little = true;
}
else {
// close enough together in age
twin = true;
if( inOurObject->displayID == inTheirObject->displayID ) {
identical = true;
}
}
}
First, kudos to Jason for being an amazingly benevolent daddy developer! Not only has he completely opened the source, but does not actively block unofficial client connections to official servers and is very receptive of the feedback from our ever-demanding community.
It was probably my second or third day before I went seeking for a native way to increase the FOV and came across Drakulon's post and Joriom's mod. As a new player, I was already overwhelmed with the game's learning curve but the bigger challenge, for me, was trying to constantly learn new areas at the same time. I found that my limited FOV greatly hindered my ability to put together a mental image of an area, so I became unnaturally dependent on homemarkers and spent "years" just trying to learn or recognize a location. Once I removed this barrier by using a FOV mod, I quickly became more productive and had much more enjoyable lives learning the game instead of getting constantly lost or starving to death because I ran the wrong direction.
After a client update last month and a temporary lull in updates by Joriom, I was, again, struggling to play the game and it became more frustrating than enjoyable. However, having a coding background and a passion for learning new things, I was compelled to follow his guides and compile my own version instead of having to pester him. This is what is now known as the "Awbz" or "OneLife+" mod that has been mentioned recently.
All that being said, I understand and completely respect Jason having a certain vision for the game. This is the primary reason that I've never really "advertised" my modified client anywhere and had only shared it with friends who had similar complaints and no longer had Joriom's mod as a solution. This lead to it being streamed on Twitch, then later spotlighted on YouTube, so I opted to make everything publicly visible and available on Github once the growth in demand became painfully obvious. After all, the whole spirit of the game is supposed to be about improving your situation and leaving something behind to assist future generations...right?!
Another key thing I'd noticed was that once people started using a zoomed-out client, most wouldn't play (or stream) the game at all again after a client update until one of the two FOV mods were available! That was a pretty eye-opening and "meta" moment for me, as I now felt some added responsibility to help keep part of the community/game alive. While some (off-topic) features of my modded client may be considered "controversial" or seem contrary to Jason's creative direction for the game, they were added due to personal observations and solicited feedback from the Twitch OHOL community about various "pain points."
I can't wholly speak to the possible number of zoomed vs. overall clients, but here's some data that shows the download statistics for my "mostly unadvertised" Github releases: https://api.github.com/repos/Awbz/OneLife/releases
Like most others, I would love for an improved FOV to exist in some fashion within the client. A method I'd previously envisioned could have the default view stay as-is for babies & geriatrics, but gradually increase the FOV up to 2x scale as an adult before scaling back down to 1x in your dotage. Although, given his recent comments on the subject, I'm also inclined to drop support for FOV switching in my mod to better honor Jason's wishes. I haven't done so, yet, as I'm legitimately worried that it may add to the already-alarming attrition factor...at least until someone else decides to fill this collectively perceived community need.
Pages: 1