-
In Trelai, there is a building on the river (accessible via the boardwalk) that is missing some of its floor tiles, and upon entering the building you'll be immediately "drenched". You might also glitch through the locked reinforced door and be unable to escape. Be careful around this building.
-
Wildberries is a somewhat old map and as such has some glitchy tile issues and some roomes where you might fall through the floor/wall and break a limb or die, so be very very careful as you move around!
-
Seems like Sam Fisher's Night Vision Googles (from Brita's mod) are not working. Might consider adding in a working NVG mod.
-
One or more of the mods have a VRAM leak. Might be Brita's mods, might be one of the map mods. Either way, after 48-96 hours of continuous gameplay, make sure to keep an eye on your VRAM usage levels. Once you have less than a gig rema
Anything unlisted was left at default.
Warning! These are pretty hardcore settings (to me), but they're not insane if you're skilled or like a challenge.
You can skip all of this and just load all these settings easily as a preset by adding the Fear The Dark (SP).cfg file under
C:\Users\(your username)\Zomboid\Sandbox Presets\Fear The Dark (SP).cfg
and then loading the preset in the sandbox settings menu.
- Population > Zombie Count: High
- Time > Start Time: 12am (more time to loot, can catch the early fishing show on TV, easier to count in-game days)
- Nature > Erosion Speed: Slow
- Sadistic AI Director > Helicopter: Sometimes (I think Expanded Helicopter Events mod overrides this, but just in case)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for a in $(curl -qs "https://api.github.com/repos/<OWNER>/<REPO>/actions/runs" | jq -r '.workflow_runs[].id'); do curl -X DELETE -H "Accept: application/vnd.github.v3+json" -H "Authorization: token <TOKEN>" "https://api.github.com/repos/<OWNER>/<REPO>/actions/runs/$a"; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
verbosity=info | |
tokfile="/tmp/tok-$$" | |
domlist_pfx="/tmp/doms-$$-" | |
doctl_tokens=( | |
# Place all your DO personal access tokens here in this array as simple text, preferably one per line | |
) | |
function log() { |
Step 1: netsh interface portproxy add v4tov4 listenaddress=0.0.0.0 listenport=3000 connectaddress=localhost connectport=3000
Step 2: Add Allow local routing to ports 3000-4000
rule to Windows Firewall's inbound connection ruleset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface BoxA<T> { | |
a: T; | |
} | |
interface BoxB<T> { | |
b: T; | |
} | |
type BoxerA<T> = (a: T) => BoxA<T>; |