I should mention that I realized out how the PAC fires during the editing of this video: it's one of the ACBs that I looked directly at. 😆
@IainDoherty513 жыл бұрын
Yeah, ACB controls are great in frontsiders and for other unusual weapons systems. You can even add a ‘safety’ to them using the breadboard so they can’t fire if they aren’t correctly alligned. My personal favourite is depth charge launchers where they can’t fire unless you have an enemy within range and below a certain altitude, or dive bombers that only release when aligned with the enemy craft.
@darthkarl993 жыл бұрын
Those PAC's broke your brain didn't they.
@James-ep2bx3 жыл бұрын
Ya you can get quite creative with ACBs and breadboards
@Cheveyo8883 жыл бұрын
I believe that is to yield maximum possible accuracy, since any deviation from a straight forward aimpoint leads to squiggly inaccuracy.
@SephirothRyu3 жыл бұрын
From your commentary Borderwise, it sounds as though you tested it against some of your own craft... to less then satisfactory results (for your designer's ego).
@dr.robertnick95993 жыл бұрын
Breadboard translation to english: If enemy is present: - Point at it (yaw and pitch(not over 15°)) - Go 3km away from it - Switch between 300 and 350m altitude every 5 seconds - Dont roll if no enemy is present: - Dont yaw, roll pitch and move at 300m altitude The only intersting thing in this otherwise pretty simple breadboard is the calculation of the target pitch (Atan2((b-c)/a)) based on the distance(a) and height difference(b-c) to the enemy. This is basically a dumbed down version of the point at and maintain distance AI routine (which would be better because it has evasion built in). It looks very similar to my first shots at a breadboard AI. Just try understanding it. If your head hurts, take a break, if you look at it again, it will look a lot clearer, read the documentation if not. The hardest part to understand in this breadboard are probably the if(a,b,c) blocks. You can read them like this: If a does not equal 0, then output b, else output c. a can be just a number or an evaluation, like a==2, whis is only nonzero, when a is 2. You wont understand breadboards by complaining that you dont understand them. Another thing: The japanese stuff in the LUA code is comments. Just some documentation on the code, not related to LUA at all. Its marked like this --This is a comment.
@aynonymos3 жыл бұрын
I need to learn Lua, because using black box ai is getting me confused when my craft make dumb decisions.
@major0noob3 жыл бұрын
(Atan2((b-c)/a)) is magic words, wizard. the strange ruins of those that can talk to math. some have translated to us, but the spells are unknowable; for we have flunked math
@aynonymos3 жыл бұрын
@@major0noob I can more or less understand it, but I wouldn't have thought of using it, mainly because I keep forgetting that trigonometry exists, there's a lot of mathematical tools that I'm good at using and continuously forget about.
@IainDoherty513 жыл бұрын
Good analysis, and yeah, that's an extremely simple breadboard for a frontsider. I know that there's a ton of tricks you can add pertaining to evasion (clamped Sin(time) driven strafe thrusters, same for range and altitude, variable range based on target weapon types, warp drive controls etc.), but as far as core functionality goes that was a well set up example of a loaf.
@Onkelcuno3 жыл бұрын
@@aynonymos most things you can do via lua (except missile controls) or breadboard can also be done with ACBs. that being said, LUA is really simple to learn if you already know a coding language, there are wonderfull databases online to quickly look up how to write code in LUA
@zancloufer3 жыл бұрын
To be fair I think the aesthetic for this is "Block-y Human Space Ship". Looks vaguely reminiscent of something you would see in Halo, BSG or the Expanse. If it was in space I wouldn't think it was weird at all, just the fact that it's an atmospheric craft is what is uncanny.
@Oscar-vs5yw3 жыл бұрын
This being built as a spacecraft. Oh no
@SephirothRyu3 жыл бұрын
It looks kinda like a Halo ship... except backwards.
@jakeworsfold36692 жыл бұрын
I kinda want to make a ship from the expanse now or in that style
@jannikheidemann38052 жыл бұрын
@@jakeworsfold3669 Go ahead, we wish you great fun and success in doing that.
@erge1144 Жыл бұрын
Almost looks like something from The Outer Worlds
@kre8or4653 жыл бұрын
I want to see this guy make an entire faction in this style, like, with the flat front and blocky design but terrifying effectiveness.
@BorderWise123 жыл бұрын
Sena basically already has. His workshop page is full of vehicles like this. :D
@airplanemaniacgaming78773 жыл бұрын
@@BorderWise12 oh god, imagine that making a proper addition to the game as a new faction.
@inversegaming6238 Жыл бұрын
@@BorderWise12can you put a link to his workshop?
@monsterkicker2913 жыл бұрын
It legitimately looks like a car transmission, I love it.
@harryswinburne92882 жыл бұрын
69 likes, you're welcome
@johnd-k35393 жыл бұрын
Something about the flat nose, the solid front. It's just... Super cool.. It reminds me of a 'vanship' but still... Its an epic design
@AstraOG3 жыл бұрын
ngl was expecting the whole front plate to fire either laser or PAC spaghetti
@gramursowanfaborden58203 жыл бұрын
this thing doesn't look ugly at all, it looks almost exactly like Bungie era UNSC ships from Halo.
@jetoets60713 жыл бұрын
Exactly what is was thinking! Sick AF
@nocanseegreen38453 жыл бұрын
the people calling it ugly are foolish
@gabrielhenson57513 жыл бұрын
exactly
@zoltek65073 жыл бұрын
*this thing in a nutshell:* SS meets GT
@Argonwolfproject3 жыл бұрын
*Alt Title:* Megalodon meets Jesus
@Attaxalotl3 жыл бұрын
@@Argonwolfproject Megalodon has **ascended**
@Hammy7123 жыл бұрын
Jokes on you I can read Japanese. Edit: Wait I can't code Edit 2: I can now code. LUA is my BITCH.
@OnurErtas-q1o6 ай бұрын
I am more of a Python Guy
@HiFenDinok9 күн бұрын
@OnurErtas-q1o Python? Is that a DWG craft? Never heard of it.
@asrieldreemurr50293 жыл бұрын
The breadboard is "easy" in the sense that it's not doing anything too complicated, it's just painful to read if you're not used to it and still unpleasant to read after you get used to it. The big blocks with the exclamation point in this vehicle's breadboard are basically spitting out a bunch of data about the current target, then the rest of the breadboard uses that data to aim at the target: there's a lot of boilerplate along the way, for example half of those IF blocks are there just to check if a target exists, and a lot of stuff is repeated in 4 copies (3 for orientation plus 1 for altitude control I think) to make the layout easier to read instead of having a mess of tangled connections.
@UnknownSquid Жыл бұрын
"it's just painful to read if you're not used to it" I think you're missing the key point, that for someone who's never done any programming before, it's straight up impossible to read. Painful to read would be reading something in your native language but with lots of typos and awful punctuation, maybe some slang mixed in. With the breadbox, it's just total gibberish to those not specifically educated on how to read it. It's more like seeing high level music notation without any introduction to it.
@bossmaster76773 жыл бұрын
So basically… the great filter is sentient? It controls itself and doesn’t follow commands That’s pretty cool Edit: this is the part i’m talking about 2:35
@ranekeisenkralle8265 Жыл бұрын
I short: The Great Filter is a cat. Disrespect it and it will hurt you.
@narrotrig3 жыл бұрын
The Japanese bits of the LUA are notes. I agree that breadboard and LUA without any main AI running it is weird but that is mostly because i cannot fathom how many hours/days the creator took fine tuning it to get it functional. I loved the ACBs that were capable of changing the PAC type and charge time... i am gonna need to borrow that for my own PACs.
@wuzz1113 жыл бұрын
Thrusters don’t consume fuel since it’s all air compressors. They work via making things more efficient just by increase thrust.
@Ienteredmynamecorrectly-lt3nu6 ай бұрын
Don't you need at least one combustor?
@raizors133123 күн бұрын
@@Ienteredmynamecorrectly-lt3nu Old meta jank where CJE generator without combustor generates engine power for free. It doesn't make sense but it works.
@Ienteredmynamecorrectly-lt3nu23 күн бұрын
@@raizors1331 Is it still a thing or did it get patched out?
@sgxbot17 күн бұрын
@@Ienteredmynamecorrectly-lt3nu i think they patched it.
@jasonm16913 жыл бұрын
First thing that came to mind was UNSC Starships from Halo
@RoxyGotMoxy.3 жыл бұрын
Same!
@masonwagner68363 жыл бұрын
This guy needs to make a 1/2 scale Pillar of Autumn. With 2 little Longswords it can drop.
@Dubanx3 жыл бұрын
The japanese in the Lua code is just comments. That is, notes on how it works. Does make it hard to figure out when you don't have the notes, though.
@gomesss52643 жыл бұрын
The guns might not be HE but, as someone who specialises in APS I will tell you right now: NEVER underestimate the explosive power of gunpowder. Use ejector, and thank me later.
@BorderWise123 жыл бұрын
Alrighty, cheers!
@raizors133123 күн бұрын
Aye, I always build ejectors for anything that is not pure kinetic pure rail because I don't want to lose the entire turret on one lucky shot
@charlesballiet70743 жыл бұрын
21:29 those partical cannons are doing a lot look at the last second before it cuts it looks like the entire inside of the meg just fell out the bottom
@kethrian2 жыл бұрын
Looks very Babylon 5 Destroyer... love the styling
@GTalon53 жыл бұрын
If you are interested, I could put together something that doesn't use any LWCs, just Breadboards and ACBs. Of course there would be notes on what's doing what so that you could better understand it. Then you could poke at it and try to figure out this sorcery. Or just copy it onto your own stuff and try to get it working.
@BorderWise123 жыл бұрын
That would be very nice, thanks! 😁
@GTalon53 жыл бұрын
@@BorderWise12 Happy to help. And it can be useful to others as well. Hope to have it done before the end of the weekend. Won't be pretty but that's not the point.
@GTalon53 жыл бұрын
@@BorderWise12 I tried Discord but I can't post messages on any of your channels and your PMs are blocked. If you are still interested in this, the Bread Warlock mkII and it's support craft are finished.
@BorderWise123 жыл бұрын
@@GTalon5 Ok! Is it on the workshop?
@captainseal50023 жыл бұрын
I can see this thing being someone's PC case and now I want one
@Jon-uo4gf3 жыл бұрын
"I don't build flying bricks" Indeed, you make flying canoes.
@CyanBlue473 жыл бұрын
It reminds me of the whale shark, a filter-feeder. The front, the overall shape, the name. I guess i just read Megalodon and thought about sharks.
@sgxbot17 күн бұрын
its called the great filter as a reference to the theory of the great filter which is an explanation as to why we havent seen any intelligent alien life so far. this thing claiming to be the filter exterminating anything that claims to be strong enough for intergalactic colonization.
@iamscoutstfu3 жыл бұрын
Aw man What channel. Will you feature anyone's construct on here? I get heavy paramilitary PMC vibes from this. Those gun rests are extra dope.
@BorderWise123 жыл бұрын
I feature whatever cool thing I find, yes. :)
@Elinzar3 жыл бұрын
the Breadboard is basically Programming with a graphical interface kinda like Stormworks but not really also is the most easy level of magic you can get and is pretty straight forward the logic behind it, so i recommend you to try it because is so satisfying once you can actually use it
@andyyang5234 Жыл бұрын
The "Great Filter" refers to a concept in cosmology, which tries to explain why we seem to be the only sentient being around. Basically, it supposes that there is one or more "great filter" events on the path to any lifeform becoming spacefaring, after which life gains the ability to escape the vast majority of potential calamities. These filters can be simply the rareness of a specific set of environment for life to evolve; recurring mass-extinction events like asteroid impacts; or even technology, if techonology leads to a global catastrophy like nuclear destruction. Of course, the great filter is not a certainty -- the universe may be filled with aliens, we've just not found them yet. But if no alien were ever able to pass the great filter, we need to then ask: Are we the 1 in a few trillion to be lucky enough to have already passed the filter? Or is the filter ahead of us? In the context of a great filter being possibly a mass extiction event, of course it's there to deal with the Megalodon :D.
@Cmdrbzrd3 жыл бұрын
This thing truly is a monster!
@peterjohansson1828 Жыл бұрын
I haven't seen any1 else commenting this but IIRC it uses lua for three things. 1 is missile guidance, 2 is laser smoke defence and 3 is aiming and shooting the PACs.
@drivver44703 жыл бұрын
IMO the breadboard is harder to read than lua lua isnt hard in and of its self (its more of a time thing if anything else) the problem is reading someone else's code and trying to understand it also helps if the person writes the comments in a language that you understand
@revengefullobster45243 жыл бұрын
I downloaded this a couple weeks ago. This is about as meta as it gets and is quite a beast. However, since there is absolutely nothing you can do about lua missiles other than destroying them, they are pretty cheaty, plus some heavy repair cheese drops it a couple points. I do like some of the decorative items. It reminds me a bit of the Doomsday device in the old Star Trek.
@LeafseasonMagbag3 жыл бұрын
The quote on the rear nacelles is from Steven Hawking
@doktork34063 жыл бұрын
PAC fire is very simple to do on a point at ship. It basically is already aimed If enemy in range [X,Y] fire weapons named "PAC". optional conditions to check angle too (enemy at angle from forward axis.) easy
@acrazedgunman33883 жыл бұрын
the aesthetics of the ship are perfect it'sbuilt purely for function and has small embellishment hear and there to add some detail
@pipecleanermaster15 күн бұрын
Lua and breadboards????? This is an entire other level to this game that I had no idea even existed
@pipecleanermaster15 күн бұрын
Sidenote, how would you even defend against Lua guided. Distractions would be useless
@xxxm9813 жыл бұрын
I think this gives off a very Homeworld vibe Tho the title could almost be from The Culture
@eccentricartist39963 жыл бұрын
I saw this on the work shop so it cool to see you checking it out
@LH-gt6gz3 жыл бұрын
I think the missiles are staggered so slowly is because the craft doesnt have neough gppp to fire and guide them all at once. As each Huge missile needs 54 gppp to be guided and it looked like the craft did not have 400+ gppp laying around.
@elgurkus68853 жыл бұрын
its lua guided not remote guided. Unless there is a cost built in to the lua guidance they don't need gppp EDIT: I stand corrected, LUA was rebalanced since I last looked at it
@Aedeus3 жыл бұрын
@@elgurkus6885 actually false, the gpp does effect Lua missiles as they will not guide properly if you have not enough gpp. I also wanted to cheese having no gpp, but found out that lua was re-balanced.
@LH-gt6gz3 жыл бұрын
@@elgurkus6885 Lua was rebalanced a couple of updates ago. It requires gppp now for proper guidance
@weedspagon45223 жыл бұрын
I use a similar automation system for melee weapons, once an enemy is within the danger zone it swings the thingy or whatever. Using it for ranged weapons is cool too I guess
@weedspagon45223 жыл бұрын
generally this system is best for weapons that are fixed to the hull, and not on a turret
@AstraOG3 жыл бұрын
umm anyone else notice that the "landing pad" is a schematic symbol for a diode?
@Cheveyo8883 жыл бұрын
It's a solid testing opponent, takes damage like a champ.
@Runefrag3 жыл бұрын
Not necessarily. Repair bot spam aside, Borderwise was also repairing it with his avatar.
@Cheveyo8883 жыл бұрын
@@Runefrag uh, I've tested the bp myself man
@Runefrag3 жыл бұрын
@@Cheveyo888 Then you should know there are reasons the creator is telling everyone to spawn it like 3000+ meters away. This thing can literally only take damage from 1 direction.
@shrillcrayfish61683 жыл бұрын
Feels very avorion
@FiauraTheTankGirlGamer4 күн бұрын
To answer your question 3 years later: He's programmed the engines to shut off for a hundreth of a second then immediately turn back on as soon as they would consume 1 material. This results in a pulse that we as humans cannot see because the game frame rate is moving too fast but prevent the use of materials. It requires a lot of understanding I don't have but have tried to in order to get the breadboard and Jet Engines both programmed correctly and designed correctly. You may notice an odd compressor or injector missing on the engines and that is why.
@BorderWise124 күн бұрын
@@FiauraTheTankGirlGamer Which question was that again? It's been 3 years and I don't remember. 😅
@FiauraTheTankGirlGamer4 күн бұрын
@@BorderWise12 How the engines were using no materials.
@skitter76153 жыл бұрын
I was expecting the front to be the biggest bloody gun I've ever seen. It's got two of them in there.
@ryanchen84033 жыл бұрын
Not the biggest punch, not by a long shot, the guns on these are optimised for long range fire, i remember lathrix made a very short range one that was bigger, i think it 2 shot a megalodon
@gerarddolan77823 жыл бұрын
Loved the video. I did breadboarding in uni and I also struggle with them in FtD. Keep up the good work! :)
@epicjn3 жыл бұрын
This looks like the "Brick" Servo-fish from Warframe. Which I think they did on purpose, because the Brick is a robotic filter.
@galacticblizzard9878 Жыл бұрын
Something pleasing about the shape of this ship.
@CyborG73rus3 жыл бұрын
This craft looks like a giant flying Quake 2 bfg. I approve.
@wetdog37533 жыл бұрын
Fermi paradox? Not just a giant scary brick
@rickregina50532 жыл бұрын
Reminds me of the various thruster craft I built back in the day.
@IainDoherty513 жыл бұрын
Ah... I had a lot more respect for the Filter until I realised it was using repair cheese as well... that’s generally where I draw the line these days. Repair cheese is just a tad too easy. Edit. I do really like the engine setup though. Closed loop drives seem like an interesting option given that I’m building an airship for a tourney at the moment.
@whwhwhhwhhhwhdldkjdsnsjsks65443 жыл бұрын
What’s the repair cheese?
@BorderWise123 жыл бұрын
The mountain of repair bots that repairs damage faster than it gets inflicted. XD
@whwhwhhwhhhwhdldkjdsnsjsks65443 жыл бұрын
@@BorderWise12 oooh... I may be guilty of that myself...
@IainDoherty513 жыл бұрын
@@whwhwhhwhhhwhdldkjdsnsjsks6544 Repair bots are fine in moderation on campaign craft, as you want some repair capacity on any of your ships so they can patch up the damage whenever possible. That said, having enough of them that you can employ ablative armour like this simply isn't fair on anyone, and can make a solid well designed craft into an impossible to kill juggernaut far too easily.
@whwhwhhwhhhwhdldkjdsnsjsks65443 жыл бұрын
@@IainDoherty51 yeah, I don’t usually have too many, but honestly idk how many I have compared to others. My smallest craft (
@SubADubDub694203 жыл бұрын
For a brick, it flew pretty good!
@RMMinc3 жыл бұрын
"It's not my style" But cram kobold retrofit was dope...
@BorderWise123 жыл бұрын
Oh yeah, I forgot about that. XD
@JesseOfCat3 жыл бұрын
About the materials not running out I'm pretty sure that's just a bug with the display. I've noticed when I have craft with well over a million mats of storage it often does not display materials being used until there has been a significant reduction.
@cristophernavarro18193 жыл бұрын
I get how the particle cannons fire, but how does the thing float without expending any fuel or material?
@BorderWise123 жыл бұрын
Apparently that's a quirk with using a lot of compressors with CJE's? Get enough of them on a jet that's not firing at full power and they burn basically no fuel. Haven't actually tested it myself.
@arpioisme3 жыл бұрын
The particle canon is told to fire only within a veeeeery small arc. Only when the enemy is directly in line with it. Otherwise, it is told to "hold fire". And the breadboard is the one that makes sure the particle cannon is pointed straight towards the enemy
@RoxyGotMoxy.3 жыл бұрын
This thing has major UNSC or latter series Stargate vibes to it. Very cool.
@mathewking15593 жыл бұрын
Note to self if you extend the particle transmission tube to its full extent you can get power and range and rof in decent amounts
@pezmeisterhero94243 жыл бұрын
Looks like a flying jotunn and I love it
@ShadowKick323 жыл бұрын
I wish I could make a design good enough to be featured but I just started playing this game. I'll get back to working on my battleship, it takes such a long time to make it. I might have spent over 20 hours on it. But it'll look good !
@hawkeye68543 жыл бұрын
This breadboard has the exact thing I've been trying to do, I am absolutely stealing that breadboard network haha yes
@bigbadlara53043 жыл бұрын
I'm new to ftd and The build in this video inspired me to make a flying brick myself. Mine definetly doesn't look as good as this one but it seems to be able to kill anything in the game and it costs 999.735 resources. I'm really proud of myself haha🙂
@pewds69103 жыл бұрын
999 thousand resource, or 999 resource . is a decimal | , is for making it easier to count ie: 999,646,533,345
@CharlieTuna82 жыл бұрын
@@pewds6910 works different depending on where you're from
@bigbadlara53042 жыл бұрын
@@pewds6910 where I'm from . Is for making counting easier and , is for decimals.
@bright_lego3 жыл бұрын
Breadboards are easy if you already know how to program, as that block style is for beginner programming languages. The problem is that you need to already know how to program and at that point you might as well use LUA, as it is much more flexible and readable for more complex programs. However if you do not know how to program, they are almost impossible. Therefore to learn breadboards I would recommend using something like scratch or python to learn to code and then extrapolate your knowledge to them.
@comet.x3 жыл бұрын
i don't know how to program. well, not much, but I can breadboard. i really want to learn lua tho
@spinnirack36453 жыл бұрын
One of these days il find the context behind "deakons bloody hell"
@BorderWise123 жыл бұрын
'Deacon's hell' is a swear I got from a game called Ground Control 2. A deacon is a church official, so it's basically saying 'bad day at the church.' XD
@rewrew8973 жыл бұрын
Weapons do not necessarily need a LWC to fire *this is great info to have*
@avi8aviate3 жыл бұрын
I've used this for automated decoy launchers.
@Dalmango3 жыл бұрын
"I love you, shut up" - Borderwise 2021
@themecoptera92583 жыл бұрын
The aesthetic is futuristic brutalism
@drunk0robot3 жыл бұрын
this is epic AF
@sgxbot17 күн бұрын
the japenese in the lua code are just comments by the creator for documentation of what each line does. comments are done by putting - - before it so the programm knows to just ignore whats written in the line after it. the important part of the code ist the english part. the japanese is just comments
@matthewyang78933 жыл бұрын
The nose of the thing looks like when it sniffs something it disappears into the void. That's what it is lol Also I think I saw RTG's in it or something
@abcadef61713 жыл бұрын
Is this the least stealthy ship shape ever to have the word "stealth" written on it?
@julianusiv3 жыл бұрын
For the LUA script everything behind the double minus is just a comment so there is no japanese in the important part aka the code The code is perfectly readable if you understand lua or programming/scripting at all a bit The comments have no influence on the code they just explain what is happening to the user, however they are not crucial for reading source code
@sampletext59593 жыл бұрын
Kinda reminds me of the Borg Cube. Both spell impending doom if you see one.
@NeonBeeCat Жыл бұрын
reminds me of Halo UNSC and EvE Online Caldari ships haha
@Ny4d3 жыл бұрын
The symbol on the helipad is used to represent diodes in electrical/electronical schematics. Kinda fitting given the name of the craft.
@charlesballiet70743 жыл бұрын
where would I even start to learn lua?
@comet.x3 жыл бұрын
youtube, as lua isn't an ftd exclusive language, it's a general coding language
@HalIOfFamer2 ай бұрын
This isn't a design I'd make, I prefer ww2 for my ships and Warhammer 40k for my airships but I can't agree with people saying it's ugly. It's very modern Japanese robotics style. In an anime there would be a face on the flat front side talking in a cute voice while murdering you.
@LunaWolven3 жыл бұрын
Someone should count how many times he says "how does it fire??" Also it should be called "The automated megalodon killer"
@sgxbot17 күн бұрын
and no its not just spraying at the target because its facing the target as its breadboard controlled. its guns are also lua controlled just like the missiles. thats how the guns work.
@sgxbot17 күн бұрын
control blocks fire the guns if enemies are in range and lua aims them
@vega1287 Жыл бұрын
the worst part about the breadboard is the controlls, once you get over that you only need a degree in electrical engineering to set up someting.
@squa_813 жыл бұрын
I think that the landing pad is a symbol for a great filter in electronics
@Alexander-rx1xy2 жыл бұрын
Its called "The great filter", because if you beat it, it means that you are worthy
@BorderWise122 жыл бұрын
... I never thought of that. XD
@_NoName_3143 жыл бұрын
so... you can recognise Katakana characters.... video like :P and yes, it's sena Hoooooooooooly sh/&t that lua... can't read kanji :'(
@Monkeydew1o2 Жыл бұрын
Me: Someone who reverse engineers market algorithms as a job: Yeah that looks simple enough
@SuperN0vaNexus3 жыл бұрын
The Great filter, because it turns it's enemy's into sieves.
@totaltechno75103 жыл бұрын
A great filter is a term from exobiology. It is an explanation of why we dont see alien civilizations. Basically it says that all life has to overcome big hurdles like creating self replicating DNA or nuclear annialation. The name implies that this ship is one of the big hurdles. Kurzgezagd made a nice video about this
@crispyandspicy68133 жыл бұрын
You should review the More Simple Weapons mod
@BorderWise123 жыл бұрын
That's on the table to be reviews, yes.
@TrenchCoatDingo3 жыл бұрын
love unsc bricks ships
@wizzard4003 Жыл бұрын
it may be a brick, but its a sexy brick
@huefray3 жыл бұрын
It reminds me of the gunner robots androids have in Nier Automata
@Jawzah3 жыл бұрын
Looks reminds me of Babylon 5 human spaceships designs..
@OwenIsDaBoss3 жыл бұрын
Looks like a ship from The Expanse
@nicopence31483 жыл бұрын
"The foreign characters are important". Those be comments which do absolutely nothing besides tell you what the code does. You really should try using some breadboard for PID's and bouncing in addition to an AI. Also the reason for the PAC's appears to be that if it fires straight you only need a single hole to make it more armored as pointed out. To get them to reliably do that ACB's are best as firing restrictions can be finicky and rely on aim-point.
@BorderWise123 жыл бұрын
I HAVE tried using breadboards. It gives me near-fatal headaches. XD But yeah, I will keep trying them.
@richien.49153 жыл бұрын
@@BorderWise12 im sure if you asked one of your subscribers or a member of the community they would help you, its always nice to have someone explain and assist you live
@nicopence31483 жыл бұрын
@@BorderWise12 The rotational inputs appear to be reversed so see if adding a "-a" before connecting to a PID helps. I could also be totally wrong. Turn off the AI for things you want to control personally with breadboard as well.
@BorderWise123 жыл бұрын
@@richien.4915 That is actually my plan for the next stream: two hours of me trying to learn the Breadboard while the chat facepalms at me. XD
@richien.49153 жыл бұрын
@@BorderWise12 lmao
@ARCH4_NGEL3 жыл бұрын
All the smart comments are taken. ;-;
@hmeric74953 жыл бұрын
I love the way it looks
@honkhonk64433 жыл бұрын
if not repairbot spamming the the megalodon would win, nice looks tho
@doubt34303 жыл бұрын
Why is jotunn in FTD
@Inglonias3 жыл бұрын
I should redo my swarm gunship.
@icehead01233 жыл бұрын
Please take a look at the ships of Legends of the Galactic Heroes ships. I can’t be the only person to see the similarities.
@Tonatsi3 жыл бұрын
according to the first second of the video, I think this will be swallowing a ship
@insaeculasaeculorum Жыл бұрын
It looks like a catfish
@Jojob5413 жыл бұрын
I have never seen a breadboard before watching this video, but it looks like three PIDs and a slightly more complicated ai card to me.