City of Arabel
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Ray of Frost with GSF Conj not freezing targets

    Scheduled Pinned Locked Moved Closed Bugs
    11 Posts 3 Posters 451 Views
    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.
    • ZoolZ
      Zool
      last edited by

      Are you seeing them make saves? I just looked at the script and don't see any big issues.

      int bHasGSFC = GetHasFeat(FEAT_GREATER_SPELL_FOCUS_CONJURATION, OBJECT_SELF);
      
      //If the caster has GSF Conjuration,
                  if(bHasGSFC == TRUE) {
                      //Have the target make a fort save vs caster INT + GSF
                      int nFortSave = FortitudeSave(oTarget,
                                                      10 + GetCasterAbilityModifier(OBJECT_SELF) + 4,
                                                      SAVING_THROW_TYPE_COLD);
      
                      switch(nFortSave) {
                          //If the saving throw fails,
                          case 0:
                              //Then apply a 10% movement speed decrease for d3 rounds
                              ApplyEffectToObject(DURATION_TYPE_TEMPORARY,
                                                  EffectMovementSpeedDecrease(10),
                                                  oTarget,
                                                  RoundsToSeconds(d3()));
                              break;
      
                          //Do nothing if the save succeeds, the target is immune, or if FortitudeSave() does weird shit
                          case 1:
                              break;
      
                          case 2:
                              break;
      
                          default:
                              break;
                      }
                  }
      

      > !!!MOLES for the MOLE GOD!!!

      1 Reply Last reply Reply Quote
      • Mox BerylM
        Mox Beryl Banned
        last edited by

        Yeah, I see saves fail but they still don't freeze.

        Claudia Leigh Blackwell (portrait)
        Former: Laurel Wildwalker, Maggie Marigold

        1 Reply Last reply Reply Quote
        • ZoolZ
          Zool
          last edited by

          Yes, but they lose 10% movement speed - there doesn;'t appear to be a visual effect to go with it, which could probly be changed, but they are losing the 10% movement speed.

          > !!!MOLES for the MOLE GOD!!!

          1 Reply Last reply Reply Quote
          • Mox BerylM
            Mox Beryl Banned
            last edited by

            I might have misunderstood what was supposed to happen. This thread says "applies a freeze effect" which I assumed was the same thing Boreal Winds does.

            Claudia Leigh Blackwell (portrait)
            Former: Laurel Wildwalker, Maggie Marigold

            1 Reply Last reply Reply Quote
            • ZoolZ
              Zool
              last edited by

              I guess if we chuck a freeze VFX on it- that might help - but it shuold probly say, applies a freeze effect, which causes a 10% movement speed decrease

              > !!!MOLES for the MOLE GOD!!!

              EchoE 1 Reply Last reply Reply Quote
              • Mox BerylM
                Mox Beryl Banned
                last edited by

                Okay, so no bug after all! A visual effect would be nice though.

                Claudia Leigh Blackwell (portrait)
                Former: Laurel Wildwalker, Maggie Marigold

                1 Reply Last reply Reply Quote
                • EchoE
                  Echo @Zool
                  last edited by Echo

                  @Zool said in Ray of Frost with GSF Conj not freezing targets:

                  I guess if we chuck a freeze VFX on it- that might help - but it shuold probly say, applies a freeze effect, which causes a 10% movement speed decrease

                  It used to do a vfx.

                  "You can complain if you weren't asked; you can't complain if you were asked but didn't contribute." ~ Professor.

                  EchoE 1 Reply Last reply Reply Quote
                  • EchoE
                    Echo @Echo
                    last edited by

                    Fix attempted v7358

                    "You can complain if you weren't asked; you can't complain if you were asked but didn't contribute." ~ Professor.

                    EchoE 1 Reply Last reply Reply Quote
                    • EchoE
                      Echo @Echo
                      last edited by

                      Has anyone tested this?

                      "You can complain if you weren't asked; you can't complain if you were asked but didn't contribute." ~ Professor.

                      EchoE 1 Reply Last reply Reply Quote
                      • EchoE
                        Echo @Echo
                        last edited by

                        I saw it used recently. Fix seems to be working.

                        "You can complain if you weren't asked; you can't complain if you were asked but didn't contribute." ~ Professor.

                        1 Reply Last reply Reply Quote
                        • EchoE Echo moved this topic from Bug Reports on
                        • 1 / 1
                        • First post
                          Last post