bump.
anyone can make a video, or even a screenshot tutorial, please?
bump.
anyone can make a video, or even a screenshot tutorial, please?
For mac users? Walk into a pc store, buy a normal computer
Or do you mean for the whole game?
how can i navigate to the root folder?
I am confused how to do this on a Mac. I tried unzipping the lib/natives-mac.jar, but I don't know where the Pokemonium folder is. What is the "lwjgl.jar file from the Slick distribution"? I haven't gotten up to there yet, but I'm still confused where the bin folder is for the next step or even where Pokenet.sh is. Does anyone know how do do this?
I'm not even at the terminal level, but I see some posts below with the terminal below for the next step.
how do i open the "root" folder
I navigate to the root folder and i do what they say but it appear a message like this in my terminal
Last login: Sun May 13 19:06:29 on ttys000
(Computername):~ (username)$ cd downloads
(Computername):downloads (username)$ cd pokemon
(Computername):pokemon (username)$ sh pokenet.sh
Exception in thread "main" java.lang.UnsupportedClassVersionError: Bad version number in .class file
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java :676)
at java.security.SecureClassLoader.defineClass(Secure ClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader .java:260)
at java.net.URLClassLoader.access$100(URLClassLoader. java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java: 195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.j ava:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:3 17)
at sun.misc.Launcher$AppClassLoader.loadClass(Launche r.java:280)
at java.lang.ClassLoader.loadClass(ClassLoader.java:2 52)
at java.lang.ClassLoader.loadClassInternal(ClassLoade r.java:375)
(Computername):pokemon (username)$
Last edited by TGPM; 05-14-2012 at 03:02 AM.
For the love of god. Could someone plz upload a video on youtube on how to do this?
Hey so having problems with "permission denied". dunno what to do. ive tried a whole bunch of things.
Hey guys,
Anyone having issues with "permission denied" messages should follow these instructions:
Before using a file as a shell script you must change its access permissions so that you have execute permission on the file, otherwise the error message Permission deniedis displayed.
To run the shell script, simply type its name at the prompt. The commands in the script will then execute one at a time as though you were typing them in at the terminal.
To give yourself execute permission for the file containing the script use the command:
chmod u+rwx filename
The +rwx after the u allows you to read, write to and execute the script: no one else has permission to read, write or execute.
To give other users permission to read and execute but not alter the shell script use:
chmod go+rx filename