Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. P

    ComputerCraft + Thaumic Tinkerer?

    It worked now, the thing is that it's an array inside an array, that's what confused me, thanks man! (also the missing quotes there was a typo, sorry!)
  2. P

    ComputerCraft + Thaumic Tinkerer?

    I've tried doing something like local jar = peripheral.wrap("tilejar_48") local aspectName = jar.getAspects() local aspectTable = {aspectName[name]} print(aspectTable) and it returns nothing, just like if i did print(). Anyways here is the array that textutils.serialize() returned me ...
  3. P

    ComputerCraft + Thaumic Tinkerer?

    Dude sorry to ask again but how can i "translate"the table value to the name of the aspect in the jar? And why it returns a different table evem thought the aspect is the same? I checked out direwolf20'video and was wondering how he made so that it returns the aspect name (tried editing his...
  4. P

    ComputerCraft + Thaumic Tinkerer?

    Man it didn't worked when i just copied and pasted the code(of course, editing the string), but i've modified it like this: local jar = peripheral.wrap("tilejar_48") --the string is the name the peripheral proxy returns local aspects = jar.getAspects() for i,v in pairs(aspects) do...
  5. P

    ComputerCraft + Thaumic Tinkerer?

    So i was trying to use the thaumic tinkerer peripehrals, but i cant get it to work! So what i'm asking is how can i make so that the computer reads the jar and print in a monitor the values of each jar? Why does when i do peripheral.wrap("jarname").getAspects() it returns a table value that's...