#💣tarkov-released

1 messages · Page 565 of 1

fast garden
#

and i would love to know what bsgs code would look like for such a thing knowing what the cultist spawn logic looks likeKekSkew

keen sparrow
#

god i wish i could @ some of them here

glacial haven
#

Like actually, not even kidding, there's always the dude that knows everything about it and then there's the little ankle chompers that bark at you

keen sparrow
#

so believe it or not

#

this guy is the nice one

glacial haven
keen sparrow
#

like out of all the SPT mod devs that code

#

Groovey is the most chill, least douchey

glacial haven
#

I can't imagine a world in which they actually implement anything worthwhile themselves

keen sparrow
#

he'll jokingly tell you to learn 2 code, but if you keep asking he'll answer questions

fast garden
#

once upon a time, they did some in game stuff when the chronicles of rhyzy stuff was going on

#

during that period, glukhar always had a 7th guard armed with an SVD that was named after one of the characters in that series

glacial haven
#

By using simple to understand analogies for it

native crypt
#

Id just skip to calling people slurs

glacial haven
#

Allows you to change shit on the fly

keen sparrow
#

Just wait till you see how BSG 'weighs' the chances

fast garden
#

whats wrong with it

keen sparrow
#

it makes no goddamn sense

glacial haven
#

But if I had to guess, they are using the "actual" random functionality called RandomNumberGenerator which is cryptographically secure

fast garden
#

somethings more likely somethings less?

keen sparrow
#

okay so

fast garden
#

it doesnt look odd to me

keen sparrow
#

if all os these 1s means that they all have an equal chance of spawning

fast garden
#

mhm

keen sparrow
#

what does 2 3 and 4 mean

#

is it higher or lower chance, and if so, by how much

fast garden
#

hmm

keen sparrow
#

is iiiit 4x more likely if it's a 4?

#

and if that is true, what's a 20 mean

fast garden
#

could you pull a similar file for the raiders or rouges armor

#

i feel like i could sort of extrapolate if say, a hexgrid was a 1 and a trooper was a 5 yk

#

BD is kinda too special a case to really know for sure

#

but im sure most of us have killed hundreds if not thousands of raiders and rouges

keen sparrow
fast garden
#

is "gifter" really santa

#

son im crine

glacial haven
# keen sparrow what does 2 3 and 4 mean

If I had to guess and that is a shot in the dark,

var minimum = 1 * 100;
var maximum = 4 * 100;

Random.Next(0, maximum);

anything in-between hits for each entry but that would require a custom handle if everything is 1, so it's 100/N (N = Entry Count) and then just 0 to 100, which is the exact same as 0 to 400

#

Idk, it's russian code

keen sparrow
fast garden
#

so the smugglers are just reused bloodhounds, that i already knew but why change their voicelines

#

i miss the old bloodhound lines

#

but anyway

#

there was a line under them that was like "force armored rig when no armor : true"

#

but ive def seen them armorless

keen sparrow
#

thinkin to myself "these mfkers have a lot of AFAKS...."

#

SPT bloodhounds were easier AFAK farm than rogues

#

so

#

Groovey was plugging around my old mod page with wayback machine

fast garden
#

i mean even in the files they changed to run the event

#

the smugglers they used were also titled in the code as uh

#

"arenafighterevent" or whatever the fuck they are called internally

#

son

#

what the fuck does 200 even mean here

#

time to pull out the ID finder to see what these are

#

psure this is somewhere under the pmc ai item spawn chances

keen sparrow
#

k which one you want

#

i like the uh

fast garden
#

hm oh i was just looking at what these were

keen sparrow
#

This has been here forever btw

fast garden
#

its like 7mm, lead slug, express, magnum, ap20, flechette, pirranha

#

its the ammo type chances for the bots

#

so obv 200 means more fucking likely and 1 means not fucking likely but

#

i dont play pve

#

but i get a good idea

#

higher number more common

#

more higher means more common

#

gg

#

did not know he technically had two

#

but makes sense theres always 2 with gear and 2 with fuck ass shit and kedrs

fast garden
#

send the kaban guard one

keen sparrow
#

that's 'boar' correct?

fast garden
#

do you think basmach and gus will ever have unique vo

#

yes it is

fast garden
#

kaban means boar or something because he is fat fuck

keen sparrow
#

so why in every bundle does BSG called bullets, 'patron'

#

'Patron_001' 'Patron002' 'patron_inchamber'

fast garden
#

these are 100% percent chances

#

so the other numbers not being that is so odd

#

i already know about the super ass pouch some ai has

#

and the infinity heals in them

#

what is it, sanitars super mega ifak that heals everything instantly

#

hey so

#

what the fuck is damagecoeff

glacial haven
fast garden
#

would there be a single instance where that value is not 1

glacial haven
#

0 = none
1 = standard
1 < N = standard * N

glacial haven
#

Better have it as an option if you plan on doing it at some point than having to implement it later

fast garden
#

they always just crank the health way the fuck up, see vengefull zyrachy

#

that being said

blazing basin
fast garden
#

idk if zyr has it, but the labyrinth bosses are explosive immune

fast garden
#

what is with all the references to glukhar, killa and iirc sthurman who is referenced as kojiany or whatever

#

within all the guard ai

remote fox
fast garden
#

the only thing i could think of this referring to is that when partizan spawns, he spawns a shit ton of preplaced random tripwires whereever he spawned. however, partizan came out after kaban

#

makes me wonder what the tripwire placement would be were he to spawn on a map like streets

glacial haven
#

This might seem a bit random but this is how I imagine the randomisation in Tarkov works with those files:

use rand::{prelude::*, rng};

trait RandomEntryVecTrait {
  fn get_random_entry(&mut self) -> Option<&RandomEntry>;
}

#[derive(Debug)]
struct RandomEntry {
  name: String,
  chance: usize,
}

impl RandomEntry {
  pub fn new<S: Into<String>>(name: S, chance: usize) -> Self {
    RandomEntry {
      name: name.into(),
      chance,
    }
  }
}

impl RandomEntryVecTrait for Vec<RandomEntry> {
  fn get_random_entry(&mut self) -> Option<&RandomEntry> {
    const SCALE: usize = 100usize;
    
    if self.is_empty() {
      return None;
    }

    let max_chance = self.iter().map(|e| e.chance).max().unwrap();
    let total_range = max_chance * SCALE;

    let mut rng = rng();
    let roll = rng.random_range(1..=total_range);

    // Check if there's several entries in the weighted slice
    let qualifiers: Vec<&RandomEntry> = self
      .iter()
      .filter(|e| e.chance * SCALE >= roll)
      .collect();

    // Choose random entry from the weighted slices if there's several
    let chosen = qualifiers[rng.random_range(0..qualifiers.len())];

    Some(&chosen)
  }
}

fn main() {
  let mut entries = vec![
    RandomEntry::new("AK", 1),
    RandomEntry::new("M4", 2),
    RandomEntry::new("Asval", 2),
    RandomEntry::new("Vector", 3),
    RandomEntry::new("Mutant", 4),
  ];

  let mut e = 0;
  
  loop {
    if let Some(item) = entries.get_random_entry() {
      println!("Rolled: {}", item.name);
    }

    if e >= 5 {
      break;
    }

    e = e + 1;
  }
}
compact knoll
glacial haven
#

🥀

compact knoll
#

damn

keen sparrow
#

why add comments though

glacial haven
#

The sorting is kinda useless but it was from a previous attempt

glacial haven
#

That shit is written in Rust

#

Not everyone gets that language

#

And you kinda get used to comments once you start working on a larger scale

keen sparrow
glacial haven
#

Might as well use that time to check steam, maybe there's a game I am interesting in lmao

glacial haven
#

Aight, didn't find shit, when is Subnautica 2 releasing?

compact knoll
#

says may 2026 for early access

glacial haven
#

That's at least something

compact knoll
#

but they are having some legal shit with their publishers i think

glacial haven
#

I heard about the lawsuit and how the dude at krafton was told to eat a bag of dicks

#

Using chatgpt to attempt getting out of the deal he made with unknown worlds 🥀

remote fox
native crypt
# glacial haven Might as well use that time to check steam, maybe there's a game I am interestin...

No One Survives Alone.

The 2002 third-person survival horror shooter that serves as a sequel to the genre-defining 1982 film is back, remastered by Nightdive Studios to bring this innovative blend of fast paced squad action meets survival horror to the modern era. Including Antialiasing, Per Pixel Lighting, 4K Resolution and up to 144 FPS.…

Price

$17.99

Recommendations

1110

glacial haven
fast garden
fast garden
#

my man busted out the thinkpad for this one

glacial haven
keen sparrow
#

Real recognise real

fast garden
#

i love that its 45acp

#

or as bsg so elegantly puts it

#

1143x23acp

keen sparrow
#

yeah about that

#

you literally have to use their metric bullshit or there's a 50/50 your gun just won't work

fast garden
#

im not even remotely surprised by that

keen sparrow
#

It was one of the roadblocks when making the Barrett because .50 BMG hadn't been added yet

#

so i had to use 12xwhatever tf russians use

#

It was essentially a clone of the MG round

#

A clone of the SVD firing emplaced MG rounds, lol

#

SVD has the right side charging handle so the animations were almost perfect.

#

now i'm just waiting for Eco to wake up because my SDK is broken and i can't fix my own pink gun

#

There's something that changed in sound banks recently i guess and i haven't been taught how to do it

#

tl;dr i'm a washed modder

gritty python
#

pier door being camped by black division literally as i walk out

#

good stuff

#

never seen them there

keen sparrow
#

they're fucking fu

#

BRO

#

they're fun

#

literally psy-storm right after a blow-out

#

like they were waiting outside the bathroom door, wtf

gritty python
#

again the ai doing shit ive never seen them do for anyone

#

thank you for directly telling me to take a toasterbath nikita

keen sparrow
#

Did BD fuck your mouth?

gritty python
keen sparrow
#

I mean it's a binary question, yes or no

keen sparrow
gritty python
keen sparrow
#

yeah they're fun

#

I like that they talk like Arma 2 NPCs

gritty python
#

"dagger 1, down"

keen sparrow
#

"enemy MAN. two. hundred meters. SOUTH. west."

gritty python
#

"ENGAGING CONTACT."

#

think im only 2 attempts away from doing it tho, so long as i don't get rng fucked by where the last group of bd ends up

#

the rest are predictable and can be manipulated

cyan garnet
gritty python
#

of all the attempts i have personally watched

#

never had any legit watching the pier opening

#

exclusively further down the pier

cyan garnet
gritty python
#

im saying i walked through that door and got mag dumped CosmicPain

cyan garnet
#

Idk i'm yet to get to terminal and be raped by aimbots

#

I still have to kill 2 cultists priests cause i wss working heaps during the event when their spawns were boosted

gritty python
#

out of 6 raids and only seeing them once i saw them twice

#

it has made marked keys dirt cheap though so shrug

cyan garnet
gritty python
#

fair enough lmao

viral egret
ancient marsh
#

@viral egret @stark torrent @compact knoll tarkov?

stark torrent
#

This image offends Xal greatly

ancient marsh
stark torrent
#

Im.standing on the machine

#

175cm normal , 230m erect

ancient marsh
ancient marsh
#

got it

ancient marsh
viral egret
#

no big belly

#

no fat

soft coral
#

smaller romanian fits into smaller places to steal easily

ancient marsh
soft coral
viral egret
#

i hope your credit score drops

soft coral
#

hes russian not chinese

viral egret
soft coral
#

im kirking my shit smoove off

hallow stream
stark torrent
short cove
keen sparrow
#

pick one

hallow stream
#

Just like speakbigtrouble

ancient marsh
#

@stark torrent @compact knoll @little flame @remote fox @fast garden

#

they doxxed cryon

#

@viral egret

viral egret
#

not me

#

i don't have a mustache

#

not to those proportions

little flame
ancient marsh
#

didn't say anything about not being indian

little flame
#

nice unibrow

ancient marsh
#

curious.

viral egret
#

finna have to pull up with 12 different dna tests to prove my romanian blood

viral egret
stark torrent
viral egret
#

while xal is also shooting him

ancient marsh
#

am i just bad

#

did my mdr go down 0.6 dura after that many gunshots?

viral egret
viral egret
#

cant win

stark torrent
viral egret
#

he shot my leg out or smth i think

#

i was trying to contorl the recoil

stark torrent
#

u werent painkillerd

#

as well

viral egret
#

that's a headshot with 7.62 BP

ancient marsh
#

he hs'ed him

#

and he lived bp

#

he had a ratnik helm too btw

viral egret
#

bit of blood no damage

short cove
ancient marsh
#

yes

stark torrent
viral egret
#

m60 full of m61

stark torrent
cyan garnet
#

God it feels good to win a 1v2

#

hard asf rn

cyan garnet
#

These two retards thought they could pincer me in a hallway

#

Little did they know im nikitas most average arena solider

ancient marsh
#

for all we know you're on spt

cyan garnet
#

kill yourself

stark torrent
ancient marsh
#

@stark torrent @compact knoll

#

how it feels to play tarkov 4 months into wipe

keen sparrow
#

Well, let me have a ruler and a saw and a board, And I'll cut it

#

I'll climb up the ladder with a hammer and nail, And I'll nail it

ancient marsh
#

@stark torrent cooooooooome

#

@compact knoll

#

@little flame

short cove
#

Do we have any Romanian here or nah?

soft coral
soft coral
#

tell me you're trolling please

#

before i insult your entire bloodline

short cove
granite coralBOT
soft coral
#

hes right

short cove
#

BTW what currency were you using before euro, Ron and Lyra?

soft coral
#

I'm bulgarian we use "Лев"
Romania uses Leu or Ron as its known by the normies

#

which both mean lion

#

lyra is turkey

short cove
short cove
#

I just think it's kinda disappointing that Vodafone a gigantic company outsources their support to woodskov country

keen sparrow
#

oh dear...

short cove
gritty python
#

that’s a complicated one to unload

soft coral
#

is it their router or yours?

short cove
soft coral
#

???

#

no

#

it cant be both

#

if they installed it its theirs

#

youre just using it

short cove
#

They give you a fritzbox but we cant really run a fritzbox in our system because then our own email server w a MX record doesn't work

#

And for that we previously had a lancom router

soft coral
#

omgg....

little flame
viral egret
soft coral
#

this mid

#

kid*

short cove
#

Which we want to get back to working again, because otherwise the mail server doesn't work

short cove
soft coral
#

isps work like this
if the router gets pinged its not their problem

little flame
#

retard retard

short cove
ancient marsh
#

what is going on here man

soft coral
#

talk*

#

sorry in car

gritty python
little flame
#

ttakk

soft coral
#

or they want extra channels on tv for free

#

fam kys

gritty python
short cove
#

And like all is configured on the previous router

soft coral
#

ooh its for sork

short cove
#

They just

soft coral
#

work*

short cove
#

It's a business connection

soft coral
#

yes

short cove
#

And idk about you but fritzbox is Hella mid

keen sparrow
#

i'll never forget

soft coral
#

in that case tell them to get an engineer manif its business

#

theres usually special protocols for these things compared to regular home connection

short cove
#

@glacial haven your take on AVM/Fritzbox?

short cove
#

2 days ago

soft coral
#

and nothing?

#

omg i didnt think germany is such a shithole

#

good to know

short cove
#

It's a little more then that now

short cove
soft coral
#

not as bad as uk surely

#

SURELY RIGHT

gritty python
viral egret
#

@ancient marsh

ancient marsh
keen sparrow
#

yup, you found an anchor

ancient marsh
#

@stark torrent @compact knoll

compact knoll
#

I need cock artyom

#

I need cock artyom

#

I need cock artyom

ancient marsh
# compact knoll

just look at the posts and laugh while slapping your big belly, dumbass

#

just tagging my smiling friend in some posts

#

but turns out he's a frowning friend

#

fuck you

ancient marsh
#

cheater guy from OEFT discord

#

that sleeps 2 hours a day

#

posted this

cyan garnet
#

plus theres more of their cuck mods in the chat then other posters kekl

ancient marsh
#

bro

#

i think for 1 raid after doing gym

#

you get no gains lmao

native crypt
#

That would be funny if that bug is back

ancient marsh
#

do you see me laughing, bud

viral egret
little flame
#

gg

ancient marsh
#

IM RUNNING M80A1

#

WHAT DO YOU MEAN 857 ARMOR DAMAGE??????

little flame
#

thought it was cryon for a while 😭

#

shouldve shot instantly

compact knoll
glacial haven
#

Just expensive

keen sparrow
#

@soft coral

soft coral
#

WHAT

short cove
stark torrent
keen sparrow
#

I say biggest, but lol, i remember the BFC

soft coral
#

how much are they in ML?

keen sparrow
#

the BFC was the shit back in...

#

2006

#

946 milliliters

keen sparrow
viral egret
#

nvm its a small patch

fast garden
#

Gg man it’s what I get

keen sparrow
#

shit happens

cyan garnet
keen sparrow
#

that's what you would think

short cove
keen sparrow
cyan garnet
keen sparrow
#

you right though, kinda busted that it's not -30

cyan garnet
#

Killed some homo in ultra insta head eyed by his paid carry, 140 hours 28kd snowball speedsmirk

keen sparrow
#

especially with this shit being 900 rpm

cyan garnet
#

Weekend night raids truly are different beasts

keen sparrow
#

can confirm

#

This is what a yellow 4loko feels like

soft coral
ancient marsh
viral egret
#

i did 1 matchof arena

#

my game already is tweaking

keen sparrow
#

lol

#

I forget that Rocka spiked his fucking 'gas station food and drink' mod with this monstrosity

#

lol, ayyyy. I drank 2 of these before my felony OG_Pog

ancient marsh
keen sparrow
#

oh you were asking about the white monster

#

jfc , okay i need to finish the one i opened, clearly

#

no, i'm not drinking booze at 9:00 AM

soft coral
#

here its tradition

keen sparrow
#

yeah no, drinking before 5PM/1700 is generally frowned upon here in the states

soft coral
#

pff

#

pussies

keen sparrow
#

means your life is out of control and you are fucking spiraling

#

now, lol, i used to drink at 8-9 am

keen sparrow
#

because i worked all night

soft coral
#

real men drink on the job

#

omg i was hearing some weird sound

#

some rumbling

#

I thought its my pc but its actually the washing machine

#

phew

keen sparrow
#

I'd go to this place called Shari's, get something called the 'meatlover's skillet' which is like, sausage, eggs, bacon, ham, all over hashbrowns. drown it in hot sauce, and order 2 Coronas to drink. For Breakfast.

fast garden
soft coral
#

nah with you

#

its your fucking keyboard

viral egret
#

dude how im on a scaaaavvvv

soft coral
#

well

#

u clicked on scav

#

the fk else you want

ancient marsh
viral egret
#

on scav

#

i load in on lighthouse as pmc faster than scav on gz bruh

#

this game is dead

soft coral
#

shit game thumbsUp2x

viral egret
#

left raid with ram and gpu

#

why is gpu so common

ancient marsh
#

@stark torrent @little flame @viral egret @remote fox

#

is it time

#

to reassemble

viral egret
#

i wanna lay back and do some long-range playing

#

i have a nice dmr

ancient marsh
#

gimme a minute

viral egret
#

sur

stark torrent
#

anything but lighthouse please

ancient marsh
viral egret
#

collect my ibeenprofens

ancient marsh
viral egret
#

iedy can join for moral support

#

he can watch us die

stark torrent
#

well tell me when u are done then

viral egret
#

if i get to 10 kills i think ill switch off

#

and go interchanging again

#

so i can do some more money farm

ancient marsh
#

@stark torrent @compact knoll a small droplet of hot ramen broth landed on my eyelid very very close to my actual eye

ancient marsh
#

@compact knoll

#

interesting symbol

#

@stark torrent @fast garden

#

mods

#

artem posting Z memes

compact knoll
#

🐘

stark torrent
#

p!mods

torpid sparrowBOT
ancient marsh
#

but if i posted it

#

everybody would be losing their miiiiiiiinds

#

@stark torrent jut come vc fucking bastard man bloody fuck you bloody

#

why can i hear cryon from all the way there

#

he's 18 kilo btw

fast garden
#

Nikita confirmed that seasonal pmc queue is seperate from normal

viral egret
keen sparrow
#

my favourite is the stairwell in labs that made you deaf when you looked at it

viral egret
#

shot thru a wall

#

by a rogue

#

god bless

cyan garnet
#

really

#

As if tarkovs got enough players to split pvp kekwtf

fast garden
#

I mean they kinda need to

#

Not only would it be bad to have seasonal new characters against everyone’s lvl 50+ non wiping, but there’s going to be some kind of other incentives and challenges for the seasonal characters

#

Honestly I wish nikita would make all the bolty tasks like sbih psycho and tarkov shooter 8 or whatever it was non kappa required

#

Maybe I’d go do prestige more

viral egret
#

sbih is ass

#

psycho sniper is luck

ancient marsh
ancient marsh
stark torrent
#

where

ancient marsh
#

they do because they made the retarded decisions like

stark torrent
#

its the end

ancient marsh
#

"oooo there's gonna be new game mechanics exclusive to seasonal pmcs like radiation or whtever"

stark torrent
#

why is this retard hating his own game

ancient marsh
#

but they could have just not gone that direction at all

#

they just chose to, for no reason

fast garden
#

if they did not seperate queues there you would have people with altyns genuinely camping pocket watch etc

ancient marsh
#

me when i kill my game because im bored

viral egret
#

its already happening

#

it doesnt even mater

fast garden
#

except you split queues and it doesnt happen i dont see the problem

#

most serious players are going to be in seasonal pmc anyway

stark torrent
#

i dont mind as long as my maps have movement and i dont wait 5 minutes for a game

fast garden
#

yeah thats the thing

#

and we cant know that ahead of time

stark torrent
#

its not that good imo , i wouldnt mind they allowed you to transfer some gear or shit to seasonal and call it a day + seasonals should get bonuses other sondt

viral egret
#

xal tells me to check tag to see if i kill a guy

#

headshot by nl

#

mossad sabotage

stark torrent
#

like i would rather have geared players in my raid than have dead / high queues

fast garden
#

yes but also we will suposedly have roaming BD among other things for seasonal, so many a few less players wouldnt be a horrible thing

stark torrent
#

i dont know what their ideas are but on the paper right now it does not look like a good idea to split playerbase even more , if we didnt have PvE , sure xD

#

but PvE already took the chunk of permanent players anyway imo PvP should have stayed at wipes

viral egret
fast garden
#

i do wish we had real player count numbers since pve does take a lot

ancient marsh
#

@fast garden come vc man or ill touch you

fast garden
#

im sippin my coffee in hideout man momentarily

stark torrent
#

most people that disliekd wipes play PvE anyway

#

so PvP should have had wipes imo , 6 month wipes are too long imo anyway but so be it

#

but it needs wipes

fast garden
#

instead of 5 days of smugglers that people liked gg

stark torrent
#

and have it last for at least 2 weeks and 2 weekends

#

they need a schedule for this shit

ancient marsh
viral egret
compact knoll
ancient marsh
#

@floral orbit why are you on alt acc

little flame
#

sween? doakes

viral egret
#

@stark torrent

soft coral
#

we finished ghost of tsushima
now we're back on rdr2
@fast garden @native crypt @keen sparrow time for a personality change

#

"HEY MISTER"

#

"MORNING MISTER" 🗣️

ancient marsh
#

just wanna show how long i was on cryon's screen before he blew my head off for 0 reason

little flame
#

god bless the goons

little flame
#

killed 2 things that raid btw

hallow stream
#

wtf

#

just a server with wipes?

ancient marsh
#

????????????? @stark torrent @compact knoll

#

-0.5%

little flame
#

bro

#

thats so fucked

#

unemployed gamers

stark torrent
keen sparrow
#

gonna go die with this on purpose to get it out my stash

ancient marsh
keen sparrow
#

just another day in the SPT modding community

glacial haven
keen sparrow
#

it was more like

#

i gave him the info because i knew what his next question was

#

you gotta understand this dude fucks up his .jsons on the daily

#

this is his custom trader right now

glacial haven
keen sparrow
#

you should see trader assorts for gun loadouts

#

BSG has to have a tool that just makes them automagically

glacial haven
#

I am surprised that you guys really just use json as the baseline with no real editor for it

glacial haven
keen sparrow
#

we threw the idea around

glacial haven
#

You generate them, not manually edit them

keen sparrow
#

problem is

#

every gun is so weird and different

glacial haven
#

Because you can also just very very easily fuck a json up, put an entry in an array with a comma too much or one short and the entire thing is invalid

keen sparrow
#

that it's not really a one size fits all thing

viral egret
glacial haven
# keen sparrow OH I KNOW

Hold up, the trailing comma like this

[
1,
2,
3,
]

is partially invalid, yes but you can set the parser to ignore those

keen sparrow
glacial haven
#

So that one could be fixed with just one more thing passed to the JsonSerializer

keen sparrow
#

data entry json editing is such a problem rn

#

watch this

#

Pigeon is a mod dev

#

it's so bad there are stickers and emotes about it

glacial haven
#

Json also has a very weird thing, normally you enforce one specific type for an array in json but since json is literally "JavaScript Object Notation", it is just enforced by most parsers but not by, you guessed it, JavaScript

keen sparrow
#

i guess they got rid of the 'cannot parse json' sticker

soft coral
#

enter shop
hey mister
welcome welcome all for sale...except the floor boards

#

bro what kekl

glacial haven
#

An array can hold a number, a string and an object in a json

#

And it would still theoretically be valid

#

Just most parsers tap out

soft coral
#

she hold my array till I a string of numbers

keen sparrow
glacial haven
soft coral
#

ok thats creative I likethat

remote fox
#

Every clip I see of cryon, he never has painkillers on.

soft coral
#

I'll tell her that one

keen sparrow
#

@viral egret do you not smear golden star at the start of every raid?

glacial haven
keen sparrow
#

wait scratch that, those fucks made golden star 5/5

keen sparrow
glacial haven
#

BSG definitely does, so why not you too

glacial haven
#

You ain't any better

keen sparrow
#

I don't know how to code something like that

#

but the guys that do know how to code

#

didn't

glacial haven
keen sparrow
#

who you gonna be mad at, the guy in the wheelchair for not walking or the lazy biped that's just too lazy to walk

glacial haven
#

Just nag one of those retards about it enough and eventually he'll either block you or do it

soft coral
keen sparrow
#

we begged him to make botgen for like a year and a half

#

guess what WTT still doesn't have

fast garden
keen sparrow
#

this thing that does like 40% of gun modding for you

glacial haven
keen sparrow
#

it's actually amazing that outside of BSG there are only 5 people in the world that can make guns for Tarkov.

keen sparrow
glacial haven
keen sparrow
#

this isn't for json

glacial haven
#

I honestly don't care enough to ask more about it

#

lmao

keen sparrow
little flame
#

how you know thee is fighting someone even if he doesnt say anything

winged mica
viral egret
#

who sold bibi to fence

soft coral
#

u can treat it as a survival game

#

instead of spam buying buiscuits and salted meat u can make arrows and hunt pigs and other stuff to cook food and eat to replenish core health and stamina and such

#

craft tonics and all those

#

its not a strict system

#

which is why u can kind ofignore it

little flame
#

sheesh

viral egret
ancient marsh
#

should i run this kit next time

#

6 hour scav case btw @stark torrent @compact knoll

#

bro where tf would i use ts

#

what quest is this

little flame
#

bro

#

what is this

#

this is not what i searched for

#

HAHAHAH

viral egret
#

@fast garden is this xaL

#

didnt know he was part of valve dev

little flame
ancient marsh
little flame
#

folk

ancient marsh
hallow stream
#

@fast garden

#

theres no fucking way you just got iedy on DEADLOCK

#

WTF

#

Thee is singlehandedly curing cancer in the tarkov channel

compact knoll
hallow stream
#

dont you drink monster bro

viral egret
hallow stream
#

doing gods work

fast garden
#

i am trying to show them peak

hallow stream
#

you CONSUME that shit

soft coral
#

played red dead for a couple of hours

#

did nothing but ride around

#

hunt animals

#

and kill a couple of driscols

#

ahhh peak PepeHappy

#

and I saw a rainbow too
@fast garden @keen sparrow

compact knoll
stark torrent
compact knoll
little flame
#

thats wild

#

t negotiator

floral orbit
#

@viral egret what's that minecraft mod called, the one you and Dimi play?

little flame
#

speakbigtrouble craft

floral orbit
#

thanks

soft coral
#

rdr2 has broken backwards working hdr

#

just tested with every possible setting

#

its broken and works backwrds

#

idk how rockstar managed that

#

yeah its straight up broken

soft coral
#

and I know its borked because even menus are affected by it
The tone maps for colors and the blacks are just fuckign broken and somehow appear washed out when HDR is turned on
despite the fact that my monitor can do like1000 nits easily without frying the image

#

cinema

fast garden
#

Marine bots

native crypt
#

No point in discussing or arguing anything there

fast garden
#

i mean its irrefutable

hallow stream
fast garden
#

YOU CAN SEE EVERY PLACE I SHOT HIM

#

HAHAHAHAHA

gritty python
#

suffering is over

fast garden
#

just three guys shooting 30 pen bullshit at each other while wearing class 5-6 armors

gritty python
#

jfc

fast garden
keen sparrow
pseudo storm
#

oh no

#

its that gun

keen sparrow
#

Apparently, after a year of bugging tf out of people that have old 3.9 installs

#

it was on my fucking Google Drive this whole time

fast garden
#

i hate the art channel man why do i go there

keen sparrow
#

i like you say that after the pink glock was posted here

brave aspen
fast garden
#

man

#

i need to go farm arena to get enough tokens or whatever to get the white mesh ulach

keen sparrow
#

It does work

#

In fact the guy that re-built it even added all the new red dots to the mod_sight filter

#

so it's even better than when i made it, lmao

#

can put an Eotech EFLX on this bitch.

keen sparrow
#

I say 'patches' it was literally one patch

brave aspen
#

oh was that the idf / ukraine / russia whatever patches ?

keen sparrow
#

the third temple patch

brave aspen
#

something of that nature

#

ok yeah

keen sparrow
#

SPT lost their minds at that shit, lol

brave aspen
#

i got someone i can ask gimme a sec ill message them

fast garden
#

what were they?

keen sparrow
fast garden
#

he was who made the artem trader

#

?

keen sparrow
#

yeah

#

this was one of the patches

brave aspen
keen sparrow
#

probably

#

best bet is to take any bundle with 'patch' in the name, roll all of them into a zip

#

it'll probably be small af

brave aspen
#

dm’d you

keen sparrow
#

ty ty

fast garden
#

i cant read hebrew but it looks like NWO

keen sparrow
#

Messiah

#

or 'Meshiach'

fast garden
#

so uh

#

what was the outrage

keen sparrow
#

SPT claimed it belonged to a hate group

brave aspen
#

and amands gfx

keen sparrow
#

leftoid furries being pro-palestine, who could've guessed

keen sparrow
pseudo storm
brave aspen
#

they’d probably let a hamas drip set stay on the forge

#

idk i try my absolute fucking hardest to just lookup questions over there and not talk

#

cesspool of weird shit going on there

keen sparrow
#

so here's the KermitTea

#

There was a guy, idr his name

#

rude af, barked at people for not helping him, was going to monetise the UABE system

#

just an overall PoS

#

He wanted to add russia and ukraine patches to a mod yeah?

#

so he asks SPT staff for permission to do so

#

they told him no and guess what this little rat does

#

'b-b-b-but Artem has IDF patches'

#

little fucking narc

#

worst part?

#

the spineless little twerp was gloating about getting Artem pulled for days afterwards

#

omfg everyone hated that dude

#

and that is why i pulled all of my mods off of the SPT hub

#

Also the Tavor X95 i made had a star of david on it for like fucking forever kekl noone batted an eye

brave aspen
#

jesus christ

keen sparrow
#

what a combo for a scav to have in his pockets omegaxff

keen sparrow
pseudo storm
#

Oh shit, Tarkov predates russian sanctions! Its the real deal!

keen sparrow
#

I did find it funny that they were up in arms about a supposed 'hate group' patch being added to a game where you find people with their hands cut off

#

pig heads

#

the dildo room on streets

#

a charred dude inside a stack of burned out tires

#

Some people need to grow tf up

fast garden
#

i got 35 min in the customs raid imma use the 35 minutes

#

yeah also thats a whole lot of worthless nothing to pull some cool customization out through patches

#

waahhhh i dont like that country no patches from them

#

no russian patches in my russian game

#

what did the spt devs mean by this

keen sparrow
#

they're fucking stupid, idk

keen sparrow
#

What sealed the deal for me was them not reversing the decision when i showed them screenshots of the guy gloating about it

brave aspen
#

western goods?

#

or some thing like that

keen sparrow
#

yessir

brave aspen
#

i’m actually on my first ever tarkov break and i’m back to playing gamma after over a year but the mental sickness never fully leaves so ofc im still browsing tarkov related channels lol

keen sparrow
#

you're stuck in that loop too huh?

brave aspen
#

i got kappa last week and i need a prolonged break and i haven’t checked out gamma for like 20 months

brave aspen
#

if i’m not playing im either thinking about it or looking it up

keen sparrow
#

SPT -> GAMMA -> SPT -> GAMMA -> SPT -> GAMMA -> SPT -> GAMMA ->

brave aspen
#

even if i don’t want to

keen sparrow
#

I broke free of it for about 400 hours downloading like 500 mods for Fallout 4

fast garden
keen sparrow
#

could try that

keen sparrow
brave aspen
#

it’s ruined video games for me honestly

#

like if i’m being totally honest

#

just being stuck in this extremely specific loop of the same two suffering simulators

keen sparrow
#

it's so understandable though

#

wtf else are you going to play?

#

Ghost Recon Breakpoint?

fast garden
#

i mean if the only thing you like is stuff like tarkov and gamma

#

theres not really alternatives

#

i play a lot of other games but idk

brave aspen
#

i can play horror games but any other shooters feel like cheap pieces of shit to me lmao

keen sparrow
#

it's like these two games have nailed down a stronger dopamine treadmill than a bethesda game could ever hope to achieve

fast garden
#

eventually something in a bethesda game pisses you off enough that you insta drop it

pseudo storm
keen sparrow
fast garden
#

sandstorm was fun when i played it on console

#

because everyone was equally average

#

go to pc and im getting genuinely slimed the fuck out by veterans

#

rb6 siege peeks

#

i liked it because i could chill and play it on console

#

unironically lower cortisol in tarkov

keen sparrow
#

oh hardly anybody plays sandstorm for the MP

#

camp city that game is, holy fuck

fast garden
#

kabooms

#

but yeah

#

it was fun when people wanted to have fun in it

#

even then the pve is

#

alright i guess

#

the novelty wears quick

keen sparrow
# fast garden kabooms

used to joke with my ex that everytime we'd join a sandstorm co-op server we'd get earraped by multiple explosions going off at once

#

there are always explosions happening in that fucking game

fast garden
#

how to beat campers

#

kaboom

#

gg

keen sparrow
#

hentai glock claims her first victim

pseudo storm
brave aspen
keen sparrow
#

yeah i wanna try that too

#

supposedly legendaryily frusterating game

brave aspen
#

i have to say after being away from gamma for this long it’s absolutely spectacular to come back to god damn

fast garden
#

there are more genres than ball busting fps guys

#

i promise

cyan garnet
#

Squad legit has the best and most satisfiying sound design during a firefight

#

Easily the best battles in any game

pseudo storm
# cyan garnet squad is a peak shooter

Squad is great too, but what would make it more fun is to spawn as fast as possible like in the old battlefield games; complete player swarm makes more fun and memorable times

keen sparrow
fast garden
#

icl squad and arma do not feel good to me at all

cyan garnet
fast garden
#

they feel very obtuse? or heavy without intention? not sure how to make it make sense

cyan garnet
#

Super super clunky

fast garden
#

like i get that tarkov is arcadey but its not that

#

both arma and squad feel super clunky to me

#

arma especially

pseudo storm
cyan garnet
#

Squads shooting is easy to learn but hard to master cause of how stamina and suppression tie in to accuracy

fast garden
#

apparently they made reshalas guards spawn with the airsoft rigs but with class 4 plates. lol

cyan garnet
#

I really dont like arma tho @fast garden i have some mates that love reforger its just the jankiest shit ive ever played

#

The shooting feels so bad

fast garden
#

everything feels bad in that game

#

played smoother gmod games

#

speaking of

#

novigrad is hysterical

cyan garnet
#

I feel the same about dayz actual boredom/jank simulator

#

Ill never match the patience of a man in a ghille suit laying in a field for 5 hours

fast garden
#

dayz lowk the only game that nails the pointlessness of survival in a survival world like that because the game is actually a snooze fest

cyan garnet
#

Run an hour to get some medicore gun because reasons???

fast garden
#

die to sniper prone for 5 hours

#

repeat

#

ad infinitum

cyan garnet
#

I have a mate who loves it and made me play it abit never again

fast garden
#

now a real shit game