TripleA Logo TripleA Forum
    • TripleA Website
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Tags
    • Register
    • Login

    Activate support attachment by trigger?

    Scheduled Pinned Locked Moved Map Making
    6 Posts 3 Posters 800 Views 3 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.
    • FrostionF Offline
      Frostion Admin
      last edited by Frostion

      On my World of War Heroes map I have a unit named “Arthur” who is supposed to get a support attachment (Devotion-Aura) activated when he is level 8 (costs 800 XP)

      So I want this support attachment…

          <attachment name="supportAttachmentDevotion-Aura" attachTo="Arthur" javaClass="games.strategy.triplea.attachments.UnitSupportAttachment" type="unitType">
              <option name="faction" value="allied"/>
              <option name="side" value="defence"/>
              <option name="dice" value="strength"/>
              <option name="bonus" value="1"/>
              <option name="number" value="4"/>
              <option name="unitType" value="$AllLandUnits$:$AllAirUnits$"/>
              <option name="bonusType" value="Devotion Aura"/>
              <option name="players" value="$AllPlayers$"/>
          </attachment>
      

      To be activated by this 800 XP costing condition / trigger…
      (Humans-Level-7 is a unit on map that indicated that "Arthur" is level 7 and can purchase level 8 if he got the XP)

          <attachment name="conditionAttachment_Humans_can_buy_level_8" attachTo="Humans" javaClass="games.strategy.triplea.attachments.RulesAttachment" type="player">
              <option name="directPresenceTerritories" value="map" count="1"/>
              <option name="unitPresence" value="Humans-Level-7" count="1"/>
          </attachment>
      
          <attachment name="triggerAttachment_Arthur_has_reached_level_8_A" attachTo="Humans" javaClass="games.strategy.triplea.attachments.TriggerAttachment" type="player">
              <option name="support" value="supportAttachmentDevotion-Aura"/>
              <option name="when" value="before:HumansPurchase"/>
              <option name="uses" value="1"/>
          </attachment>
          <attachment name="triggerAttachment_Arthur_has_reached_level_8_B" attachTo="Humans" javaClass="games.strategy.triplea.attachments.TriggerAttachment" type="player">
              <option name="removeUnits" value="Arthur Levels:Humans-Level-7" count="1"/>
              <option name="placement" value="Arthur Levels:Humans-Level-8" count="1"/>
              <option name="uses" value="1"/>
          </attachment>
          <attachment name="triggerAttachment_Arthur_has_reached_level_8_C" attachTo="Humans" javaClass="games.strategy.triplea.attachments.TriggerAttachment" type="player">
              <option name="notification" value="levelup"/>
              <option name="players" value="$AllPlayers$"/>
              <option name="uses" value="1"/>
          </attachment>
      
          <attachment name="userActionAttachment_Humans_buy_level_8" attachTo="Humans" javaClass="games.strategy.triplea.attachments.UserActionAttachment" type="player">
              <option name="conditions" value="conditionAttachment_Humans_can_buy_level_8"/>
              <option name="activateTrigger" value="triggerAttachment_Arthur_has_reached_level_8_A:1:false:false:false:false"/>
              <option name="activateTrigger" value="triggerAttachment_Arthur_has_reached_level_8_B:1:false:false:false:false"/>
              <option name="activateTrigger" value="triggerAttachment_Arthur_has_reached_level_8_C:1:false:false:false:false"/>
              <option name="text" value="Arthur_Level_8"/>
              <option name="costResources" value="800:XP"/>
              <option name="attemptsPerTurn" value="1"/>
          </attachment>
      

      Why is the support attachment active on Arthur from game start round 1?

      The trigger is not supposed to fire/activate before a before "userActionAttachment_Humans_buy_level_8" activates the support attachment. First after this Arthur is supposed to have the support.

      Unavngivet.png

      Map maker of: Star Wars: Galactic War + Star Wars: Tatooine War + Caribbean Trade War + Dragon War + Age of Tribes + Star Trek: Dilithium War + Iron War + Iron War: Europe + Warcraft: War Heroes

      C 1 Reply Last reply Reply Quote 0
      • C Offline
        Cernel Moderators @Frostion
        last edited by

        @Frostion I think this is well explained in pos2, actually:

        support values: name of support attachment, adds specified player to the list of players a supportAttachment supports.

        Assuming "$AllPlayers$" comprises "Humans", there you are either doing nothing or adding a second occurrence of "Humans" (not sure how it works), for the "players" option of the specified support attachment.

        Long story short: assuming that is for Arthur only, and Arthur is for Humans only, just remove the "players" option (all the line) from your support attachment, and it should work as you wish.

        1 Reply Last reply Reply Quote 1
        • W Offline
          wc_sumpton
          last edited by

          @Frostion at frist glance the three assignment triggers don't have a 'conditions' option, and so they might be firing at the start of the game giving Arthur the supportAttachment.

          Just a quick read...

          Cheers...

          1 Reply Last reply Reply Quote 0
          • FrostionF Offline
            Frostion Admin
            last edited by

            @Cernel I changed “$AllPlayers$” to “Humans”. Arthur still has the support from start of game, level 1 not level 8. So noting really changed.

            @wc_sumpton As I understand, if there is no conditions, then it should not fire before triggered by something like "activateTrigger". Is this not right?

            I tried moving “userActionAttachment_Humans_buy_level_8” up and before the three triggers, but then there is an error during map loading that prevent the map from starting.

            Map maker of: Star Wars: Galactic War + Star Wars: Tatooine War + Caribbean Trade War + Dragon War + Age of Tribes + Star Trek: Dilithium War + Iron War + Iron War: Europe + Warcraft: War Heroes

            C 1 Reply Last reply Reply Quote 0
            • C Offline
              Cernel Moderators @Frostion
              last edited by

              @Frostion said in Activate support attachment by trigger?:

              @Cernel I changed “$AllPlayers$” to “Humans”. Arthur still has the support from start of game, level 1 not level 8. So noting really changed.

              Well, maybe I'm not very good at explaining things. What that trigger is doing is adding "Humans" to the players for that support attachment. So, it should work as you wish as long as "Humans" is not one of the players already assigned. Just delete this line completely:
              <option name="players" value="Humans"/>
              Meaning you will have a support attachment assigned to no players.

              1 Reply Last reply Reply Quote 0
              • FrostionF Offline
                Frostion Admin
                last edited by Frostion

                Problem fixed (before I have seen @Cernels post)
                I removed the line with option name="players" completely from supportAttachment, and then it works fine. I guess it is not needed anyway as only humans have Arthur unit.
                Thx @Cernel and @wc_sumpton

                Map maker of: Star Wars: Galactic War + Star Wars: Tatooine War + Caribbean Trade War + Dragon War + Age of Tribes + Star Trek: Dilithium War + Iron War + Iron War: Europe + Warcraft: War Heroes

                1 Reply Last reply Reply Quote 0

                Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                With your input, this post could be even better 💗

                Register Login
                • 1 / 1
                • First post
                  Last post
                Copyright © 2016-2018 TripleA-Devs | Powered by NodeBB Forums