Thaumcraft. Research helper: aspect chain maker.

Dieses Thema im Forum "Tutorials, Tips and Tricks" wurde erstellt von madzdz, 1. August 2014.

  1. The42ndDruid

    The42ndDruid I sell Propane and Propane accessories Patron Tier 3

    Beiträge:
    105
    Zustimmungen:
    25
    Ortszeit:
    18:16
    It would be a smaller list that listing every possible combo. I'm just not sure how to connect everything dynamically. I'd have to ask one of my former coworkers.
     
  2. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Beiträge:
    3.257
    Zustimmungen:
    1.097
    Ortszeit:
    17:16
    ... How @The42ndDruid is what your saying different from what I did? Please actually look at my work before telling me you have a better way of doing it.
     
  3. The42ndDruid

    The42ndDruid I sell Propane and Propane accessories Patron Tier 3

    Beiträge:
    105
    Zustimmungen:
    25
    Ortszeit:
    18:16
    I read your description as you had it as a list of every possible combination in your code.
     
  4. knoxz

    knoxz Well-Known Member

    Beiträge:
    612
    Zustimmungen:
    183
    Ortszeit:
    00:16
    is it updated to the thaumcraft 4.2 we use on galaxy?
     
  5. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Beiträge:
    3.257
    Zustimmungen:
    1.097
    Ortszeit:
    17:16
    I don't believe the program is yet, but the link I posted is updated to the latest version of MyG.
     
  6. madzdz

    madzdz Member

    Beiträge:
    45
    Zustimmungen:
    4
    Ortszeit:
    00:16
    Program updated to 4.2 !

    When i will have some more time, i will add more setups and/or combinations. All i need now is list in similar format, because i modified program to be update friendly :) :

    Code:
    		public static List<Aspect> v4_2 = new List<Aspect>
    	{
    new Aspect("aer", "null", "null"),
    new Aspect("terra", "null", "null"),
    new Aspect("ignis", "null", "null"),
    new Aspect("aqua", "null", "null"),
    new Aspect("ordo", "null", "null"),
    new Aspect("perditio", "null", "null"),
    new Aspect("gelum", "ignis", "perditio"),
    new Aspect("lux", "aer", "ignis"),
    new Aspect("motus", "aer", "ordo"),
    new Aspect("permutatio", "perditio", "ordo"),
    new Aspect("potentia", "ordo", "ignis"),
    new Aspect("tempestas", "aer", "aqua"),
    new Aspect("vacuos", "aer", "perditio"),
    new Aspect("venenum", "aqua", "perditio"),
    new Aspect("victus", "aqua", "terra"),
    new Aspect("vitreus", "terra", "ordo"),
    new Aspect("bestia", "motus", "victus"),
    new Aspect("fames", "victus", "vacuos"),
    new Aspect("herba", "victus", "terra"),
    new Aspect("iter", "motus", "terra"),
    new Aspect("limus", "victus", "aqua"),
    new Aspect("metallum", "terra", "vitreus"),
    new Aspect("mortuus", "victus", "perditio"),
    new Aspect("praecantatio", "vacuos", "potentia"),
    new Aspect("sano", "victus", "ordo"),
    new Aspect("tenebrae", "vacuos", "lux"),
    new Aspect("vinculum", "motus", "perditio"),
    new Aspect("volatus", "aer", "motus "),
    new Aspect("alienis", "vacuos", "tenebrae"),
    new Aspect("arbor", "aer", "herba"),
    new Aspect("auram", "praecantatio", "aer"),
    new Aspect("corpus", "mortuus", "bestia"),
    new Aspect("exanimis", "motus", "mortuus"),
    new Aspect("spiritus", "victus", "mortuus"),
    new Aspect("vitium", "praecantatio", "perditio "),
    new Aspect("cognitio", "terra", "spiritus"),
    new Aspect("sensus", "aer", "spiritus "),
    new Aspect("humanus", "cognitio", "bestia "),
    new Aspect("instrumentum", "humanus", "ordo"),
    new Aspect("lucrum", "humanus", "fames"),
    new Aspect("messis", "herba", "humanus"),
    new Aspect("perfodio", "humanus", "terra"),
    new Aspect("fabrico", "humanus", "instrumentum"),
    new Aspect("machina", "motus", "instrumentum"),
    new Aspect("meto", "messis", "instrumentum"),
    new Aspect("pannus", "instrumentum", "bestia"),
    new Aspect("telum", "instrumentum", "perditio"),
    new Aspect("tutamen", "instrumentum", "terra")
       };
     
    BookerTheGeek gefällt das.
  7. BookerTheGeek

    BookerTheGeek Patron Tier 3

    Beiträge:
    3.257
    Zustimmungen:
    1.097
    Ortszeit:
    17:16
    @madzdz Would you like them in a txt file, cfg file or something different?
     
  8. madzdz

    madzdz Member

    Beiträge:
    45
    Zustimmungen:
    4
    Ortszeit:
    00:16
    it doesnt matter :) whats most important is structure of list, and there cant be any typo's
     
  9. chugga_fan

    chugga_fan ME 4M storage cell of knowledge, all the time

    Beiträge:
    5.861
    Zustimmungen:
    730
    Ortszeit:
    18:16
    madzdz try making the program to find the closest it can to the base aspects and list that first, do this with all aspects except ordo, ordo is a pain in the *&^%^*(^ to get in 4.2
     
  10. madzdz

    madzdz Member

    Beiträge:
    45
    Zustimmungen:
    4
    Ortszeit:
    00:16
    nice idea. how about adding tier parameter to aspect obiect, and then sort whole result by sum of tiers, so cheapest are displayed first? :) also i could add form to increase weight of certain aspect, so if someone hate f.e. sano, he could add 5 to it :)
     
  11. chugga_fan

    chugga_fan ME 4M storage cell of knowledge, all the time

    Beiträge:
    5.861
    Zustimmungen:
    730
    Ortszeit:
    18:16
    yhea i don't use programs like these (i'm great at figuring this out with a quick look at the thaumonomicon) but others do so try to customise it around them
     
  12. hansi132

    hansi132 Well-Known Member

    Beiträge:
    370
    Zustimmungen:
    114
    Ortszeit:
    00:16
    @madzdz Long time no see madzdz. How is it going? Btw is this program open src?
     
  13. madzdz

    madzdz Member

    Beiträge:
    45
    Zustimmungen:
    4
    Ortszeit:
    00:16
    Hey, long time because I got time consuming job. As for program, its not open source yet - maybe when I finish it, so no one could publish it as better alternative and steal my small group of fans 8)

    Chugga, i already modified program for option to use different priority when sorting, now only user preferences left, and it will make java script version obsolete :)

    Also, I want to make some "Like" counter so everyone could see everyday how many folks like me :)

    by the way, i'm back on Bevo with another name: themimipl Hate it, but still i had much more important things to throw money at. cough Dragon age cough.
     
  14. hansi132

    hansi132 Well-Known Member

    Beiträge:
    370
    Zustimmungen:
    114
    Ortszeit:
    00:16
    Alright! I am a bit curious about lerning java, therefor i asked so i maybe could check out you program to pick up some tricks and tips :) Glad to see you back tough!
     
  15. madzdz

    madzdz Member

    Beiträge:
    45
    Zustimmungen:
    4
    Ortszeit:
    00:16
  16. hansi132

    hansi132 Well-Known Member

    Beiträge:
    370
    Zustimmungen:
    114
    Ortszeit:
    00:16
    Ah! See already lernt something new ;)
     
  17. madzdz

    madzdz Member

    Beiträge:
    45
    Zustimmungen:
    4
    Ortszeit:
    00:16
    updated :)[DOUBLEPOST=1417340118,1417271185][/DOUBLEPOST]I had to change hosting - if anything ever again make me use free hosting services, please punch me! new adress: TCSS simple as that :)
     

Diese Seite empfehlen