Announcement

Collapse
No announcement yet.

Interactive Renkei Chart...HELP WANTED!

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Interactive Renkei Chart...HELP WANTED!

    I had an idea for a renkei chart that was interactive, somewhat like the stat calculator. You could put in who was skillchaining and what lvl they were, and it would show available skill chains based on what weapon skills were available. Not only that, but I'd like an input for mob or type you're fighting. Then it could list the the sc's based on effectiveness due to lvl of sc as well as elemental weakness of mob. Also, it would be handy if it would show possible spells to MB off of.

    I have absolutely no background in programming, so I'm not sure how plausible this is. However, if someone skilled would be willing to program it, I'd be more than happy to help compile all the necessary data.

    Just putting this out there. I think it might be a cool way to find usable skillchains.

    Let me know what you think.
    Thanks!
    I RNG 75 I WAR 37 I NIN 38 I SAM 50 I Woodworking 92+2

    PSN: Caspian

  • #2
    Re: Interactive Renkei Chart...HELP WANTED!

    There is already several HTML versions ofthis ^^
    -Baka Inu!
    Nejiko - Mithra Current: [ 70 THF / 35 NIN ]
    Basic Jobs: [ 70 THF / 20 MNK / 11 WHM / 18 BLM / 22WAR / 05 RDM]
    Advance Jobs: [ 04 BST / 37 NIN / 02 SMN / 05RNG / 07 SAM / 07 PLD / 00 DRK / 31 BRD / 00 DRG]
    Aht Jobs: [07 COR / 00 BLU / 00 PUP]

    Comment


    • #3
      Re: Interactive Renkei Chart...HELP WANTED!

      Damn, I suck.
      oh well.
      I RNG 75 I WAR 37 I NIN 38 I SAM 50 I Woodworking 92+2

      PSN: Caspian

      Comment


      • #4
        Re: Interactive Renkei Chart...HELP WANTED!

        If there are HTML versions of this, could somebody post some links to them?

        I built a database personal uses, and thought ot build a PHP front end for it so my Ls could use it, but why bother if somebody else already did it? lol
        Odude
        PS2 Beta tester - Cactaur - Rank 4
        RDM32 - BLM17 - DRK11 - RNG11 - BRD9 - BST7 - WAR6 - MNK4

        Lakshmi: Windurst Rank 10 - Zilart, CoP, ToAU COMPLETE - WotG
        SAM90 - DRK90 - MNK90 - WAR90 - RNG90 - BST90 - RDM83 - NIN50 - THF46 - DRG42 - BLM40 - PUP23 - WHM20 - PLD13 - BRD13 - BLU10 - SCH10 - DNC7 - COR5 - SMN1

        Comment


        • #5
          Re: Interactive Renkei Chart...HELP WANTED!

          http://www.deadgod.net/index.php?do=renkei
          PSN ID - PaiPai Gamertag - PaiPaiMaster Steam ID: Pai Pai Master
          Rockman - Fairy

          WAR75/SMN75/PLD68/NIN37/THF37/SAM37/WHM41
          WIN8-1/ZM (Clear)/PM (Clear)/AM (Clear)/WotG3/ACP1
          Currently Playing:
          FINAL FANTASY XIII, Starcraft 2 Beta

          Comment


          • #6
            Re: Interactive Renkei Chart...HELP WANTED!

            Thing I hate most is trying to find the right weapons, then find ws's that are lower enough to use when I'm lvling my subs. Then if you find multiple, figuring out which is the best to use.
            Its easier higher up when everyone starts doing distortion, but half the time there's a mnk in the party, and rng > mnk sc's at my lvl suck.

            EDIT: Awesome, thanks Pai.

            Double EDIT: It seems to be off on some stuff. I tried Rng > Thf. It says distortion is completely impossible. Even though Sidewinder or Piercing > VB is lvl 2 distortion. Odd.
            Last edited by Caspian; 10-23-2005, 05:54 PM.
            I RNG 75 I WAR 37 I NIN 38 I SAM 50 I Woodworking 92+2

            PSN: Caspian

            Comment


            • #7
              Re: Interactive Renkei Chart...HELP WANTED!

              It's missing a lot of information.

              Comment


              • #8
                Re: Interactive Renkei Chart...HELP WANTED!

                If you have Firefox you can get an excellent Skillchain Calculator extension:

                http://ffxi.xenoveritas.org/tools/sk...ns/index.shtml

                It's been accurate for me so far and is updated regularly. No information on mobs and such but it easily outdoes any skillchain chart I can think of and you can even send in reports if you find a mistake.

                Double Post Edited:
                Hrmmm, unfortunately it looks like they have tons of work to do with Avatar-based skillchains

                Double Post Edited:
                Or maybe it's just a tad buggy. If you use the weapons tab, skilchains possible with Avatars show up just fine. Although I'm still not sure if they have completed gathering all the avatar data.
                Last edited by nanatsu; 10-24-2005, 02:16 PM. Reason: Automerged Doublepost
                My Signature. Now with 50% more processed ham product than those other leading signatures.

                Which FF Character Are You?
                Originally posted by Balfree
                Why does every discussion have to be a little festivity of sorts, with purple doom rain and lunatic frogs singing the yodelay on top of mushrooms and little babies being eaten by crazy flying cows and green gas explosions on the horizon and screaming goats?

                Comment


                • #9
                  Re: Interactive Renkei Chart...HELP WANTED!

                  Essentially, the Skillchain Calculator has a problem. It's written in JavaScript. Mozilla's implementation of JavaScript is single-threaded. Everything UI-related in Mozilla is written in JavaScript.

                  So, when the calculator is off calculating chains, the entire browser locks up. Not good.

                  So about a year ago, I stopped actively developing the thing and went looking for solutions to this. A couple of months ago, I discovered that Mozilla's JavaScript implementation is, indeed, single threaded, meaning that the extension will always lock up the browser while calculating.

                  Since then, I've been looking for solutions to this problem, and trying to come up with some way to work around this. And I haven't really come up with anything managable.

                  Which means: I'm almost certainly, at this point, going to discontinue the Skillchain Calculator as an extension. It can't work without stopping the entire browser while calculating, and I don't want that. It's also gotten VERY ugly internally, as XUL/JavaScript do not lend themself to clean coding practices.

                  That doesn't mean it's going away, though. I'm working on re-writing it in Java. Java has the advantage of allowing multithreaded applications, so the entire program won't freeze simply because it's off calculating in the background. It also means that people won't need to use Firefox to get the extension, they just need Java. (Which is, of course, larger than Firefox. Can't win them all.)

                  Java also has the added advantage that it should make displaying the results in an understandable fashion much easier.

                  Unfortunately, I don't have an ETA on a release of the Java version. But it will hopefully be easier to use than the Mozilla version, as well as faster.
                  In other words, he needs to redo this in PHP Well, I think he should. But anyway, looks like development has stopped.

                  Comment


                  • #10
                    Re: Interactive Renkei Chart...HELP WANTED!

                    well I still use it x_x I don't notice any real problems with it. But if development has stopped then oh well. :p Guess it's time to find something else
                    My Signature. Now with 50% more processed ham product than those other leading signatures.

                    Which FF Character Are You?
                    Originally posted by Balfree
                    Why does every discussion have to be a little festivity of sorts, with purple doom rain and lunatic frogs singing the yodelay on top of mushrooms and little babies being eaten by crazy flying cows and green gas explosions on the horizon and screaming goats?

                    Comment


                    • #11
                      Re: Interactive Renkei Chart...HELP WANTED!

                      Originally posted by Pai Pai Master
                      Everytime I try to use this thing it just blinks and resets itself...

                      Comment


                      • #12
                        Re: Interactive Renkei Chart...HELP WANTED!

                        Originally posted by nanatsu
                        If you have Firefox you can get an excellent Skillchain Calculator extension:

                        http://ffxi.xenoveritas.org/tools/sk...ns/index.shtml

                        It's been accurate for me so far and is updated regularly. No information on mobs and such but it easily outdoes any skillchain chart I can think of and you can even send in reports if you find a mistake.

                        Double Post Edited:
                        Hrmmm, unfortunately it looks like they have tons of work to do with Avatar-based skillchains

                        Double Post Edited:
                        Or maybe it's just a tad buggy. If you use the weapons tab, skilchains possible with Avatars show up just fine. Although I'm still not sure if they have completed gathering all the avatar data.
                        this thing... is... so... cool.

                        id love to see it built out to be more robust.
                        like casp said, monster weaknesses for a particular renkei would be a nice one.
                        Omni@Remora: NIN75 RNG75 MNK75 COR75 BST64 BRD53
                        ♪♫ San d'Oria Complete ♪♫ ZM Complete ♪♫ CoP Complete ♪♫ AM Complete ♪♫

                        Comment


                        • #13
                          Re: Interactive Renkei Chart...HELP WANTED!

                          Well so far the guy has still been fixing bugs and making it work better, but like was said before he's already stating he's going to stop developing it because of problems with the way Firefox extensions work. He's might attempt to do it Java at a later date, but it really is a very awesome extension and makes it very very easy to come up with skillchains. The bug I mentioned before has been fixed already by the way.
                          My Signature. Now with 50% more processed ham product than those other leading signatures.

                          Which FF Character Are You?
                          Originally posted by Balfree
                          Why does every discussion have to be a little festivity of sorts, with purple doom rain and lunatic frogs singing the yodelay on top of mushrooms and little babies being eaten by crazy flying cows and green gas explosions on the horizon and screaming goats?

                          Comment


                          • #14
                            Re: Interactive Renkei Chart...HELP WANTED!

                            There was another standalone proggy, written in Ruby (There is a Windows .exe version) and that was, IMHO, one of the better SC calculators and you can use it offline or have it handy to run on anything that runs MS DOS or DOS emulation (I think there's even a way to setup that old HP48GX calculator to run in DOS emulation, although not sure if the program would fit in those 512KB cards ) I'll go check to see if it's still being supported and available for download ...

                            Comment


                            • #15
                              Re: Interactive Renkei Chart...HELP WANTED!

                              Originally posted by Aeni
                              There was another standalone proggy, written in Ruby (There is a Windows .exe version) and that was, IMHO, one of the better SC calculators and you can use it offline or have it handy to run on anything that runs MS DOS or DOS emulation (I think there's even a way to setup that old HP48GX calculator to run in DOS emulation, although not sure if the program would fit in those 512KB cards ) I'll go check to see if it's still being supported and available for download ...
                              any updates on this?

                              Comment

                              Working...
                              X