-
1 Attachment(s)
Debugging
Hi, I'm using Borland C++. The program, or game, that I'm working on starts when you input PUNCH and then GET AXE. They have to be capitolized in the game. I get the punch to work but when I say GET AXE it says absolutely nothing. Can you report on the problem because I can't find it.
-
The line where it sais
lvlaxe+1;
is wrong and should be
lvlaxe++;
or
lvlaxe += 1;
-
BTW great game ;) keep up the good work!
-
> lvlaxe+1;
I think you mean axeamt+1;
Why are all the char arrays unsigned?