Yet another client error- Mac (I think I may be missing a file or two?)
No replies
TheMarchHare
WoM Member
Members
WoM Member: 20391
WoM Coins: 0

I've got the minecraft.jar in the lib folder, and I assume from a mac the runscript is the minecraft-osx.sh file rather than the run.bat, so I've been launching that.

However this is what I get:
#!/bin/sh
JAVA=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin/java
DIR=`echo $0 | sed -E 's/\/[^\/]+$/\//'`
if [ "X$0" != "X$DIR" ]; then
cd $DIR
fi
RUN=true
while [ $RUN == "true" ]; do
$JAVA -classpath skin:lib/jinput.jar:lib/lwjgl.jar:lib/lwjgl_util.jar:lib/World of Minecraft.jar:lib/minecraft.jar -Djava.library.path=native/macosx -Dsun.java2d.noddraw=true -Dsun.awt.noerasebackground=true -Dsun.java2d.d3d=false -Dsun.java2d.opengl=false -Dsun.java2d.pmoffscreen=false -Xmx800M Main
if [ $? -ne 10 ]; then RUN=false; fi
done
~Any brainiac able to help me out? :<