• Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Login
FAForever Forums
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Login

BlackOpsFAF-Unleashed only for FAF v26

Scheduled Pinned Locked Moved Modding & Tools
143 Posts 26 Posters 29.3k Views 2 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    Rowey
    last edited by Rowey 2 Apr 2023, 23:42 4 Feb 2023, 23:41

    @Doompants all air experiments crash damage was nerfed in the latest balance patch. Of Thier is a typo in patch notes le me known and I'll check them tomorrow

    "The needs of the many outweigh the needs of the few" - Spock

    D 1 Reply Last reply 5 Feb 2023, 02:49 Reply Quote 0
    • D Offline
      Doompants @Rowey
      last edited by 5 Feb 2023, 02:49

      @rowey

      Thx, yes I know about the crash damage nerf. That's what we're trying to troubleshoot for the BlackOps mod.

      But patch notes say the Ahwassa is supposed to do 7000 damage, and as you can see from my screenshot it's been doing 8000 hitting that factory (also tested with Quantum portals). Maybe I'm missing something else about crash damage, but this is happening both with BlackOps on, and with Vanilla (BlackOps off).

      1 Reply Last reply Reply Quote 0
      • R Offline
        Rowey
        last edited by Rowey 2 May 2023, 12:00 5 Feb 2023, 11:59

        https://github.com/FAForever/fa/blob/develop/units/XSA0402/XSA0402_unit.bp#L623

        The crash DMG is 7000

        I'll change notes accordingly

        "The needs of the many outweigh the needs of the few" - Spock

        1 Reply Last reply Reply Quote 0
        • J Offline
          Jip
          last edited by Jip 2 Jun 2023, 11:38 6 Feb 2023, 11:38

          @Rowey / @Doompants

          Your observations are correct, the Ahwassa can do more than 7000 damage crash damage.

              OnKilled = function(self, instigator, type, overkillRatio)
                  self.detector = CreateCollisionDetector(self)
                  self.Trash:Add(self.detector)
                  self.detector:WatchBone('Nose_Extent')
                  self.detector:WatchBone('Right_Wing_Extent')
                  self.detector:WatchBone('Left_Wing_Extent')
                  self.detector:WatchBone('Tail_Extent')
                  self.detector:EnableTerrainCheck(true)
                  self.detector:Enable()
                  
                  SAirUnit.OnKilled(self, instigator, type, overkillRatio)
              end,
          
              OnAnimTerrainCollision = function(self, bone,x,y,z)
                  DamageArea(self, {x,y,z}, 5, 1000, 'Default', true, false)  --- <-- additional damage
                  explosion.CreateDefaultHitExplosionAtBone( self, bone, 5.0 )
                  explosion.CreateDebrisProjectiles(self, explosion.GetAverageBoundingXYZRadius(self), {self:GetUnitSizes()})
              end,
          

          When killed it adds various terrain detection detectors to various bones (points) of the unit. When those intersect with the terrain they create a flash and do an additional 1000 damage.

          A work of art is never finished, merely abandoned

          1 Reply Last reply Reply Quote 0
          • J Offline
            Jip
            last edited by 6 Feb 2023, 11:40

            @Rowey it is likely better to phrase it as the minimum crash damage that is reduced, as the real crash damage depends on how the air unit ends up colliding with the terrain.

            A work of art is never finished, merely abandoned

            R 1 Reply Last reply 6 Feb 2023, 11:46 Reply Quote 0
            • R Offline
              Rowey @Jip
              last edited by 6 Feb 2023, 11:46

              @jip may want to let the balance team aware of this too

              "The needs of the many outweigh the needs of the few" - Spock

              1 Reply Last reply Reply Quote 0
              • J Offline
                Jip
                last edited by 6 Feb 2023, 11:54

                I've made them aware of it with the CZAR. But for completeness:

                @Tagada / @TheWheelie : the crash damage reductions reduce the minimum amount of damage an air experimental can deal. Due to terrain intersection detectors an additional 1K to 2K damage can be dealt. Therefore your changelog is not accurate: the minimum crash damage is reduced, but not the actual crash damage.

                A work of art is never finished, merely abandoned

                1 Reply Last reply Reply Quote 0
                • T Offline
                  Tagada Balance Team
                  last edited by 6 Feb 2023, 12:07

                  Isn't the actual crash damage reduced as well? It's just that the value in the BP is the minimal rather than possible crash damage for some units.

                  1 Reply Last reply Reply Quote 0
                  • J Offline
                    Jip
                    last edited by 6 Feb 2023, 15:44

                    The total sum is reduced, yes - but these are separate instances of damage

                    A work of art is never finished, merely abandoned

                    1 Reply Last reply Reply Quote 0
                    • U Uveso referenced this topic on 27 Feb 2023, 06:05
                    • U Uveso referenced this topic on 27 Feb 2023, 06:05
                    • D Offline
                      Doompants
                      last edited by 5 Mar 2023, 18:18

                      Hello friends. 😄

                      New issue with BlackOps after dev patch 3751.

                      Each faction has an Anti-Teleport tower, one at T2 and one at T3. These towers have suddenly started providing cloaking in the same radius as the anti-teleport range (brown intel circle).

                      Here's a quick cheated base that shows everything getting cloaked at the moment of completion.
                      Have confirmed that it is not a visual bug, and that the cloaking is legitimate (enemies can see radar blips, but no visual of structures without Omni units like t3 scouts).

                      https://replay.faforever.com/19405163

                      1 Reply Last reply Reply Quote 0
                      • U Offline
                        Uveso
                        last edited by 6 Mar 2023, 17:27

                        @Jip

                        this is the line that is no longer working:

                        self:DisableUnitIntel('unitScript', 'CloakField') -- Used to show anti-tele range
                        

                        https://github.com/Uveso/BlackOpsFAF-Unleashed/blob/master/units/BAB4209/BAB4209_script.lua#L24

                        executing self:DisableUnitIntel('CloakField') without "unitScript" will disable the cloak correctly.

                        Do we fix this in the game or in the mod?

                        1 Reply Last reply Reply Quote 1
                        • J Offline
                          Jip
                          last edited by 7 Mar 2023, 06:50

                          Good question, I'll look into it this weekend. For now you can fix it in the mod.

                          A work of art is never finished, merely abandoned

                          1 Reply Last reply Reply Quote 0
                          • D Offline
                            Doompants
                            last edited by Doompants 13 Mar 2023, 16:54

                            Also -

                            Cybran blackops t3 bot 'Shadow Splitter' has lost its cloaking ability.

                            No replay here. Just spawn units using cheat and you can see they won't cloak.

                            The toggle for cloaking ability appears on the UI with unit selected, but it does nothing.

                            1 Reply Last reply Reply Quote 0
                            • UvesoU Offline
                              Uveso
                              last edited by 14 Mar 2023, 03:49

                              thanks for reporting!

                              i also found several units in other mods that are not working.
                              Maybe we need to fix that in game after all.

                              1 Reply Last reply Reply Quote 0
                              • D Offline
                                Doompants
                                last edited by 5 Apr 2023, 18:52

                                Hehe. So the problem with Blackops anti teleport towers having a massive cloaking field is also happening with the Aeon t3 teleporting air transport. 😄

                                We had someone build one in the last phantom game, and it cloaked his entire base plus half of each if his neighbor's. Lol

                                I know we are starting to get a bit of a shopping list of things that need updates in Black Ops. Does it help anyone if I make a check list? Or do you have a bug tracker or something somewhere to keep track of this stuff?

                                1 Reply Last reply Reply Quote 0
                                • J Offline
                                  Jip
                                  last edited by 5 Apr 2023, 20:56

                                  @Doompants a check list (with unit ids + the behavior) would be nice, yes

                                  A work of art is never finished, merely abandoned

                                  D 1 Reply Last reply 7 Apr 2023, 21:53 Reply Quote 0
                                  • D Offline
                                    Doompants @Jip
                                    last edited by Doompants 4 Jul 2023, 22:09 7 Apr 2023, 21:53

                                    @jip @Uveso -- This is everything we're aware of ATM. I'm sorry I have no programming experience. I'm an ADHD squirrel most days, but I swear if I find time, this almost makes me consider it. lol.

                                    • Several BlackOps Units with teleporting or anti-teleporting abilities (using 'unitScript', 'CloakField' to show radius) are generating massive cloak fields.

                                    Units affected: All BlackOps T2 and T3 anti-teleport towers, Also BAA0309 (Aeon t3 transport 'Illuminate'). Other teleporting units, ACUs and SACUs are fine.

                                    • Several BlackOps Teleporting units have teleport button on UI, but can no longer teleport

                                    *Units affected: BAA0309 (Aeon t3 transport 'Illuminate'), EAL0301 (Aeon t3 harassment bot 'Faithbreaker'). Teleporting ACUs and SACUs are fine *

                                    • Several BlackOps Cloaking units have cloaking toggle button on UI, but can no longer self-cloak (note that cybran transport cloaks others, but not itself as it used to). Cloaking ACU upgrades and buildings are fine.

                                    Units affected: BRA0309 (Cybran t3 Transport 'Vanisher'), ERL0301 (Cybran Cloaking Bot 'Shadow Splitter').

                                    • BlackOps Cybran ACU maser upgrade becomes bugged (fires erratically or not at all) after riding in transport.

                                    Units affected: ERL0001 (BlackOps Cybran Armored Command Unit). Note that this behavior was fixed previously for Vanilla ACU (URL0001).

                                    • Crash Damage on Czar is still ~16000 (can't find in blueprint where that is listed). If it can't be easily balanced to vanilla values, can BlackOps Czar be removed (use vanilla)? Alt-fire mode is kinda OP anyways.

                                    *Units affected: UAA0301 (BlackOps Czar).

                                    • as per @Nari , attack drones have stopped working at some point. They spawn with the units they are atteched to and then do nothing (or in the case of the Tempest, they land in the tempest like a carrier and cannot be reactivated)

                                    Units affected: BEL0402 (UEF Experimental Assault Bot 'Goliath MK II'), BSL0401 (Seraphim Experimental Hover Tank 'Yenzotha'), UAS0401 (BlackOps version of Aeon Experimental Battleship 'Tempest').

                                    1 Reply Last reply Reply Quote 0
                                    • UvesoU Offline
                                      Uveso
                                      last edited by 7 Apr 2023, 23:23

                                      @Doompants

                                      Oh wow, thanks for the nice list!

                                      @Jip
                                      i started to fix the not working self:DisableUnitIntel('unitScript', 'CloakField') funcion.
                                      Just removing the 'unitScript' argument fixed the first issue, but in the end it was not working.
                                      This is also the case in some other mods.

                                      1 Reply Last reply Reply Quote 0
                                      • JipJ Offline
                                        Jip
                                        last edited by Jip 4 Aug 2023, 11:02 8 Apr 2023, 11:00

                                        I've been picking away at your list @Doompants

                                        Several BlackOps Cloaking units have cloaking toggle button on UI, but can no longer self-cloak (note that cybran transport cloaks others, but not itself as it used to). Cloaking ACU upgrades and buildings are fine.

                                        You mention BRA0309. I've gone back to June 2022, it doesn't cloak the transport itself there either. It can cloak other transports, and therefore receive the cloak from a fellow transport. The code responsible is highlighted, the cloak field excludes the unit that generates the cloak field:

                                        1285da01-0d4b-4365-a9fd-148e4a8fdd99-image.png

                                        That has not changed in the past six years, so it seems to me that BRA0309 works as intended.

                                        Looking at it further:

                                        69f639f1-512d-4b77-abe9-7c862fa8556a-image.png

                                        The unit is considered cloaked by the game, as this scout is unable to see the unit (just the radar blips). @Uveso what are your thoughts on removing that condition of the if statement, so that the unit feels cloaked, as it is indeed cloaked?

                                        I'll look over the remainder of your list over the coming days.

                                        A work of art is never finished, merely abandoned

                                        1 Reply Last reply Reply Quote 0
                                        • DoompantsD Offline
                                          Doompants
                                          last edited by Doompants 4 Aug 2023, 16:59 8 Apr 2023, 16:58

                                          Appreciate the time. I know the Shadow Splitter bot broke, so I thought perhaps the same change broke the Vanisher, but my memories of them being completely cloaked could indeed have stemmed from flying them in multiples.

                                          If you say the unit IS cloaked, just doesn't look cloaked to the player, I found the same is true of the Seraphim ACU upgrade that
                                          allows it to be cloaked in place when not moving (like a Selene scout). Maybe the same tweak could be made to that as well. (ESL0001 I believe)

                                          1 Reply Last reply Reply Quote 0
                                          • First post
                                            Last post