Recent content by tra95

  1. T

    Issue: Buildcraft Filler Breaks Items (Not Blocks)

    http://minecraftbuildcraft.wikia.com/wiki/Filler#comm-16164 seems to imply that the config option does not really work. Try the fix suggested at the end of the post to change I:itemLifespan to a large number?
  2. T

    Advanced Solar Recipe

    What NEI shows you is entirely dependent on YOUR config AFAIK, the server's config does not affect what NEI tells you. When you say both your friend and you have the same config, do you mean the entire config folder or only the NEI config? The advanced solar recipe is changed in the advanced...
  3. T

    How do I grant my players permission to teleport to waypoints WITHOUT being opped?

    A little crazy, but you could write a python wrapper and interpret messages in chat such as "!tp spawn" to teleport the player from the console with "tp <player> <x> <y> <z>".
  4. T

    Computercraft touchscreen box to open website

    Entirely possible. Http api querying a page containing commands, which you input in a page that is password protected. You would even be able to send out data using get/post. The only "issue" is that it requires a web server of some sorts, but you could use one of the many free web hosting sites...
  5. T

    computercraft turtle not working

    No problem :p, we all make mistakes.
  6. T

    computercraft turtle not working

    Great to hear its working :) Line 40: fuction whole() Should be function whole()
  7. T

    computercraft turtle not working

    Yep. The code is executed with variable having the value 2,3,4,5,6,7
  8. T

    computercraft turtle not working

    On line 86: if turtle.getFuelLevel < 50 then Should be if turtle.getFuelLevel() < 50 then As its a function. On a semi related node, for loops can shorten your code considerably. For example: turtle.up() turtle.up() turtle.up() can be shortened to for variable = 1,3 do turtle.up() end To...