Singletank Bombs

For feedback on the game code and design. Feedback on server rules and playstyle belong in Policy Discussion.
Post Reply
User avatar
Hathkar
Joined: Sat Jul 08, 2017 12:41 am
Byond Username: Hathkar

Singletank Bombs

Post by Hathkar » #464037

Is there a reason these need to exist? I thought canister bombs were removed for a similar reason.

You can spend 10 minutes making your bomb mix, then print as many plasma tanks as you need from a lathe for practically infinite maxcap bombs.
User avatar
wesoda25
Joined: Thu Aug 10, 2017 9:32 pm
Byond Username: Wesoda25

Re: Singletank Bombs

Post by wesoda25 » #464038

Hathkar wrote:Is there a reason these need to exist? I thought canister bombs were removed for a similar reason.

You can spend 10 minutes making your bomb mix, then print as many plasma tanks as you need from a lathe for practically infinite maxcap bombs.
Pretty sure canister bombs still exist. No one uses them because you can’t escape on time.
[this space reserved]
User avatar
obscolene
Joined: Sun Apr 23, 2017 1:37 am
Byond Username: Obscolene
Location: In it 2 win it :-]
Contact:

Re: Singletank Bombs

Post by obscolene » #464047

ided
[center]sc#4622 | everybodygangstauntilnig.ga (UPDATED FREQUENTLY)[/center]
Image
[03:46:59]EMOTE: The Dreamweaver/(Steve Leaf) : <b>Steve Leaf</b> starts jacking lizard dick. (129,128,2)
[03:47:33]SAY: Steve Leaf/The Dreamweaver : OH FUCK IM CHOAKING (129,128,2)
Spoiler:
Image
ImageImageImage
Image
User avatar
Denton
Joined: Wed Aug 23, 2017 3:53 pm
Byond Username: Denton-30
Github Username: 81Denton

Re: Singletank Bombs

Post by Denton » #464083

I'm pretty sure the reason for this post was when Lexia made about 8 singletank maxcaps in 10 minutes and used them to absolutely demolish a cult base.
Image
User avatar
Morris
Joined: Mon Oct 08, 2018 7:29 am
Byond Username: Morris - exe.cute

Re: Singletank Bombs

Post by Morris » #464543

I ded
Image
User avatar
imsxz
Joined: Sat Dec 16, 2017 4:27 pm
Byond Username: Imsxz

Re: Singletank Bombs

Post by imsxz » #464788

not ided, i used them because theyre too efficient and simple to not do. not having a good soft limit on maxcaps is bad design. 1 syndicate bomb (3,9,12 boom) is enough to derail around. the 6 TTV's in toxins are enough to end one. Atmos you can carry 20 on your person with roundstart gear (duffelbag on back full of plasma tanks, duffelbag in hand full of plasmatanks), and is enough to delete the station with ease.
Image

please subscribe to me on youtube
terranaut wrote:i saw this video before it was posted here
you too can be cool like me if you just subscribe to imsxz youtube channel :shades:
Arianya wrote:no, not the snails, shut up imsxz
Nervore wrote:I am going to will you out of existence, Imsxz.
One day, you will just cease to exist.
Image
User avatar
lmwevil
Joined: Sun Mar 01, 2015 3:09 pm
Byond Username: Lmwevil

Re: Singletank Bombs

Post by lmwevil » #464826

as an atmos main i can agree with imsxz that they are braindead easy to make if you know how and their potential for damage is even worse. give us back canister bombs and remove singletank thank
User avatar
Cobby
Code Maintainer
Joined: Sat Apr 19, 2014 7:19 pm
Byond Username: ExcessiveUseOfCobby
Github Username: ExcessiveUseOfCobblestone

Re: Singletank Bombs

Post by Cobby » #465014

The fact you can make theoretical 40K bombs or whatever shows there’s a need to redo the bomb formula that rewards use of tiered gasses.
Voted best trap in /tg/ 2014-current
somerandomguy
Joined: Sun Nov 05, 2017 7:41 pm
Byond Username: Astatineguy12

Re: Singletank Bombs

Post by somerandomguy » #465036

Cobby wrote:The fact you can make theoretical 40K bombs or whatever shows there’s a need to redo the bomb formula that rewards use of tiered gasses.
As well as the fact that tiered gases are useless for anything but points
User avatar
kevinz000
Joined: Fri Nov 14, 2014 8:41 am
Byond Username: Kevinz000
Github Username: kevinz000
Location: Dorm Room 3

Re: Singletank Bombs

Post by kevinz000 » #466541

https://github.com/tgstation/tgstation/ ... mb.dm#L144
How do you even maxcap with these things? They only take plasma/oxygen in one tank and requires atleast 373.15K to even go off, with dev. radius only happening at 673.15K
((2533)*(70))/((8.314)*(273.15+400)) calculates to ~31.6 moles maximum at 673.15K with a /15 fuel_moles divisor assuming full plasma no oxygen as it only counts plasma and oxygen without even checking for combustion = 2 dev/4 heavy/6 light
The mixture is never reacted (so it's not going to the primary check proc which is how toxins maxcaps work), it's never even adjusted in temperature (so there shouldn't BE any reactions anyways), it's just the initial gas + temperature that's being checked for.
Infact the code is even more stupid because at 373.15K plasma/oxygen will probably already be burning so why is it checking for plasma + oxygen? Pretty sure singletanks are some very, very old code.
How the hell are these maxcapping or am I fundamentally reading the code wrong here?
User avatar
Hathkar
Joined: Sat Jul 08, 2017 12:41 am
Byond Username: Hathkar

Re: Singletank Bombs

Post by Hathkar » #466570

Ask Imsxz, I didn't write down the mix and temperatures required for the singletank maxcaps.
User avatar
Electronics
Github User
Joined: Fri Sep 19, 2014 4:49 pm
Byond Username: Electronics111
Github Username: Electronics

Re: Singletank Bombs

Post by Electronics » #466744

kevinz000 wrote:https://github.com/tgstation/tgstation/ ... mb.dm#L144
How do you even maxcap with these things? They only take plasma/oxygen in one tank and requires atleast 373.15K to even go off, with dev. radius only happening at 673.15K
((2533)*(70))/((8.314)*(273.15+400)) calculates to ~31.6 moles maximum at 673.15K with a /15 fuel_moles divisor assuming full plasma no oxygen as it only counts plasma and oxygen without even checking for combustion = 2 dev/4 heavy/6 light
The mixture is never reacted (so it's not going to the primary check proc which is how toxins maxcaps work), it's never even adjusted in temperature (so there shouldn't BE any reactions anyways), it's just the initial gas + temperature that's being checked for.
Infact the code is even more stupid because at 373.15K plasma/oxygen will probably already be burning so why is it checking for plasma + oxygen? Pretty sure singletanks are some very, very old code.
How the hell are these maxcapping or am I fundamentally reading the code wrong here?
I think the singletank bombs that people are using are just from letting a mix reach TANK_FRAGMENT_PRESSURE at which point react is called 3 times before exploding.
https://github.com/tgstation/tgstation/ ... ks.dm#L234
User avatar
Whoneedspacee
Joined: Mon May 21, 2018 2:07 am
Byond Username: Whoneedspacee

Re: Singletank Bombs

Post by Whoneedspacee » #467686

Electronics wrote:
kevinz000 wrote:https://github.com/tgstation/tgstation/ ... mb.dm#L144
How do you even maxcap with these things? They only take plasma/oxygen in one tank and requires atleast 373.15K to even go off, with dev. radius only happening at 673.15K
((2533)*(70))/((8.314)*(273.15+400)) calculates to ~31.6 moles maximum at 673.15K with a /15 fuel_moles divisor assuming full plasma no oxygen as it only counts plasma and oxygen without even checking for combustion = 2 dev/4 heavy/6 light
The mixture is never reacted (so it's not going to the primary check proc which is how toxins maxcaps work), it's never even adjusted in temperature (so there shouldn't BE any reactions anyways), it's just the initial gas + temperature that's being checked for.
Infact the code is even more stupid because at 373.15K plasma/oxygen will probably already be burning so why is it checking for plasma + oxygen? Pretty sure singletanks are some very, very old code.
How the hell are these maxcapping or am I fundamentally reading the code wrong here?
I think the singletank bombs that people are using are just from letting a mix reach TANK_FRAGMENT_PRESSURE at which point react is called 3 times before exploding.
https://github.com/tgstation/tgstation/ ... ks.dm#L234
Tanks in general react 3 times before exploding, and it's instant reactions so it doesn't slow an explosion at all. It's just to make sure something that immediately exceeds the pressure amount like a 2.7 kelvin mix going into a 1,000,000 kelvin mix actually reacts before calculating the explosion range.

If you want the wait time the method is abusing tritiums burn rate of being slow and then ramping up extraordinarily once it reaches a 50-50 split. Shown in this video I made a bit back, method leaked bois.



Also none of these use the actual single-tanks it's just a tank. We call them singlecaps to differentiate from them generally. Single-tanks have snowflakey code and only explode from plasma and oxygen not anything else.
retired ss13 coderman
Tlaltecuhtli
Joined: Fri Nov 10, 2017 12:16 am
Byond Username: Tlaltecuhtli

Re: Singletank Bombs

Post by Tlaltecuhtli » #467689

@kevin we are talking about singlecaps ( max cap with trit in 1 plasma tank) not tankbombs (the one you linked to
granpawalton
Joined: Mon Jul 09, 2018 3:20 am
Byond Username: Granpawalton

Re: Singletank Bombs

Post by granpawalton » #469244

Toxins is very powerful as it is without this, if we wanted this to be in it should be time locked at like 1 hour not 10 minutes

To get rid of this we could just change the tritium formula not to be piecewise and spike when it reaches the formula when the oxygen out weighs the tritium

The plasma fire formula has been stood really strong all these years and a similiar formula would be a safe replacement and be generally better for many reasons

If we wanted to keep in "timed singlecaps" we could make a similiar gas to hyper-nobilium with the reaction suppression but have it decay into another gas over time and that could gate it behind a later point in the round
User avatar
kevinz000
Joined: Fri Nov 14, 2014 8:41 am
Byond Username: Kevinz000
Github Username: kevinz000
Location: Dorm Room 3

Re: Singletank Bombs

Post by kevinz000 » #470281

Tlaltecuhtli wrote:@kevin we are talking about singlecaps ( max cap with trit in 1 plasma tank) not tankbombs (the one you linked to
Ah, neato.
How exactly do you ignite them I've never trained myself in anything but TTV and tankbombs
User avatar
wesoda25
Joined: Thu Aug 10, 2017 9:32 pm
Byond Username: Wesoda25

Re: Singletank Bombs

Post by wesoda25 » #470423

kevinz000 wrote:
Tlaltecuhtli wrote:@kevin we are talking about singlecaps ( max cap with trit in 1 plasma tank) not tankbombs (the one you linked to
Ah, neato.
How exactly do you ignite them I've never trained myself in anything but TTV and tankbombs
Trit combusts with oxygen and does it itself. Normal its an instantaneous explosion, but you can scale the moles and temperatures to delay it. Not an actual single tank bomb, just an exploding tank. I may be wrong but I think original single tank bombs are gone (the kind where you weld a hole in them).
[this space reserved]
granpawalton
Joined: Mon Jul 09, 2018 3:20 am
Byond Username: Granpawalton

Re: Singletank Bombs

Post by granpawalton » #471480

as of tritium changes in https://github.com/tgstation/tgstation/pull/42194 this "should" be no longer in the game without hyper nobelium unless some gamer finds an oversight
User avatar
ohnopigeons
Joined: Thu Oct 16, 2014 11:22 pm
Byond Username: Ohnopigeons
Github Username: ohnopigeons

Re: Singletank Bombs

Post by ohnopigeons » #490807

Bumping this thread, it's still in the game. See this map.

With game balance decisions regarding other explosives, I can't imagine a good reason why singlecaps (max) continue to exist in its current state.

Single tank detonation has never been very useful, as the reaction is less controllable or time-consuming than alternative means of detonation. Normally the explosion is supposed to be weak too with its limited capacity but new atmos gases and interaction have really challenged and voided this assumption. As such, given the flaws of single tanks, the only real use is to literally carpet bomb the station or an area through numbers to compensate.

Should single tank explosion mechanics be removed entirely? This seems like the least worst solution.
Image
User avatar
Yakumo_Chen
Joined: Fri Dec 11, 2015 10:08 pm
Byond Username: Yakumo Chen

Re: Singletank Bombs

Post by Yakumo_Chen » #490828

Not surprising someone managed to find a way to do it again. Guess we're back to Lexia Black carpet bombing the station every other round.
Image
Image
User avatar
Whoneedspacee
Joined: Mon May 21, 2018 2:07 am
Byond Username: Whoneedspacee

Re: Singletank Bombs

Post by Whoneedspacee » #490845

well hey maybe shouldnt have added the ability for ghosts to copy any bomb mix they can see
retired ss13 coderman
User avatar
Nabski
Joined: Thu Oct 20, 2016 5:42 pm
Byond Username: Nabski
Github Username: Nabski89
Location: TN

Re: Singletank Bombs

Post by Nabski » #490858

Something overpowered, but secret, doesn't make it not overpowered. It just makes it more rare.
User avatar
ohnopigeons
Joined: Thu Oct 16, 2014 11:22 pm
Byond Username: Ohnopigeons
Github Username: ohnopigeons

Re: Singletank Bombs

Post by ohnopigeons » #490912

I made a PR to halfcap singletank bombs (2,5,10)

43714
Image
User avatar
Cobby
Code Maintainer
Joined: Sat Apr 19, 2014 7:19 pm
Byond Username: ExcessiveUseOfCobby
Github Username: ExcessiveUseOfCobblestone

Re: Singletank Bombs

Post by Cobby » #491054

Cobby wrote:The fact you can make theoretical 40K bombs or whatever shows there’s a need to redo the bomb formula that rewards use of tiered gasses.
chop chop atmos nerds or im coming for bombs again
Voted best trap in /tg/ 2014-current
User avatar
Yakumo_Chen
Joined: Fri Dec 11, 2015 10:08 pm
Byond Username: Yakumo Chen

Re: Singletank Bombs

Post by Yakumo_Chen » #491700

Just remove it. Singletank bombs are an unfun mechanic to play against and there will never be a positive use for it. People don't bother making any of the other good atmosphere gasses because bombs are easy and you can make 30 of them and ignore the main limiting factor (ttvs).

If someone wants to carpet bomb force then to go through cargo and deal with all the limiters in place for bombs (like ttv limits and ttv size)
Image
Image
User avatar
Yakumo_Chen
Joined: Fri Dec 11, 2015 10:08 pm
Byond Username: Yakumo Chen

Re: Singletank Bombs

Post by Yakumo_Chen » #491702

I cannot stress enough how unfun it is to deal with atmosphere man in space, who moves around with a Max speed jetpack, has no slowdown so just has to run away from instant stuns to outplay you (which don't really exist any more) and has infinite jetpack refuels from his pump that doubles as his murder bone tool

Atmosphere man doesn't need to fight anyone to win and risk losing in a fight, he wins by avoiding anyone who can hurt him while he tosses bombs.
Image
Image
User avatar
ohnopigeons
Joined: Thu Oct 16, 2014 11:22 pm
Byond Username: Ohnopigeons
Github Username: ohnopigeons

Re: Singletank Bombs

Post by ohnopigeons » #492284

Image
User avatar
ohnopigeons
Joined: Thu Oct 16, 2014 11:22 pm
Byond Username: Ohnopigeons
Github Username: ohnopigeons

Re: Singletank Bombs

Post by ohnopigeons » #492333

I really don't want to hear unfounded and descriptionless complaints about realism especially from the same person who asked why physics mattered in SS13.
Image
User avatar
oranges
Code Maintainer
Joined: Tue Apr 15, 2014 9:16 pm
Byond Username: Optimumtact
Github Username: optimumtact
Location: #CHATSHITGETBANGED

Re: Singletank Bombs

Post by oranges » #492463

I suspect the proper action here is just to nerf all bombs until they're below the hardcap by soft means.

Reaching the current max cap should require significant investment in fusion effort.

Problem is it will make all the bomb users whine about how small their explosions are now, another toxic battle I can barely bring myself to want to fight.
User avatar
wesoda25
Joined: Thu Aug 10, 2017 9:32 pm
Byond Username: Wesoda25

Re: Singletank Bombs

Post by wesoda25 » #492472

Remove gas explosions and make expanding gas fuck with you hard. Im talking shit to send you flying through windows and grilles, anime style. It’d make them so much less cancer, id actually have fun getting hit by one, even if it crits/kills me.
[this space reserved]
User avatar
ohnopigeons
Joined: Thu Oct 16, 2014 11:22 pm
Byond Username: Ohnopigeons
Github Username: ohnopigeons

Re: Singletank Bombs

Post by ohnopigeons » #492617

oranges wrote:I suspect the proper action here is just to nerf all bombs until they're below the hardcap by soft means.

Reaching the current max cap should require significant investment in fusion effort.

Problem is it will make all the bomb users whine about how small their explosions are now, another toxic battle I can barely bring myself to want to fight.
I assume by soft means you mean mathematical scaling.

1. Do you want it only applied to toxins bombs?
2. What size should a standard 6000dev tritium bomb actually explode as?
Image
User avatar
D&B
Joined: Mon Jun 13, 2016 2:23 am
Byond Username: Repukan
Location: *teleports behind you*

Re: Singletank Bombs

Post by D&B » #492654

wesoda25 wrote:Remove gas explosions and make expanding gas fuck with you hard. Im talking shit to send you flying through windows and grilles, anime style. It’d make them so much less cancer, id actually have fun getting hit by one, even if it crits/kills me.
You mean like the ZAS
Spoiler:
[20:26:02]ADMIN: PM: [censored admin]->[censored]: Welp. It was just a prank bro isn't a very good excuse when it comes to unprovoked nonantag murder, but since this is your first time doing it and you seem to understand the problem instead of a bannu I'm just going to leave you with a warning. Please PLEASE don't do this again in the future, as funny as crackhead broken bottle memes can be. Alrighty? Do you have any input on this?
[20:26:39]ADMIN: PM: [censored]->[censored admin]: Alright, no problem. I have some input. Fuck my boy pussy.
[20:27:06]ADMIN: PM: [censored admin]->[censored]: Okay then. Have fun.
[20:31:29]ADMIN: PM: [censored admin]->[censored]: Excuse me?
J_Madison wrote: that's a stupid fucking stat
you don't play, you've never played
lying little shit with your bullshit stat
fuck you
ColonicAcid wrote:and with enough practise i too could blow my own dick so well that only the gods know how it feels.
User avatar
oranges
Code Maintainer
Joined: Tue Apr 15, 2014 9:16 pm
Byond Username: Optimumtact
Github Username: optimumtact
Location: #CHATSHITGETBANGED

Re: Singletank Bombs

Post by oranges » #492690

yes I mean mathematical scaling, although I'd prefer new tiers of gasses that need fusion and then like ultra fusion or super fusion or some shit etc that need enormou amounts of power(so you need a secondary engine) and specialised equipment (coming from the engineering techfab)

The maximum possible size under any circumstance should just be the maxcap limit, this doesn't mena that you should be able to reach the maxcap with a standard bomb, but only the most super destructive super fusion hyperheated bomb.

I don't have any good insight as to what the "standard" bomb should do, maybe a quarter of a large room?
User avatar
MisterPerson
Board Moderator
Joined: Tue Apr 15, 2014 4:26 pm
Byond Username: MisterPerson

Re: Singletank Bombs

Post by MisterPerson » #492732

Maybe explosions need to be rewritten so they're not always light impact range == 2 * heavy impact range == 2 * devastation impact range. So one kind of explosion might be really large but low damage while another might literally be a single 1x1 tile dev but leave the surrounding tiles untouched.

There's only so much tweaking you can do when the only thing you can tweak are absolute size and power, which are intrinsically tied together.
I code for the code project and moderate the code sections of the forums.

Feedback is dumb and it doesn't matter
User avatar
WarbossLincoln
Joined: Wed Feb 10, 2016 11:14 pm
Byond Username: WarbossLincoln

Re: Singletank Bombs

Post by WarbossLincoln » #492878

oranges wrote:Problem is it will make all the bomb users whine about how small their explosions are now, another toxic battle I can barely bring myself to want to fight.
Question: If you're in charge of what gets merged why would you have to fight? You have the power and lack of oversight to just ignore the haters. The 'oranges man bad' crowd are going to hate anything you do anyway so you might as well.
--Crocodillo

Image
User avatar
MisterPerson
Board Moderator
Joined: Tue Apr 15, 2014 4:26 pm
Byond Username: MisterPerson

Re: Singletank Bombs

Post by MisterPerson » #492887

Because after pissing people off, those people are still here. And he still has to interact with them. So either they leave, which sucks, or they stick around all grumpy and starting shit, which sucks.

I mean eventually you gotta put your foot down because someone's gonna hate anything you do, but it's very hard to do something you know is going to rile up the hornet's nest, even if all those hornets can do is say "orange man bad lol".
I code for the code project and moderate the code sections of the forums.

Feedback is dumb and it doesn't matter
User avatar
WarbossLincoln
Joined: Wed Feb 10, 2016 11:14 pm
Byond Username: WarbossLincoln

Re: Singletank Bombs

Post by WarbossLincoln » #492897

There are times when I think the hornets nest is dumb and should be ignored, this is probably one of them. Singletank bombs are dumb. Being able to keep a pump in space that's both your bomb factory and jetpack fuel is definitely bad. The one time I managed to stop someone doing this was someone who screwed up and left suit sensors on. I followed a pinpointer to their bomb factory, arrived after they left, and hid in their locker of supplies with a shotgun till they got back.
--Crocodillo

Image
Post Reply

Who is online

Users browsing this forum: BonChoi