Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
1
0 Endorsements
~4K People Reached
About Me

Programmer (derp). I know: HTML, CSS, PHP, C++, C#, C, Perl, Java, SQL, BASIC/VB 2010, JavaScript, and a little bit of Assembly and Python.

Interests
Programming. (derp)
PC Specs
OS: Windows, Mac, AND Linux xD
Favorite Tags
Member Avatar for AaronLLF

I accidentally overwrote one file (for example, file A) onto another (for example, file B), so I had to rewrite file B (Which wasn't hard, it was a pretty short file. Now, PHP is giving me an error that I never had before, saying that all of my functions (which …

Member Avatar for pritaeas
0
77
Member Avatar for AaronLLF

On a new site I'm making, sessions are not working. They were working previously, and stopped without a single change of the code. Once a login goes through the verification, it runs: [CODE]$_SESSION['uid'] = getIdFromEmail($email);[/CODE] getIdFromEmail is a function I built to get the user's ID from their email address. …

Member Avatar for simplypixie
0
253
Member Avatar for AaronLLF

OK, so I'm making a video game and I have a simple inventory code. This is the inventory class: [code] public class Inventory { static int slot[] = new int[17]; static boolean[] taken = new boolean[17]; static int item[] = new int[17]; static int count[] = new int[17]; public static …

0
112
Member Avatar for AaronLLF

I'm creating an NBT viewer in Java. It works fine as a console application so I used code to rewrite all console (system.out.println) text to GUI text. It works but it does not use scrollbars correctly. Here is my code (For my window/GUI void) [code] private static void createAndShowGUI() { …

Member Avatar for mKorbel
0
296
Member Avatar for AaronLLF

So, I'm making a new game in Java. I am trying to add networking code. I'm using the code at [url]http://download.oracle.com/javase/tutorial/networking/sockets/clientServer.html[/url] but I want it so that when the player moves in my game, it updates their location in the server and then updates it to everyone on the server …

0
83
Member Avatar for AaronLLF
Member Avatar for AaronLLF

I'm making a video game, but there's 1 (more like 10 others that are offtopic :P) thing I want changed. The sky/space color. See this video (Outdated code, but it's the most recent video): [url]http://www.youtube.com/watch?v=ZlCZUtoB0MA[/url] See the black space? I want to change that to something like sky color. I'm …

Member Avatar for pbl
0
138
Member Avatar for AaronLLF

Hopefully this is my LAST QUESTION!! D:< Anyway, I saw a code on lloydgoodall.com for an LWJGL FPCamera. It had SEVERAL errors, but I finally got to the (hopefully) last error. "Keyboard must be created before you can query key state" My code: [code] import org.lwjgl.Sys; import org.lwjgl.opengl.Display; import org.lwjgl.opengl.GL11; …

Member Avatar for Ezzaral
0
866
Member Avatar for AaronLLF

Hi. Hopefully this is my final question for this code. As you may know, I got a code from lloydgoodall.com for a Java & LWJGL FPCamera. It came with several errors, which I got to fixing, and after many, many Google searches, Option+Space's, and hitting my head against my desk's, …

Member Avatar for JamesCherrill
0
550
Member Avatar for AaronLLF

I get an error in the Eclipse console when trying to run a first person camera using LWJGL & Java. "Exception in thread "main" java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path" I did include the jar's for libraries and I did add the VM argument -Djava.library.path=C:\lwjgl-2.5\native\windows\ Please help.

Member Avatar for FallenPaladin
0
329
Member Avatar for AaronLLF

I followed through a Java/LWJGL n lloydgoodall.com for a first person camera. There were about 33 errors that I fixed, though I get a message in the Eclipse console "java.lang.NoSuchMethodError: main Exception in thread "main" " Here is my code: [code] import org.lwjgl.Sys; import org.lwjgl.opengl.Display; import org.lwjgl.opengl.GL11; import org.lwjgl.input.*; import …

Member Avatar for kramerd
0
654