There are titanium!guys i dont remember very well and it's hard to find it myself
i know there are lead, coal,iron nodes
i dont remember if there are brass and titanium nodes in the world?
when i said nodes i ment if i can mine them ( auger and axe )There are titanium!And brass, melt the money, enough!
Yes, and parts, radiators, and other garbage!
Works fine on Ubuntu 18.04 LTS (tested on my dual boot desktop + my dedicated server). I'm not a linux nerd though (no offense) so no messing about with the console. Just downloaded and installed steam, downloaded the game, applied the mod, done.Anyone have success running this on linux? I'm on Mint 19.3
For a short recap, I installed:
a) the 18.4 version straight on top of my latest_experimental
=> results: consumes memory like no other, "solved" with lowest graphics settings and texture streaming off (as per this thread)
=> once running, crashes to desktop within a minute or two. Doesn't go OOM, just dies.
=> I think the log was mostly showing an "orphan" unhandled exception at the end. (lost the logs due to step b)
b) I figured 18.3 version might be more stable, so, fresh install of 18.3 stable, 18.3 version of mod on top of that
=> crashes to desktop upon entering world.
This crash was identical 3/3 tries, so I figured I'd try to narrow it down.. ended up with:
"removing SphereiiCore from /Mods/ eliminates the crash".
That looks like it's core functionality for the mod though, so not necessarily all that useful, but that's where I'm at right now.
I downloaded the 18.3 version of that mod, it seems somewhat different via KDiff, some of it was just "setup" for Darkness Falls, some of it was additions to AI routines or some such.. haven't tried yet, but I might try to frankenmerge some of those two - unless someone can point me towards a more, errh, sane solution..![]()
I'm not exactly expecting anything from anyone, but some pointers or shared experiences would be awesome![]()
Awesome.All behemoths, demons and night stalkers are fine. That issue DID exist on 18.4/DF V2.51 (in the experimental branch) but I updated that on... monday I think? I don't remember. Last few days have been a blur. But I managed to fix it on that branch.
Running 18.4(b3) (Sorry should have mentioned that in my first post)
But redownloaded the mod and installed and it fixed the problem. Thanks so much for an amazing mod and the support
Try a VPN. Gitlab is sometimes... a pain. There's also a mirror on nexus now.Files do not download! Error 429 on the download page!
Titanium exists in the wasteland as an above-ground node. There's some texture issues with the underground ore that I need to fix though, just FYI.guys i dont remember very well and it's hard to find it myself
i know there are lead, coal,iron nodes
i dont remember if there are brass and titanium nodes in the world?
VPN did not help!Try a VPN. Gitlab is sometimes... a pain. There's also a mirror on nexus now.
https://www.nexusmods.com/7daystodie/mods/235?tab=files
Thank you! I think I'll end up pursuing the ubuntu route, since I already have a side boot of that going, and wine ... argh. I've gotten things to work via it, but it's always a project and a half...I'm running it in ubuntu 19.10 by wine-staging with dvxk.
It consumes an insane amount of memory (around 16 GB) in the large map.
The ppa for mesa is https://launchpad.net/~paulo-miguel-dias/+archive/ubuntu/mesa, wine-staging from here https://wiki.winehq.org/Ubuntu and dvxk from here https://github.com/doitsujin/dxvk/releases
The options I use to launch the game are
It runs a little bit slower than vanilla (more slower in wasteland) but playable
I'm now with the last experimental of DF but I was in the stable too and also works.
PD.
mesa_glthread=true only works in the Mesa drivers (RadeonSI, R600, Nouveau, Intel). If you're using nvidia closed drivers the options is __GL_THREADED_OPTIMIZATION. You can set it to 1 to force it on, or 0 to turn it off and had no effect with vulkan
Excellent, sounds too simple to be trueWorks fine on Ubuntu 18.04 LTS (tested on my dual boot desktop + my dedicated server). I'm not a linux nerd though (no offense) so no messing about with the console. Just downloaded and installed steam, downloaded the game, applied the mod, done.
Given that plenty of people have downloaded and installed the mod (and the mod launcher uses the same link as the first post), it works fine. It's something with your internet/ISP.VPN did not help!The link also does not work.
I'm trying through the mod launcher!
I mean, i'm probably more of a nerd... I was doing this today...Thank you! I think I'll end up pursuing the ubuntu route, since I already have a side boot of that going, and wine ... argh. I've gotten things to work via it, but it's always a project and a half... For completeness though, that's a windows version of the game as well then?
The memory will be an issue, I have 16G in atm.. I might throw in a couple older sticks to see how terrible the perf is with CL9 stuff.. not necessarily worth it in the long run, but I got free slots, so, might be time to invest anyway (RTX 2060 - level stuffs otherwise, just never ran into actual memory issues until now..)
But yeah, thanks![]()
Excellent, sounds too simple to be trueWill have to check it out, and probably bite the bullet and swap to using ubuntu more anyway .. I already have an install of it for Blender since it just works there, no such luck with Minty (CUDA detection issues.. workarounds, bubble gum, duct tape, sure, but out-of-the-box on Ubuntu .. ).
I can't figure out how to get offended by getting called a nerd nowadays, even though I don't count myself as one...![]()
Thank you!![]()
static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> instructions)
{
int counter = 0;
// Grab all the instructions
var codes = new List<CodeInstruction>(instructions);
for (int i = 0; i < codes.Count; i++)
{
if (codes[i].opcode == OpCodes.Ldc_I4_S) // This targets the IL that sets 20
{
counter++;
Khaine_EntityZombie_Logger.Log("Adjusting 20 to 100");
codes[i].operand = 100;
Khaine_EntityZombie_Logger.Log("Done with 20 to 100");
}
}
return codes.AsEnumerable();
}
In the nerdyness scale... I can read that, and the thing that inevitably pops to mind is ... bubble gumI mean, i'm probably more of a nerd... I was doing this today...
So yeah. I can't talk.Code:static IEnumerable<CodeInstruction> Transpiler(IEnumerable<CodeInstruction> instructions) { int counter = 0; // Grab all the instructions var codes = new List<CodeInstruction>(instructions); for (int i = 0; i < codes.Count; i++) { if (codes[i].opcode == OpCodes.Ldc_I4_S) // This targets the IL that sets 20 { counter++; Khaine_EntityZombie_Logger.Log("Adjusting 20 to 100"); codes[i].operand = 100; Khaine_EntityZombie_Logger.Log("Done with 20 to 100"); } } return codes.AsEnumerable(); }
![]()
Yes, is the windows version.Thank you! I think I'll end up pursuing the ubuntu route, since I already have a side boot of that going, and wine ... argh. I've gotten things to work via it, but it's always a project and a half...For completeness though, that's a windows version of the game as well then?
The memory will be an issue, I have 16G in atm.. I might throw in a couple older sticks to see how terrible the perf is with CL9 stuff.. not necessarily worth it in the long run, but I got free slots, so, might be time to invest anyway (RTX 2060 - level stuffs otherwise, just never ran into actual memory issues until now..)
But yeah, thanks![]()
[TABLE="class: wikitable, width: 100%"]
[TR]
[TD]Ubuntu 18.04
Linux Mint 19.x[/TD]
[TD]sudo apt-add-repository 'deb [url]https://dl.winehq.org/wine-builds/ubuntu/[/url] bionic main'[/TD]
[/TR]
[/TABLE]
to Mint users (info provided by Tomasz Molin)
If you're on Linux Mint and you want to ppa-purge, you need to specify the corresponding Ubuntu version of your version of Mint.
For example, Linux Mint 18 is xenial xerus.
So, the command would be:
sudo ppa-purge -d xenial ppa:paulo-miguel-dias/mesa
It's a harmony patch to adjust the max height zombies "read" for fall damage from 20 blocks to 100.In the nerdyness scale... I can read that, and the thing that inevitably pops to mind is ... bubble gumI have no idea what you're really doing, but I'm betting aiming for maintainability is not high on that list ...
![]()
It's a problem with gitlab. There's a mirror on nexus.hi was wondering how long until the a18.3 server download will be working again?
ah ok. I thought you did something crazy and gave her a resurrection ability =p I had 2 of the black dresses and 2 or 3 of the white in front of me on a horde day 21 and got stuck in this weird loop that felt like they were resurrecting. I guess they just weren't dying and I had a big wack of ferals and they wiped me ^^ good timesNothing. It just shows she's a Feral Screamer.![]()
It's a bunch of military tents. 2 rows of 4-5 tentsHello.
I want to know how the bunker looks like in the wasteland (I am in the DF-Small 4).
I see one with rocket but don't know if it's the bunker...