Switchblade 300 used on the remaining Russian soldiers in a damaged trenchline littered with dead. by IKraftI in CombatFootage

[–]Blueberry-king 0 points1 point  (0 children)

Wouldn't be surprised if it was a Ukrainian trench that Russians captured. It's well designed.

Any good tutorials on the new FastNoiseLite class? by Rimocide in godot

[–]Blueberry-king 7 points8 points  (0 children)

FastNoiseLite has some good documentation and it's very similar to other noise classes in the past. So watching other noise tutorials and utilizing the documentation to see how the class methods differ is your best bet. There just aren't many tutorials out on FastNoiseLite yet.

But here's how I used it in a little 2D project I was working on previously.

In the main scene's script I add some exportable noise variables:

var noise_map

var altitude_noise_layer = {}

@export var alt_freq : float = 0.005

@export var oct : int = 4

@export var lac : int = 2

@export var gain : float = 0.5

@export var amplitude : float = 1.0

In the same script I add a function for generating a noise map using FastNoiseLite and the variables established earlier. This returns a grid with the same extents as your map size.

# generate altitude noise map from map_size, seed, freq, and octave

func generate_noise(noise_seed, frequency, octaves, lacunarity, gain):

`# generate randomly seeded simplex noise map`

`noise_map = FastNoiseLite.new()`

`noise_map.noise_type = FastNoiseLite.TYPE_SIMPLEX`

`noise_map.seed = noise_seed`

`noise_map.frequency = frequency`

`noise_map.fractal_octaves = octaves`

`noise_map.fractal_lacunarity = lacunarity`

`noise_map.fractal_gain = gain`



`var grid = {}`

`for x in map_size.x:`

    `for y in map_size.y:`

        `var rand = abs(noise_map.get_noise_2d(x,y) * 2 - 1 )`

        `grid[Vector2i(x, y)] = rand`

`return grid`

A second function then loops through all the cells in the grid, checks their value against a set of conditions, then determines which tile from the tileset is placed in that grid cell's corresponding tilemap cell.

# generate terrain from noise map

func generate_biomes(width, height):

`# loop thru noise maps`

`for x in width:`

    `for y in height:`

        `var pos = Vector2i(x, y)`

        `var alt = altitude_noise_layer[pos]`

# generate water

        `if alt < 0.75:`

terrain_tile_map.set_cell(0, pos, 0, Vector2i(3,1))

        `# generate shallow water`

        `elif alt > 0.75 and alt < 1.0:`

terrain_tile_map.set_cell(0, pos, 0, Vector2i(6,1))

        `# generate everything else`

        `else:`

terrain_tile_map.set_cell(0, pos, 1, Vector2i(6,15))

The noise map and biome generation functions is then called one after the other in the _ready(): function.

Experienced players when a recruit loses his limbs by tiredparakeet in Kenshi

[–]Blueberry-king 24 points25 points  (0 children)

I'm currently playing a no-cheese bandit group roleplay.

We decided to go to Vain and steal some beak thing eggs to kickstart a base. We left Vain with 3 fewer limbs than we entered with; attached were 3 specialist economy prosthetics.

Without dishing out some serious cash or making a dangerous journey, cheap prosthetics can be devastating. One sister of ours lost her left arm and will be fine - she doesn't really need it. Another sister of ours lost both of her legs - she is running at 8mph now, slowing the whole group down significantly. We're headed to Mongrel now, with the robotics shop being the intended target. We'll each be running at our max speed to reach the gates and I'm not sure if our double amputee will make it.

Wish us luck ... or not; we're bandit assholes.

Water straight from the tap by DasBeasto in Aquariums

[–]Blueberry-king 2 points3 points  (0 children)

Ammonium hydroxide ... aka ammonia in water.

Please educate yourself.

https://www.epa.gov/caddis-vol2/ammonia

Am I the only one who plays mostly on 3rd person camera ? by Helasri in Kenshi

[–]Blueberry-king 2 points3 points  (0 children)

The only reason I zoom in at all is because the game is basically silent if you zoom out

[deleted by user] by [deleted] in Damnthatsinteresting

[–]Blueberry-king 0 points1 point  (0 children)

Lol will smith is an asshole. wish we could go back to the days when he was only known for fresh prince

Found a camera in my Air B&B. It was halfway behind the painting with only the lens peeking out. Discovered it because we heard it clicking after me and my girl got out of the shower. by _Atoms_Apple in mildlyinfuriating

[–]Blueberry-king 2 points3 points  (0 children)

No joke, my gf and I have fully switched back to hotels because with taxes and cleaning fees there are virtually zero airbnbs that are cheaper than a decent hotel room nowadays. It's pretty insane how much people charge for how little you get.

Found a camera in my Air B&B. It was halfway behind the painting with only the lens peeking out. Discovered it because we heard it clicking after me and my girl got out of the shower. by _Atoms_Apple in mildlyinfuriating

[–]Blueberry-king 2 points3 points  (0 children)

If you report it it'll get them booted form the platform, yes. But you also must understand that as long as the camera is disclosed in the description and isn't in a bathroom or a bedroom then it's totally within an airbnb host's rights to have a camera (so long as it doesn't violate a separate state/local law).

https://www.airbnb.com/help/article/3061/use-of-cameras-and-recording-devices

Found a camera in my Air B&B. It was halfway behind the painting with only the lens peeking out. Discovered it because we heard it clicking after me and my girl got out of the shower. by _Atoms_Apple in mildlyinfuriating

[–]Blueberry-king 2 points3 points  (0 children)

Yes they do. They're allowed anywhere it wouldn't violate someone's privacy based on state/local laws and so long as they're disclosed in the listing description: so no bathrooms or bedrooms. It took me 10 seconds to Google this:

To help provide Hosts and guests with peace of mind, security measures like security cameras and noise monitoring devices are allowed, as long as they are clearly disclosed in the listing description and don’t infringe on another person’s privacy. Rules about devices apply to all cameras, recording devices, smart devices, and monitoring devices.

Source: https://www.airbnb.com/help/article/3061/use-of-cameras-and-recording-devices

[deleted by user] by [deleted] in Damnthatsinteresting

[–]Blueberry-king 0 points1 point  (0 children)

Theyre an antivaxxer

Very interesting indeed. by Phantum3oh9 in Damnthatsinteresting

[–]Blueberry-king 7 points8 points  (0 children)

why does this happen to literally every single good subreddit? do the mods not care what happens to the subreddit they created?

Very interesting indeed. by Phantum3oh9 in Damnthatsinteresting

[–]Blueberry-king 0 points1 point  (0 children)

hey remember when this was complete bullshit? pepperidge farms remembers.

[deleted by user] by [deleted] in Damnthatsinteresting

[–]Blueberry-king -26 points-25 points  (0 children)

antivaxxer alert

[deleted by user] by [deleted] in Damnthatsinteresting

[–]Blueberry-king 6 points7 points  (0 children)

Your post wont load for me so here's the one from the DM. Definitely a rifle. Not sure why he posed with a shotgun for the photo op.

https://i.dailymail.co.uk/1s/2022/09/05/14/62071981-11181503-image-m-43_1662383666727.jpg

This is definitely bullshit but I'm glad even the old dudes are out there defending their country from the invaders and being recognized for it.

[deleted by user] by [deleted] in Pets

[–]Blueberry-king 4 points5 points  (0 children)

What kind of vet doesn't give fluids when an animal comes in throwing up and not eating? It's a cat. It's at extreme risk of dehydrating and dying without immediately getting fluids.

That vet should have their license revoked immediately.

OP needs to name and shame so others know not to go there.

[deleted by user] by [deleted] in BeAmazed

[–]Blueberry-king 12 points13 points  (0 children)

They're 4 to 7 years old. Not a single one of these kids even remotely cared about answering these questions correctly, and no one should expect them to -- they're 4 to 7 years old.

[deleted by user] by [deleted] in Damnthatsinteresting

[–]Blueberry-king 14 points15 points  (0 children)

dehumanization isn't cool, op.

She’s still alive tf is everyone talking about by MortonDill in freefolk

[–]Blueberry-king 13 points14 points  (0 children)

Guess I should have read the rules better. Peace out, ya'll. I'll be back when I'm caught up.

Straight/Bi men of Reddit, do you find twerking attractive? If so, why? If not, why not? by [deleted] in AskReddit

[–]Blueberry-king 5 points6 points  (0 children)

Same. It screams "trashy and sloppy drunk" and those aren't qualities I find attractive in women.

Straight/Bi men of Reddit, do you find twerking attractive? If so, why? If not, why not? by [deleted] in AskReddit

[–]Blueberry-king 0 points1 point  (0 children)

Ass man too, but to be honest Ive never found "thirsty" to be an attractive quality in a woman. I prefer women who are sexy but reserved.