Originally posted by Quantrizi
Ok, kool. I have a problem on my project though. When a user picks the class that they'll like to play as, it just recycles. This is what I mean:
A user types in there name, then types in 1 to be a mage, and as soon as the user hits the enter key, it goes back to the pick your name. It's continious(sp?)
That is really hard to answer as we can't see your code. You use some kind of loop that never end like this:
Code:
while(1)
{
  printf("Enter name:");
  gets(Name); //Whatever syntax gets has
  printf("Enter class:");
  gets(Class);
}