Log in to ZYGOR
Log in with social media
OR
Log in with Zygor account

Announcement

Collapse
No announcement yet.

Build selector bugged

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Build selector bugged

    I created My own builds based off noxxic.com, every time I add a new glyph it resting the select build back to the build in levelling one, in the bugging this cost me allot of gold because I didn't noticed what it was doing and I kept switch out glyphs please fix this.

    #2
    Go into the guide viewer options and on the Talent Advisor page disable the talent advisor. That should stop it from trying to do anything with the glyphs.
    My Flight Path Follies guide

    A pessimist knows all women are bad... an optimist hopes they are.

    I reject your reality and substitute my own.

    All foreign languages are done with Google Translate.

    Comment


      #3
      Now that would defeat the purpose of creating my own builds and the customizability of the AddOn don't you think, that's some fine support..

      ME: report bug
      SUPPORT: AddOn Bugged?
      SUPPORT: Then turn it off! ( Why fix it? It's broke )
      ME: !#@@$%!#@$
      ME: IMHO they need to fire you as a support agent

      Comment


        #4
        So are you using the Talent Advisor to display your custom builds in game? If so then I misinterpreted your initial post because I thought you were trying to say that you were just picking your own stuff independent of the Talent Advisor but then the Talent Advisor was trying to change it to something else. In that scenario turning off the Talent Advisor aspect of the guide viewer would be the simplest solution since it's not being used. However if you're using the Talent Advisor to see your build in game then it's possible there's something off with your build.

        Please try to explain more clearly exactly what you're doing, what the addon is doing, and what you expect it to do.
        My Flight Path Follies guide

        A pessimist knows all women are bad... an optimist hopes they are.

        I reject your reality and substitute my own.

        All foreign languages are done with Google Translate.

        Comment


          #5
          The first post may have been a little lacking a bit in detail but it did get the point across, there is nothing wrong with the code for the build ( very hard to screw up spell name and glyphs ) and the talent advisor addon would reject the build.

          I do author a few AddOns, so this is not my first time around the block.

          It is simple to reproduce. Start by copying a build, say you are a warrior so copy something like "Leveling Fury" and name it "My Fury" now go to the glyphs and add a new glyph, after adding the glyph the talent advisor will change the build to the "Leveling Fury" this type of behaviour would be a unintended action making it a bug.

          Now if the build glyphs were different from build to build and you didn't catch the addon changing the build on you it would then tell you to change out the glyph costing gold.

          Comment


            #6
            What is the name of the file you're saving your build info into? Are you trying to add it directly to our build file which will get over-writted with every update? Did you make sure that you selected your custom build first before trying to change any glyphs?
            My Flight Path Follies guide

            A pessimist knows all women are bad... an optimist hopes they are.

            I reject your reality and substitute my own.

            All foreign languages are done with Google Translate.

            Comment


              #7
              When I created the build it went into a file called warrior.lua with the proper entry into the autoload.xml , after every update I run a bat file that replaces everything before I start the game client
              autoload.xml
              Code:
              <Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
              ..\FrameXML\UI.xsd">
              	<!-- Autoloading of included builds. Add more files here as you please. -->
              	
              	<Script file="ZygorGuidesBuilds.lua"/>
              
              	<Script file="Build01.lua"/>
              	<Script file="Build02.lua"/>
              	<Script file="Build03.lua"/>
              	<Script file="Build04.lua"/>
              	<Script file="Build05.lua"/>
              	<Script file="Build06.lua"/>
              	<Script file="Build07.lua"/>
              	<Script file="Build08.lua"/>
              	<Script file="Build09.lua"/>
              	<Script file="Build10.lua"/>
              	<Script file="Build11.lua"/>
              	<Script file="Build12.lua"/>
              	<Script file="Build13.lua"/>
              	<Script file="Build14.lua"/>
              	<Script file="Build15.lua"/>
              	<Script file="Build16.lua"/>
              	<Script file="Build17.lua"/>
              	<Script file="Build18.lua"/>
              	<Script file="Build19.lua"/>
              	<Script file="Build20.lua"/>
              	<Script file="Build21.lua"/>
              	<Script file="Build22.lua"/>
              	<Script file="Build23.lua"/>
              	<Script file="Build24.lua"/>
              	<Script file="Build25.lua"/>
              	<Script file="Build26.lua"/>
              	<Script file="Build27.lua"/>
              	<Script file="Build28.lua"/>
              	<Script file="Build29.lua"/>
              	<Script file="Build30.lua"/>
              	<Script file="Build31.lua"/>
              	<Script file="Build32.lua"/>
              	<Script file="Build33.lua"/>
              	<Script file="Build34.lua"/>
              	<Script file="Build35.lua"/>
              	<Script file="Build36.lua"/>
              	<Script file="Build37.lua"/>
              	<Script file="Build38.lua"/>
              	<Script file="Build39.lua"/>
              	<Script file="Build40.lua"/>
              	<Script file="Warrior.lua"/>
              	<Script file="Paladin.lua"/>
              	<Script file="Hunter.lua"/>
              	<Script file="Rogue.lua"/>
              	<Script file="Priest.lua"/>
              	<Script file="Shaman.lua"/>
              	<Script file="Mage.lua"/>
              	<Script file="Warlock.lua"/>
              	<Script file="Monk.lua"/>
              	<Script file="Druid.lua"/>
              	<Script file="Death_Knight.lua"/>
              </Ui>
              warrior.lua
              Code:
              --
              -- Noxxic Zygor port by Nagdand
              --
              
              if not ZygorTalentAdvisor then return end
              
              ZTA:RegisterBuild("WARRIOR","Noxxic Arms","Arms", [[
              	Double Time
              	Second Wind
              	Disrupting Shout
              	Dragon Roar
              	Mass Spell Reflection
              	Bloodbath
              ]],[[
              	Major Glyph of Unending Rage
              	Major Glyph of Death From Above
              	Major Glyph of Sweeping Strikes
              	Minor Glyph of Intimidating Shout
              	Minor Glyph of Subtle Defender
              	Minor Glyph of Gushing Wound
              ]])
              
              ZTA:RegisterBuild("WARRIOR","Noxxic Fury","Fury", [[
              	Double Time
              	Second Wind
              	Disrupting Shout
              	Dragon Roar
              	Mass Spell Reflection
              	Bloodbath
              ]],[[
              	Major Glyph of Unending Rage
              	Major Glyph of Bull Rush
              	Major Glyph of Death From Above
              	Minor Glyph of Intimidating Shout
              	Minor Glyph of Subtle Defender
              	Minor Glyph of Blazing Trail
              ]])
              
               ZTA:RegisterBuild("WARRIOR","Noxxic Protection","Protection", [[
              	Double Time
              	Enraged Regeneration
              	Disrupting Shout
              	Dragon Roar
              	Vigilance
              	Bloodbath
              ]],[[
              	Major Glyph of Unending Rage
              	Major Glyph of Hold the Line
              	Major Glyph of Gag Order
              	Minor Glyph of Intimidating Shout
              	Minor Glyph of Watchful Eye
              	Minor Glyph of Gushing Wound
              ]])

              Comment


                #8
                There is one other possibility I just thought of. Could you try going into your WoW/WTF/Account/<accountname>/SavedVariables folder and delete the Zygor files in there. It's possible that those are corrupted and not being updated properly for the change to your custom builds and that's causing it to try to stay stuck on the default build. This will do a reset of the guide viewer.
                My Flight Path Follies guide

                A pessimist knows all women are bad... an optimist hopes they are.

                I reject your reality and substitute my own.

                All foreign languages are done with Google Translate.

                Comment


                  #9
                  My apology, that worked. I thought for sure that I already tried resetting the addon

                  Comment


                    #10
                    I'm just glad it was that. I never had issues when using my own builds so was trying to figure out why it was giving you an issue.
                    My Flight Path Follies guide

                    A pessimist knows all women are bad... an optimist hopes they are.

                    I reject your reality and substitute my own.

                    All foreign languages are done with Google Translate.

                    Comment


                      #11
                      really I should more then likely do a ui reset, I have used the same data since before WoTLK

                      Comment


                        #12
                        this has resurfaced, tomorrow when the game is back up I am going to get fraps and make a vid, yes I have reset the UI and I have also made sure it was the only addon running to ensure it is the talent advisor messing up

                        Comment

                        Working...
                        X