#│nightclub

1 messages · Page 68 of 1

jolly mason
#

but brodie the game is goodd

paper ridge
#

please gimme feedback on it because I think it'd be good for the multiplayer meta 🙏

iron rune
#

skill issue

#

burner phones are very useful

formal ferry
#

it always makes you feel like a douche when you shoot someone random and everyone gangs up on them, then they proceed to gang up on you

#

and it repeats

iron rune
#

provided i can keep track of the info it gives me

jolly mason
vocal granite
#

Buckshot Roulette is back with its new 4 Player multiplayer update, the first possible video of which I play with a few other creators listed here:

LumpyTouch https://www.youtube.com/c/LumpyTouch
ScottFalco https://www.youtube.com/@ScottFalco
VinnyVinesauce https://www.twitch.tv/vinesauce

Game Info: https://store.steampowered.com/app/2835570...

▶ Play video
zenith iron
#

No it is good I won't lie but sometimes randoms be so ruthless and unforgiving I gotta take a break for a few hours

iron rune
#

mp is a lot better with friends lol

jolly mason
#

unpopular truth: if you dont keep count of the shells in the current phase your loss is your fault and in that case burner phones are useful

iron rune
#

very good way to ruin a bunch of relationships >:D

zenith iron
#

100%

formal ferry
# iron rune skill issue

still the thing that makes burner phones less useful is the fact that you get always like 2 or 3

jolly mason
sweet horizon
formal ferry
#

which takes up slots which you wouldve prob used for better items

jolly mason
#

having too many isnt always useful

#

more than 2 is too much

wicked osprey
zenith iron
iron rune
#

it's always so hilarious when that happens

formal ferry
#

they're too generous with the phones

wicked osprey
zenith iron
#

Like I seen somebody use three beers when I saw only two and he didn't use adrenaline to steal anything

paper ridge
#

I really think they should add item weighting to the game

tawdry otter
jolly mason
wicked osprey
#

but in a hypothetical "competitive" setting, which i have no clue why anyone would want to play comp buckshot but that's besides the point, it'd be nice.

paper ridge
#

also I just said "meta" because that's what it is

#

my point more so is that the game has a lot of gambling and one of the most core rules to making a good game with gambling is that you want to make sure the gambling isn't truly gambling

#

If you make it actually gambling then a lot more of the game starts coming down to RNG, and no one likes RNG

wicked osprey
#

just my take.

paper ridge
#

yeah, and just my response lol

wicked osprey
sweet horizon
#

my take is that if the game about gambling involves gambling (so the RNG), it's okay for me

#

like even a pro can lose due to gambling being gambling

wicked osprey
#

agreed. imo, buckshot roulette is always gonna be a game of roulette in the end.

jolly mason
#

may as well put in real money

wicked osprey
#

i can GUARANTEE you, someone has or will put real money on the line with some friends in this game.

#

it's gonna happen.

jolly mason
#

thing is tho

jolly mason
jolly mason
sweet horizon
jolly mason
#

and youd have to be 18+ cus it is gambling under legal conditions

wicked osprey
jolly mason
#

eh idc im not into that stuff

#

(pov i play cs2)

wicked osprey
winter geode
#

Guys i opened the online mod who want to come? 109775241223083681

jolly mason
#

ah yes its a mod

sweet horizon
#

I just wish that BR won't become a huge matchmaking game with ratings etc., for me that's a cozy game to play with friends or sometimes random people for fun

wicked osprey
#

100%, this is the most casual a multiplayer game gets.

sweet horizon
#

maybe not cozy, I just like the atmosphere so much

wicked osprey
#

still though, not saying we can't have some tweaks. i think people talking about the jammer have a point.

#

but most of the "balance" should just be left up to customization by the host, and that's what we're getting so 👍

sweet horizon
wicked osprey
#

no doubt.

iron rune
#

I also had that bug and fuck was it a throwback

wicked osprey
#

so it WAS a bug. i was torn between it being a bug, or some cheater trying to troll.

iron rune
#

there used to be a thing called the "vellon bug" where you could basically skip arbitrary amounts of game code when you have the gun

#

in singleplayer

#

you had to spam at like 30+ cps immediately after clicking the gun to pick it up

#

speedrunners used that bug to skip to the end and win the game without playing the 3 rounds, but sometimes you can skip too much/too little and it would cause the game to bug out

#

like turning all the bullets in the gun into blanks

sweet horizon
#

for the first time we played (right after the launch) it was buggy af, everyone was experiencing desync, and it looked like 4 crazy people just were playing with their own rulesets lmao

iron rune
#

or duplicating the shotgun, messing up the animations, etc.

#

multiplayer had some weird variation of this ancient bug on release it seems like lol

wicked osprey
#

gotcha, interesting!

sweet horizon
wicked osprey
iron rune
#

yes, I was really surprised to see it after so long during a random multiplayer game

wicked osprey
iron rune
#

I missed my old friend

wicked osprey
iron rune
#

the game glitched out a little bit when somebody disconnected but it fixed itself in a few seconds

#

other than that I didn't encounter any bugs on current patch

wicked osprey
#

on current patch, i haven't seen any bugs either. only ones i saw were right after the beta launch.

#

everythings been looking good

shy crest
#

is it just me or does the burner phone always tell you what the last shell is in multiplayer

wicked osprey
#

if there's 3 shells in there, it does. otherwise it's random between the third and the last

#

in my experience at least.

shy crest
#

i see ok

dire vault
#

btw it won't tell you the second shell in multi

shy crest
iron rune
#

excerpt from multiplayer code:

func GetBurnerPhoneString():
        var current_sequence = game_state.MAIN_active_sequence_dict.sequence_in_shotgun
        var final_string_p1 = "" #ex: THIRD SHELL ...
        var final_string_p2 = "" #ex: ... BLANK.
        var final_string = ""    #ex: FIRST SHELL ... (line break) ... BLANK.
        if current_sequence.size() <= 2: final_string = tr("UNFORTUNATE")
        else:
                var randindex = randi_range(2, current_sequence.size() - 1)
                var verbal_index = randindex; verbal_index += 1
                var verbal_shell = current_sequence[randindex]
                if verbal_index > 7: verbal_index = 7
                match verbal_index:
                        3: final_string_p1 = tr("SEQUENCE3")
                        4: final_string_p1 = tr("SEQUENCE4")
                        5: final_string_p1 = tr("SEQUENCE5")
                        6: final_string_p1 = tr("SEQUENCE6")
                        7: final_string_p1 = tr("SEQUENCE7")
                match verbal_shell:
                        "live": final_string_p2        = "... " + tr("LIVEROUND") % ""
                        "blank": final_string_p2 = "... " + tr("BLANKROUND") % ""
                final_string = final_string_p1 + "\n" + final_string_p2
        return final_string```
#

sorry for the huge block of text lol

tawdry otter
wicked osprey
#

i wanted VC, thought it would be funny and it probably could be, but now seeing how many people rage quit or how many hosts just kick people when they die, it could also get very not funny

tawdry otter
wicked osprey
vocal granite
vocal granite
fair terrace
#

in the multiplayer thing, what does it mean if you are the chimney

zenith iron
#

LMAO

#

Nah but it's the person who smoked the most cigarettes to regain their health back

fair terrace
#

ohhh

fair terrace
#

alright thanks

zenith iron
#

No problem

tame scaffold
#

Is Multiplayer released or still beta?

abstract arch
#

beta

sweet horizon
abstract arch
#

gang gang

tame scaffold
#

Ok thanks. Thought its today

tired stone
#

109775241228677691

late mirage
#

Buckshot on the work computer, lmao

zenith iron
little rapids
#

Hey, where do I find the beta codes?

placid bramble
placid bramble
tawdry otter
# vocal granite i didn't aaa

Playing Buckshot Roulette Multiplayer Against The Creator of Buckshot Roulette, Mike Klubnika!

Buckshot Roulette is availabe now on Steam. The Multiplayer Update launches Oct 31st: https://store.steampowered.com/app/2835570/Buckshot_Roulette/

#buckshotroulette #buckshotroulettemultiplayer

00:00 Buckshot Roulette Multiplayer
11:13 Hardcore Bu...

▶ Play video
high torrent
#

109775241230277221

safe cave
#

109775241230515069

naive badge
#

@safe cave vc or nah?

safe cave
#

nah

naive badge
#

alright

#

@safe cave my game crashed, sorry

safe cave
#

its fine

#

mine crashed to

shell wave
#

So it you guys who I just played with?

dusk dune
#

109775241231089547

#

no vc

dusk dune
#

109775241231089547

final lichen
#

One more person gents

jolly kraken
analog vine
#

quien para jugar

#

pasen code

lone flicker
#

109775241233461507

jolly kraken
#

Am I ever gonna find a game that'll last past round one

ionic yew
#

Code?

willow vale
#

109775241233684182

ionic yew
#

109775241233685381 Not team

lone flicker
#

109775241233461507

ionic yew
#

109775241233866291

jolly kraken
#

legend

#

I have the winning 1M achievement but not full house or know when to hold em

undone plume
#

Anyone up?

#

109775241232586509

analog vine
#

joint it

#

109775241234763810

#

join

#

4 persons

#

one round

#

if in 1 minute no people start

dusk dune
#

109775241234952950

#

109775241234952950 1 round

grave void
#

anyone knows what the socket order is?

midnight hatch
#

Anyone wanna play ?

eager stream
#

I very much would like to try multiplayer beta

chilly ridge
#

where

#

is multi

#

channel

#

code

midnight hatch
#

Just... Go to #│news and there is all steps

eager stream
#

found it

midnight hatch
#

Good

#

If anyone wants

#

109775241235954987

#

Join

eager stream
#

is there in game voice?

midnight hatch
#

Only by voice channels

#

But I won't make 'em

zenith iron
midnight hatch
eager stream
#

i have joined

midnight hatch
eager stream
#

how do we make a private vc?

midnight hatch
#

I guess by commands

#

Anyways, we can play 1v1

#

If you want

eager stream
#

works for me

midnight hatch
#

Good

#

Then, good luck

eager stream
#

glhf

midnight hatch
eager stream
#

welp gg lmao

midnight hatch
#

Gg

eager stream
#

let's see if we can get two more people

#

oh that was fast

midnight hatch
#

Hell ye

#

Let's go

#

Gl

#

Well, round 1 for me done

eager stream
#

WHOOPS

#

nice one lol

midnight hatch
#

And that was rage quit

eager stream
#

you hate to see it 😔

hoary siren
#

anyone down to play with the cow?

eager stream
#

oh

#

game crashed

midnight hatch
#

Well gg

eager stream
#

gg lmao

midnight hatch
#

I heard people say that game crashes often

quaint hinge
#

hey guys where to find the beta code?

pseudo flickerBOT
# quaint hinge hey guys where to find the beta code?

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

midnight hatch
#

Bot answered you

eager stream
#

optimization and bug fixes and such

midnight hatch
#

And then headshot

quaint hinge
midnight hatch
#

To all guys at the table

midnight hatch
#

And yes, to answer something that you should know

eager stream
#

I will say I'm not sure how I feel about multiplayer feeling faster, there's not much buildup to the BANG

midnight hatch
#

For lobby ID, you should head at #│lfg-room-codes to copy just ID, and then, back to game, click "JOIN WITH LOBBY ID" and that's it

eager stream
#

but it's still fun, I can see my friends and I having a good time with this lol

midnight hatch
midnight hatch
#

And then you just give them headshot

eager stream
#

single player mode is for the tension/skill and multiplayer is for the silly funny

eternal heath
#

Looking for players, want to try a 4 player game

tropic wharf
#

We had 2 Shotguns, mid and left

sly dome
#

hiii thats me in the screenshot

tropic wharf
#

now he has no lives and it still alive the beta is a bit bugged

sly dome
#

yea 😔

tropic wharf
winter geode
#

WHY ME

#

Took youh that fucking long to decide to fuicking shoot me

#

I fucking disconnected cuz my tool paused itself mid game

#

Imma buy the full version so i wont have this problem anymore

smoky dawn
pastel sable
#

109775241241580336

fossil glade
#

what's up with two or even three people just deciding to gang up on me for the rest of the round 😭

jolly kraken
#

People can be feral

#

Its now a fight for control over the shotgun the longest

frank parcel
#

YO

#

I AM HERE

#

FOR PLAYING ONLINE

#

ANYONE PLAYING HERE?

#

SEND CODE

winter geode
#

Yeah yeah

frank parcel
#

SEND

#

or i should send you?

warm marsh
#

How do i get the beta code ? i´ve spend like 1 hour looking for it

pseudo flickerBOT
# warm marsh How do i get the beta code ? i´ve spend like 1 hour looking for it

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

winter geode
#

My damb hdmi cable

frank parcel
#

109775241242228301

jolly kraken
#

This game really tests your patience

frank parcel
#

time will start in 5 min, come quick

#

109775241242228301

#

time lefts 4 min

winter geode
#

While i wait im gonna purchase that plan

frank parcel
#

bruh

winter geode
frank parcel
#

3 mins lefts

#

2 players joined

#

2 mins lefts, 3 players joined

#

1 mins lefts, 4 players joined, and game started

maiden spoke
#

109775241242876281

#

join 🙂

winter geode
#

500 Cigarettes

frank parcel
#

sorry, i got afk

winter geode
#

it crashed

#

smg

#

109775241243310219

torn viper
#

anyone on?

rain plume
#

yes

torn viper
#

code?

rain plume
#

109775241243865704

torn viper
#

im in

peak vine
#

Opinion: writing down the order of shots is cheating: yes or no?

tawdry otter
torn viper
#

ggs

rain plume
#

gg

tawdry otter
winter geode
sand goblet
#

кто хочет присоеденится к пати из 3ёх человек?

old linden
old linden
#

💀

fathom stone
#

109775241243309055

#

2more for a party of 4

fluid halo
#

one more pls

old linden
# sand goblet ok

Я не говорю по-русски, чувак, я использую Google Translate, надеюсь, я не сказал: «Пошел ты на хуй» или какую-то ерунду 😭

#

google translate

#

awesome

tawny lotus
#

when does it actually release

old linden
tawny lotus
#

so today?

old linden
#

for u ig

maiden otter
#

what time?

old linden
#

30th for me

cyan axle
#

109775241244430866

old linden
cyan axle
#

2 more

winter geode
#

109775241245653214

#

Im open

old linden
#

I hope the mod that keeps saying that doesnt see that

#

💀

winter geode
#

I never saw them

#

but aight

old linden
#

insta posting 😭

winter geode
#

Damn

#

there should be a bot or something idk

old linden
#

chat aint nearly active enough to not allow codes here

winter geode
#

Fair enough

old linden
#

anyways I would join u but I got shit to do, I was just being stupid

#

have fun tho

zenith iron
#

Hardcore Mode is so fun

quartz tangle
#

can you play with 3 or is it only 2 or 4?

zenith iron
quartz tangle
#

Lobby must've been bugged, ty

zenith iron
#

No problem

fluid dune
#

109775241246659070

tawdry otter
jolly mason
#

hahahaha

#

my name isnt mike so no lol

#

BUT ITS INCREDIBLE

mossy marsh
fluid dune
winter geode
#

Congrats mr jeared for the game

mossy marsh
#

nooo you needed money for your kids

winter geode
#

Whomever they are

wispy spire
#

@solemn lance @granite barn (i dont remember emeralds @) yall wanna run some more games again tn? Gonna be making a small group of friends but we dont have 4

solemn lance
#

im down yeah

#

@north creek

fluid dune
#

Or when u can...

mossy marsh
fluid dune
#

bet

jolly kraken
#

I think something that would be nice is the round time limit that resets when using an item, and limits on items you can use per round

#

after my time

#

I think others have the same sentiment

mossy marsh
peak vine
#

I'm fine with the number of items being used, but a reasonable timer between actions would be nice.

mossy marsh
#

its my lucky day for burners

peak vine
#

Of course, my screen cap screws up when I need it. Had a moment where it was 1v1, and the guy disconnects, no one is left but me. But the gun turns to me, and I know there's a live round in there (he had used an hourglass and inverter on it on a round that wasn't the last). But I click the shotgun and the only one left to shoot is, "you".

I was about to say what in the 2011 Creepypasta hell is this?

Fortunately after shooting myself, the match ended.

mossy marsh
#

@fluid dune thanks for the game

fluid dune
#

uhuh

patent prawn
midnight flint
#

109775241249158179

fluid dune
#

109775241249354740 (Not starting till full so wait)

west copper
#

109775241249960086

#

I haven't played multiplayer yet

quiet storm
#

I've played some but I've only won like one time

#

I'm in your lobby

west copper
#

waiting for a 4th

quiet storm
#

okie

west copper
#

i'll start in like 30 seconds if we don't get one

quiet storm
#

no rush just here to have fun :3

#

good luck

grave hound
#

where is the beta code

pseudo flickerBOT
# grave hound where is the beta code

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

quiet storm
#

Are The Dealer and the characters we play in this game a different species?

#

ngl @west copper the round before the 50/50 I didn't know the shell count that was pure luck.

modern quartz
#

buckshot 3D, anyone?

quiet storm
modern quartz
#

it works

quiet storm
#

how and why?

west copper
#

ouch

modern quartz
quiet storm
modern quartz
#

[Moonlight - it’s streaming the game from my PC to the 3DS]

inner mist
#

ggs

west copper
#

oof

quiet storm
quiet storm
modern quartz
quiet storm
west copper
#

nice

quiet storm
#

may the best person win

west copper
#

miscounted lmao

quiet storm
#

fair, did the same thing last round

#

sorry bud

winter geode
#

where do i put lobby id

grand imp
#

who wants to play buckshot mp

winter geode
#

kinda new

quiet storm
#

you can put it here if you want

winter geode
#

no like in game

quiet storm
#

oh if you copy it to your clipboard and hit "join with ID" it does it automatically

winter geode
#

k thx

west copper
#

i'm scared

quiet storm
#

no hard feelings bud

west copper
#

no hard feelings bud

quiet storm
#

lol

#

fair

quiet storm
west copper
#

shouldn't have given them the turn

quiet storm
#

gg

warm turret
#

heehee

#

ggs

west copper
#

gg

torn viper
#

gg

west copper
#

this is way better than doing homework

quiet storm
#

true

modern quartz
#

so does he apparently

quiet storm
#

if I was a DS modder I would be all over that

vale niche
#

what time the multi eventually release?
im on different timezone

quiet storm
#

it should be in like 4 hours?

vale niche
#

would get out from beta asap

#

it was fun playing it with friends

quiet storm
#

Idk if it was allowed but I shared the code with like 4 people and have played with all of them in different lobbies

#

I bought 4 copies of this game for friends

vale niche
#

what a chad

wispy spire
quiet storm
west copper
#

damn I would totally play buckshot on my 3ds if it wasn't broken

vale niche
#

btw will this multiplayer will get update after the release?

quiet storm
vale niche
#

i assume they will for minor bug fixes but...

wispy spire
#

if you gonna make a W game for friends and make it cost less than a snickers bar i know what im gonna spend my money on

vale niche
#

oh yea matchmaking would be great

quiet storm
#

tbh between this chat room and the steam invite system it hasn't been as bad as I thought

vale niche
#

and do they plan to have "timer" on player's turn?

modern quartz
#

i bought the game specifically to play with a friend and havent touched multiplayer yet as im waiting for them to be available

quiet storm
#

I don't know, and tbh I kinda hope they don't? Unless it's like 60 seconds or something to skip AFK players

quiet storm
modern quartz
#

yeah i have

#

just not multi

quiet storm
#

ah ok

west copper
#

someone post a code pls

quiet storm
#

bet

modern quartz
#

ironically i bought the game specifically for them but im also the one giving them the beta code

pseudo flickerBOT
# modern quartz ironically i bought the game specifically for them but im also the one giving th...

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

modern quartz
#

shhhhh i meant the one to opt into multi

pliant willow
west copper
#

oh ok

vale niche
#

if not then it got skipped or something

#

maybe having no activity for a minute or so would be good middleground

#

actually i prob shouldn't say it here, there's a room specifically for suggestions lol

#

it's hella fun tho, hope they expand this somehow

hard locust
#

i am ABSOLUTELY supposed to be studying right now. but, y'know what
buckshot roulette multiplayer time.. havent gotten an opporitunity to play in a while

hard locust
#

something something
" God is dead, and DEALER killed him "

modern quartz
#

how do i get the b/w spiky game over screen

hard locust
modern quartz
#

kk

hard locust
#

also. hey chat, how are you supposed to set your name in the multiplayer

#

wait no it's steam name i am stupid

zenith iron
plain plume
#

0/4

west copper
#

the new multiplayer music is good

#

stressful as hell

wispy spire
#

@solemn lance @granite barn @north creek my other friends are lame and stupid but im playing rn if any of yall want to start a vc/room!

zenith iron
#

And people want to skip the intro it's one of the best parts about multiplayer

modern quartz
#

on steam deck - in the multiplayer build of course - i cant find the soundtrack files supposedly bundled with the game

#

are they not in the beta build?

calm ledge
#

yooo does want to play a game?

solemn lance
wispy spire
solemn lance
#

i'll wait for one more then

granite barn
wispy spire
thin owl
#

Hey guys im blind wheres the code for the multiplayer open beta?

pseudo flickerBOT
# thin owl Hey guys im blind wheres the code for the multiplayer open beta?

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

fresh flame
#

I'm testing out the latest version of the Buckshot Roulette ModLoader. Does anyone want to give it a try?

finite bane
#

yo im down i just need to find the access code

fresh flame
finite bane
#

yeah

undone orbit
#

Probably could've used it a while ago.

zenith iron
#

Yo I got a question for the music enthusiasts in here

#

What genre would the Buckshot Roulette music fall under? I know it's electro/techno but what is the closest genre to the music? House Techno? I am trying to find more music that sounds similar to Buckshot's

uncut torrent
#

how to get code?

#

for beta

normal hatch
uncut torrent
#

ty

tiny schooner
#

3/4

normal hatch
#

3/4

#

one more guys

#

hahaha

pliant willow
normal hatch
#

Oh okay sorry

solid ridge
#

Any idea what time the full multiplayer release will be tomorrow? Preferably in EST

winter geode
#

Tomorrow 2pm?

celest wolf
zenith iron
#

I just saw a ID match a while ago in #│lfg-room-codes with rules. Normal, I thought. Except one of the rules was "no shooting".

#

I was like

undone orbit
#

How do you progress the game then?

zenith iron
#

They all just sitting at a table with a shotgun, staring and talking amongst eachother

undone orbit
#

It's not Buckshot Roulette anymore... Perhaps not even Roulette.

zenith iron
#

Its just Buckshot at that point

jolly osprey
#

no, its just "table conversations"

velvet fable
#

okay mutiplayer for me not stable all 3 game i played 1 of the 4 player crashed

#

it out now with the unlock code

winter geode
#

Returned to the game after a while to get an evenly spread 18 in every category lmfao

#

wait a second

#

18 doors kicked

#

ok I believe that's just a bug 😭

#

Should probably read more smh

undone orbit
#

What is this tool you use?

winter geode
undone orbit
#

...I'm pretty certain a single beer is more than 18ml. 👀

winter geode
#

I think it's a bug due to me playing on the multiplayer beta testing as I swear I kicked down 2 doors

undone orbit
#

The beer's also a bug?

winter geode
#

I don't actually sit there with a spreadsheet counting each shell ejected beer drank etc

#

I just went in to have fun

#

and fun I had

#

Good to be refreshed on the game. It's still a surprisingly simple but fun concept of gambling

#

"YEEHAW"💀

#

the video is the one with the hamburger

#

on #│memes

sweet horizon
winter geode
sweet horizon
winter geode
sweet horizon
winter geode
#

Trial mod number 2

sweet horizon
#

we're in the top 100 again

velvet fable
#

neato

plain frigate
sweet horizon
sweet horizon
#

also we have an all time peak player count, and it's only beta!!

winter geode
#

1v1 text me

young sparrow
#

We are 2 and we need another 2 guys

viscid lotus
sage moth
#

do yall love the schizophrenia update ?

neat talon
#

i enjoy it very much kek

sage moth
#

man shooting ghosts

neat talon
#

ig some can see dead people

brazen iris
#

can we do one pls

white bough
#

ok

brazen iris
#

I ment one

#

round

white bough
#

fuck

brazen iris
#

it ok

bronze hatch
#

Hello guys, when will multiplayer come out?

sage moth
#

but the open beta is still open

paper grail
#

guys my game keeps on typing/pressing "A" from kb

#

any fix?

midnight hatch
wet wadi
#

hi

heady moth
#

does anyone know when today buckshot multiplayer will come out?

long flicker
#

yo why am i scizhophrenic sometimes?

#

and like i kill someone and then i end up killing myself

heady moth
#

Going Out With Style!

long flicker
tawdry otter
olive falcon
#

hey guys will the mp launch have public matchmaking?

halcyon cobalt
heady moth
#

think so?

#

when it launches

tawdry otter
idle venture
#

Pawn is right. The initial release likely won't have matchmaking right away.

heady moth
idle venture
tawdry otter
# heady moth agreed, then it will be like online uno

Hard to beat the feeling of, say, spontaneously forming a mute alliance within 2 moves by shooting the guy across the table, then using the remote and seeing the new next player use their turn to jam the same guy and hit him with a sawn-off.

heady moth
#

fair enough

late scroll
#

heya people

#

any info on update release window today?

late scroll
#

thanks]

heady moth
#

Buckwheat Sucrette is the real hero

winter geode
#

One message removed from a suspended account.

pseudo flickerBOT
# winter geode One message removed from a suspended account.

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

drifting oracle
#

heyaa

late scroll
#

hello

drifting oracle
#

:>

late scroll
#

who'd have thought a simple scary game about a shotgun gambling would amass so many fans?

drifting oracle
#

and annoying

late scroll
#

i ain't saying it's not

drifting oracle
#

ik

#

oop

#

:)'

#

that emoji is creepy

vocal ledge
serene nymph
#

anyone knows when multiplayer will come out

vocal granite
serene nymph
#

ok

#

thx

#

anybody that wants to play?

cosmic spade
#

Isn't it already officially released since it's the 31st?

#

Also happy Halloween for all the Americans

#

And anyone else who celebrates it

serene nymph
#

i guess its still in beta testing

cosmic spade
idle venture
#

It'll be fully released later today.

cosmic spade
#

I mean I want it to release because I'm tired of waiting for codes

cosmic spade
#

Cuz I wanna join sum public lobbies

#

So many codes here that don't work

#

Multiplayer will probably still crash for me in that case? I'll just play l4d2

stuck axle
cosmic spade
#

K

lilac ridge
#

109775241289224410

inland mango
#

Is buckshot roulette playable on a steam deck through steam?

fair shale
#

So guys I have a question what does it mean to be the chimeney?

fair shale
#

Kek

idle venture
#

I don't own a Steam Deck, but a quick search shows that it should work fine.

mild violet
idle venture
#

Or disbanded.

mild violet
#

Yeah

pseudo lotus
cosmic spade
zenith carbon
#

Update fully releeses in less than 12 hours

#

I do hope it gets a major update based on beta feedback

#

The things I think it desperately needs the most is a lobby browser and an adjustable turn time limit

winter geode
#

No music?

winter geode
zenith carbon
#

Not sure what you mean but it's in about 7-8 hours

static hollow
#

how can i play buckshoot roulet multiplayer,someone can give me the code?

sacred talon
#

release date of the multiplayer stills today? not delayed?

pseudo lotus
proven nebula
#

got this game today and damn it's super fun with a friend

#

i think it's a great balance of luck and skill

#

idk how it'd work with 4 people but i'd love to try it sometime

white oxide
#

why do jams only go away once its their turn its so unbalanced

drifting oracle
#

yall how to i make a lobby i wanna play with more ppl but with vc

uneven void
drifting oracle
#

like on here

rancid nimbus
abstract summit
#

109775241301464445

#

my buckshot code

#

whats this?????????????,,

naive badge
#

My man gave his IP adress

abstract summit
#

please does anybody wanna play buckshotr

drifting oracle
#

u wanna join

abstract summit
#

😭

drifting oracle
#

?

abstract summit
#

please

sharp needle
abstract summit
sharp needle
abstract summit
#

im know it

#

so why

sharp needle
naive badge
#

?

granite sundial
#

109775241303014360

#

some one wants to join

pseudo jacinth
#

@visual star what channel are you in?

fast remnant
#

What’s the beta code??

pseudo flickerBOT
# fast remnant What’s the beta code??

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

autumn flicker
#

109775241304848456

#

Lobby code

granite sundial
#

joining

autumn flicker
granite sundial
#

joinerd

#

im shrek

grim oak
#

109775241305962419 +2

shell wave
#

109775241306167668

pseudo jacinth
#

@icy surge do we do anything about that guy in the game

raw narwhal
#

How to start

winter geode
#

who want some backshots

granite sundial
sleek sparrow
#

109775241307273247 join

granite sundial
granite sundial
sleek sparrow
autumn flicker
#

Why won't it let me put in lobby codes?

granite sundial
sleek sparrow
granite sundial
#

the game crashed

sleek sparrow
#

okay

pseudo jacinth
#

@icy surge sorry, need to go, bye

short cape
#

REMOVE THESE HACKERS FROM THE LEADERBOARD-

junior patrol
#

109775241301277988

grim oak
#

109775241311190877
+1 fast 2 rounds

fallen marsh
severe trout
#

109775241312243736 Anyone?

#

wanna play?

narrow bridge
#

When will update come out?

gray sonnet
#

how to play multiplayer

#

???

severe trout
#

go to steam

gray sonnet
#

yea

#

and

severe trout
#

and go to properties and beta

gray sonnet
#

yea

severe trout
#

and put in the beta code

pseudo flickerBOT
# severe trout and put in the beta code

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

severe trout
#

oh here

untold jewel
#

how do you join on code?

dapper fulcrum
#

hey fellas, 109775241313131732

#

@untold jewel

#

you want me to start ?

#

1v1 ?

low raptor
#

hold up

untold jewel
#

well, if you want we can wait for more

low raptor
#

I'll join you

dapper fulcrum
#

aight aight

#

fyi im not in a VC

#

can't join

#

im starting

low raptor
#

Let's go! Good luck and have fun!

untold jewel
civic ginkgo
#

109775241314466230
got a game for whoever interested

low raptor
#

game crashed :c

dapper fulcrum
#

ah man damn

pseudo flickerBOT
#

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

dapper fulcrum
#

@low raptor @untold jewel good game guys!

low raptor
#

It was fun!

#

Well played

gaunt ingot
#

109775241315065382

sage prism
#

anyone tryin to play?

sage prism
#

109775241315497691

#

trying to get a full lobby anyone wanna join?

distant eagle
#

109775241315712262 need some people to play

brave flicker
#

so many gamblers have died at the table in the last 24 hours...

distant eagle
#

also theres a vc

atomic delta
#

109775241315907222 come

#

109775241315909017

#

109775241315909017

grand robin
#

how do i get a code

sage prism
#

and to join one simply copy an ID to your clipboard and click join

sweet raft
#

where update

atomic delta
#

1 player

#

109775241315909017

#

come

fallen marsh
#

109775241301277988
2 player

bronze fjord
#

109775241316840812

#

tap in

bronze hatch
#

multiplayer is canceled today?

idle venture
#

It's not, the release is in roughly 4.5 hours.

winter geode
#

bro

#

I cant

proud iron
#

109775241317642898

#

join up

shadow night
#

hi

solar hornet
#

Do we know the time for the offical release for the multiplayer?

#

Oh wait never mind

nimble phoenix
#

Its releasing later today

vague laurel
#

anyone wanna play multiplayer?

nimble phoenix
#

me

vague laurel
#

letsss play tgt

#

i actually have no idea how

fair frigate
#

how play on multiplayer mod ?

nimble phoenix
#

its not a mod

#

its the beta before the full thing is released

vague laurel
#

how do you make a room??

dense hawk
#

the current version is 1.2.2?

west copper
#

do you have the beta installed?

nimble phoenix
fair frigate
#

how download the beta ?

nimble phoenix
#

and click on copy code id

dense tapir
#

Buckshot>properties>Betas>nOp5HZUutg3LwfLMlOMi

nimble phoenix
pseudo flickerBOT
# nimble phoenix put in the beta code

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

vague laurel
#

i did. but it didnt do anything

dense hawk
#

the current version is 1.2.2?

vague laurel
#

is it my wifi being laggy T-T

#

ohhh

#

109775241318790221 heree

#

how do you start it DANG

celest wolf
#

Probably click join

#

You have it copy

vague laurel
#

join mine ig

#

which to click

nimble phoenix
#

click on start

#

bottom right

regal kelp
#

i am hear

vague laurel
#

eh..

#

how about you guys make a room

dense hawk
#

we just got full release?

fair frigate
#

somone for play ?

regal kelp
#

so... how do we start?

nimble phoenix
bronze fjord
#

gg

sweet raft
#

109775241316840812 join

#

copy and paste the code in game

vague laurel
#

109775241318790221

#

1 more ig?

sweet raft
#

same

#

one more

vague laurel
#

make a new room?

sweet raft
#

join

#

109775241316840812

night thicket
#

so uh

#

how do i play multiplayer

#

?

dapper fulcrum
#

join the beta from steam

ivory mauve
#

Yo can I join or is it full

night thicket
dapper fulcrum
#

yeh but its still in beta

sweet raft
#

okay its full

#

how to start the game lol

ivory mauve
#

Aight

night thicket
dapper fulcrum
#

check this one brother @night thicket

regal kelp
#

109775241318790221

dapper fulcrum
#

multiplayer

#

oh it didn't pop up

tall thorn
night thicket
sweet raft
#

brah

nimble phoenix
#

@vague laurel
i can create one

dense tapir
vague laurel
#

okay

dapper fulcrum
#

here bro

nimble phoenix
#

109775241319888021

golden whale
#

dang people stop leaving from your lobby while yall are hosts

dapper fulcrum
#

check this text channel

#

you will see it

golden whale
#

i dont know how to start these

night thicket
regal kelp
#

bruh there whas no satrt button

ivory mauve
#

is there no start button?

regal kelp
#

idk man

tall thorn
#

under leave

#

bruh

regal kelp
#

ye some people are saying there is no start

golden whale
ivory mauve
#

Holyy

night thicket
#

it told me there was an error

golden whale
#

109775241319888021

#

2 people needed

night thicket
night thicket
regal kelp
hushed geyser
golden whale
#

oml

#

host is afk

#

join mine

#

109775241320215725

night thicket
#

done

#

can you invite me to vc?

#

@golden whale

#

uh

#

my screen is just black

hushed geyser
#

mine too

night thicket
hushed geyser
#

no

vague laurel
#

i thin my game is bugging

#

k

old steeple
#

is mp still in beta

vague laurel
#

when is the full release?

ivory mauve
#

Well Multiplayer is interesting

#

Very fun

oblique charm
#

guys

#

what in channel can i claim pass for beta test?

woven geyser
regal kelp
#

GG @hushed geyser

fair frigate
#

someone to play 4 ?

regal kelp
#

me

fair frigate
#

109775241321345394

regal kelp
#

sry

#

109775241321348079 4 players

vestal wing
#

when will the mp mode update

regal kelp
#

@vestal wing join?

night thicket
#

bruh

#

someone left while in the game

#

anyone hosting?

regal kelp
#

me

night thicket
vestal wing
#

just notice it will update in 10/31

regal kelp
#

109775241321348079

night thicket
celest tendon
#

do y'all know if the buckshot shirt is limited time orhas limited number of sales?

regal kelp
vestal wing
#

no its 11/1 in China

night thicket
vestal wing
#

for long waiting

night thicket
vestal wing
#

this DAY

night thicket
regal kelp
#

na

#

hold on

night thicket
#

aight

regal kelp
#

start?

night thicket
night thicket
#

i wish that there would be voice chat in game

night bramble
#

When is the update dropping?

night thicket
#

i give you a turn and you shoot me

iron rune
#

buckshot roullette just got updated

wicked ice
#

cool

shadow parrot
#

yooo who wants to play??

wicked ice
#

me

shadow parrot
#

here is the code

#

109775241323082313

#

someone else??

wicked ice
#

dosent seem soo

vague laurel
#

how to join someones room?

zealous herald
#

copy the code and then click join with lobby id

shadow parrot
#

gg

#

DAN you wait for some more to enter??

wicked ice
#

yeah lets wait

#

the game is meh in 2

shadow parrot
#

who wanna play with us??

shadow parrot
bright mortar
gaunt ingot
#

109775241324270980

shadow parrot
zealous herald
#

ayy

urban viper
#

WOOO GAMBLING

zealous herald
#

what are the new items in question

#

jammer and remote?

mild violet
craggy blade
#

yo guys whats the code to beta multi?

fast burrow
#

does anyone have a code?

zealous herald
regal kelp
#

gg

zealous herald
#

its literally out

wicked ice
#

hm

regal kelp
#

that wahs dunny

shadow parrot
#

remote it works like the shuckles for a player

iron rune
zealous herald
#

no beta

#

try restarting steam

vocal granite
iron rune
grave perch
#

Oh this is the perfect Halloween gift

fast burrow
#

109775241324959024

zealous herald
#

get off the beta branch and update the game

golden whale
#

@regal kelp ggs

iron rune
#

yeah that's what i did

#

as you can see in the screenshot i sent

regal kelp
iron rune
#

ah okay now steam is picking it up

idle fern
#

109775241324960514

gritty temple
#

109775241324958374

#

1/4

#

2/4

#

3/4

calm swallow
#

Still open?^

gritty temple
#

yea

#

join

calm swallow
#

One sec

gritty temple
#

nvm

#

its taken

#

sry

calm swallow
#

It’s ok

#

How do I type in lobby of

#

I’m new

young raft
#

mee to

night bramble
#

I have a lobby If anybody wanna join

calm swallow
#

Says clipboard does not accept lobby id

night thicket
#

uh guys

rich glade
#

guys need someone to play in mp ive got lobby code

#

its 109775241325116477

night thicket
calm swallow
#

Where do I rype it I don’t got an option

#

Type

night thicket
#

is my ssd screwed?

high raft
#

anyone wanna play 109775241325278404

calm swallow
#

I’m down but where do u type the damn code in dawg

winged vigil
#

i want know beta code

pseudo flickerBOT
# winged vigil i want know beta code

IN SHORT:

PLEASE put all lobby codes in https://discord.com/channels/1158444754325999747/1300490606166147103

Follow our Steam Page!

topaz oracle
worldly egret
rough plover
#

Did they add anything new in the official multiplayer update or is it the same as the beta?

novel dock