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

I'm currently in the Games Programming program in college, and at the moment, I am writing a book and a webcomic at the same time.

Interests
reading, writing, webcomics, Pokemon (yes Pokemon, get over it), and video games.
PC Specs
Bloodshed Dev C++
Favorite Tags
Member Avatar for MJFiggs

I have just started Python recently and for some reason, I cannot import anything on my computer. I can do it on the computer at my school, but not my laptop. This is the message I received when I tried to import the program "cTurtle" [CODE]IDLE 2.6.1 >>> import cTurtle …

Member Avatar for ultimatebuster
0
159
Member Avatar for MJFiggs

I am trying to sync a sound effect with an action in a flash game, but it does'nt seem bo be working. I am trying to make an explsion sound when the player's ship gets destroyed, here's some of my code [code] mySoundObject = new Sound(); //initializing my sound MySoundObject.attachSound("explosion.wav"); …

Member Avatar for JasonHippy
0
87
Member Avatar for MJFiggs

I have made scoreboards before in programs, but i was wondering if there was an easier way, or at least a shorter way since this method will take up around 50 lines. here's what I usually do [code] if (score_txt >= Score1) { Score7.text = Score6.text; Score6.text = Score5.text; Score5.text …

Member Avatar for Salem
0
70
Member Avatar for MJFiggs

I dont know why, but this program I wrote is having a problem. it has a problem converting an Ace from 11 to 1 when the players have more than 21. if you could look over this, I would appreciate it. [code] #include <iostream> #include <ctime> using namespace std; double …

Member Avatar for MJFiggs
0
115
Member Avatar for MJFiggs

Okay, so I've been working on a program that will allow the user to input what items they want into an array and make the output look like this: Item 1. Sword Item 2. Shield Item 3. Sword Item 4. Armor with some help, i was able to figute that …

Member Avatar for MJFiggs
0
116
Member Avatar for MJFiggs

I have had this problem a couple of times but i am unsure of what it means. could someone tell me what the error message "non-lvalue in assignment" translates to in english, please?

Member Avatar for MJFiggs
0
153
Member Avatar for MJFiggs

I am a bit confused. I am trying to make a program that will take the choices you make and display them all simular to this: Item 1. Sword Item 2. Shield Item 3. Potion Item 4. Potion but when I try to run it it looks more like this …

Member Avatar for MJFiggs
0
134
Member Avatar for MJFiggs

I'm trying to make this program work like a game of BlackJack. However, the program will not listen to me when I try to end the loop. does anyone have any sugestions on how to fix this program? [code] #include <iostream> #include <ctime> using namespace std; double card = 0; …

Member Avatar for MJFiggs
0
482
Member Avatar for MJFiggs

I have been working on this problem so much, I have started to think in Binary. what I am supposed to do is put User defined numbers in acending order. Here is what I tried. (please dont laugh) [CODE]#include <iostream> #include <iomanip> #include <vector> using namespace std; void testSort(int [], …

Member Avatar for MJFiggs
0
109