Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~486 People Reached
Favorite Tags
java x 1
Member Avatar for mxa92

Basically, the game goes like so- User types a word they want player to guess (I've done this) each letter in the word is displayed by "-"'s (I've done this) Player guesses a letter in the word (I've done this) Check guessed letter with each position in the word (I've …

Member Avatar for hfx642
0
132
Member Avatar for mxa92

I keep running into errors when I try to draw an Array onto the screen using a specific section of my Sprite-sheet. Here's the code I have to actually create my sprite-sheet: [code]#fields // Fireball variables private Point frameSize6 = new Point(48, 47); // Fireball image size private Point currentFrame6 …

0
65
Member Avatar for mxa92

[code]public Boolean CollisionCheck(float x1, float y1, float width1, float height1, float x2, float y2, float width2, float height2) { float left1 = x1; float left2 = x2; float right1 = x1 + width1; float right2 = x2 + width2; float top1 = y1; float top2 = y2; float bottom1 = …

Member Avatar for gusano79
0
289