More Info: How to Install the Optifine Mod
Need Help? Click here for more information on How to Install the Optifine Mod.
This thread was marked as Locked by Alvoria.
Need Help? Click here for more information on How to Install the Optifine Mod.
This thread was marked as Locked by Alvoria.
Norton should pop up a warning dialog or some other indicator that it has detected the file as a virus (this is a false positive, Norton is being too paranoid). When it does pop up, hit the more information button (might be different depending on what version of Norton you have) and tell it to restore the file. You may have to access the quarantine area to do this.
The villager trading is in the latest snapshot, you won't get that by doing a force update, you have to download and install it manually. Either way, AMIDST has nothing to do with the texture problems you're seeing, it doesn't modify the game at all. You need to reinstall optifine or run the texture patcher again to get your textures working.
D_B
To tell them how to live is to prevent them living.
My texture pack is working fine, the only problem is the fire animations and the compass(I also have no mods). So I'll try reinstalling OptiFine and see what happens!
The messed up fire animations and missing compass needle are due to your game not being patched to compensate for a higher resolution texture pack. Once you install optifine, it should be fixed.
D_B
To tell them how to live is to prevent them living.
I had been using MCPatcher, and I just reopened it and hit patch and everything is now working fine. Thanks everyone for the support!!
Latest snapshot = 12w25a (which I guess you are referring to...See the NOTE below)
so Snapshot 12w25a + Amidst 2.0.33 = Not work
Please - a reminder to everyone - IF you have a problem, include the info as requested by the developer on the first post
To post a bug, please provide the following information:
- Operating System
- Java Version
- Minecraft Version
- Minecraft version you were using when you made your map. (If needed)
- AMIDST Version
- Error log
- Seed (If needed)
- A detailed description of what happened
If you're on a Windows computer and need to find your error logs, use this:
http://www.mediafire...nqp7ugy0vze79rn
Using seed: -7268862948593790404
Doesn't do anything. I use the latest weekly, so I'll have to wait for your program to update to use a save file.
The new version of AMIDST is actually coming along nicely.
.. If so, great news.....Can't wait to see the new version (well, actually I can - but you know what I mean)
Well, when Minecraft is being made, everything is named after what it is. A pig will likely be called EntityPig, and the stronghold generator might be called MapGenStronghold.
If things stayed like this, AMIDST wouldn't have any problem hijacking functions, as a name change would be very rare. MapGenStronghold.canSpawnInThisChunk(x,y) might have it's code changed, but at least the name would be the same.
However, by obfuscating the game, they strip away all the class names, and replace them with something random.
Lets look at an example, you have two classes (I'll keep them in an 'outline' format):
Pig
-Health
-X
-Y
-Z
-Damage(Amount)
-CanSpawn()
Cow
-Health
-X
-Y
-Z
-CanSpawn()
-Damage(Amount)
-Milk()
If AMIDST wanted to check if a cow could spawn in this state, I could just do something like Cow.CanSpawn() ... but if we obfuscate it, it might turn into something like:
a
-A
-B
-C
-D
-A(A)
-A()
b
-A
-B
-C
-D
-A()
-B(A)
-A()
Suddenly, I'm left guessing what's what... The worst part is, they don't stay named "a" and "b", they change per update.
Here's the name of what should just be "World" for the last three updates:
21w23b - "adb"
21w24a - "acv"
21w25a - "adb"
Right now AMIDST finds out the names by my input, and a few other tricks. (For an example, we could safely assume that property "A" will be Health most of the time).
The new version has a special way of getting around the obfuscation all together, along with being able to completely change minecraft's code. (Don't worry, minecraft is copied to a seperate location before it's edited)
Basically the Mojang crew keep changing stuff in the coding on each version, making it harder for you to suss out what's what
Pretty much.
The Minecraft Coder Pack actually goes through and un-obfuscates everything, which is one of the reasons why it takes so long for them to release updates for it.
AMIDST has been working fine for me, except for right-click not being recognized, on Ubuntu 12.04. Make sure you have minecraft.jar in the original location, ~/.minecraft/bin.
Short, easy-to-remember (ETR) seeds.
Please, please, please, all of you, read the first post. All of you left out very important details. Even if you can't get an error log, I still need all the things I listed in my first post.
OS: Windows XP SP3
Java Version: Version 6 Update 29
Minecraft Version: 12w25a
Minecraft Version Map Gen: 12w25a
Amidst Version: 2.0.33
Error Log (using the Amidst Debug app):
World class : act
java.lang.ClassNotFoundException: [B
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at MoF.FinderWindow.loadMinecraft(FinderWindow.java:492)
at MoF.FinderWindow.<init>(FinderWindow.java:64)
at MoF.MoF.main(MoF.java:42)
Bug Description: When attempting to view my world's map using Amidst's "New>From File" feature or the "New>From Seed" feature, the result is a white background and no map data being displayed.
Ah, yes, this is because I don't have support for 12w25a yet. I've been all too busy working on the new version of AMIDST.
There's lots of potential reasons.
But here's the two big ones:
1.) You're not running the same version of Minecraft you used to make the map.
2.) After deciding it should spawn there, Minecraft changing it's mind due to block data conflicting with biome data.