No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Programming, reading, writing and video games = ME. Total nerd. I also work in an insane asylum, so you just imagine how that goes.
22 Posted Topics
Re: You could use the Beep command... Beep(523,500); // 523 hertz (C5) for 500 milliseconds Beep(587,500); Beep(659,500); Beep(698,500); Beep(784,500); but you probably didn't want to hear that from a novice like me... | |
Ok I have an assignment for school where we are building a compiler step by step each week. This week I have to make a syntax analyzer that picks out the errors from this text file below. In the source code I have provided below I have a lexical analyzer … | |
First off, this is homework and I do my classes online and the teacher doesn't respond to my e-mails in the fastest fashion. I've been getting linker errors all day and I'd like at least an explanation of why they happen. here is my problem. Main.obj : error LNK2019: unresolved … | |
I am working on a 2-d scrolling map RPG ala final fantasy. Anyway the question I wanted to ask you is how do you go about tile based collision? Let's say I got my scroll map made up and I don't want my player to walk over tiles assigned to … | |
For example, I want to set flag so that when I click a mouse down a screen schows up. I got that. But when I take my finger off of the button it disappears. Does anyone know how to set up a falg so that doesn't happen? switch(id) { case … | |
How do I erase the font once it's done it's purpose? I've checked the web and it only shows how to put up font but not how to erase it so I can put up new font in it's place. Also if you have an easier way to do what … | |
ok I am almost done doing what I need to do and that is getting a portion of a bitmap to appear on the screen and have it move around using directional controls. My problem is that while I get the the bitmap move it leaves the original behind and … | |
Re: Sounds like you need a bit more experience with C++ before you start messing around with graphics. Seriously though, there's is a whole process you have to do just to set up OpenGL with C++. Are you using Visual C++? You can do some things with OpenGL without win32 but … | |
What I want to do is take my rpg man sprite and understand how I can access each of his eight animations with methods. I've looked at code that does something like this but I'm not quite getting it. Right now, I got my guy to do two seperate animations … | |
I have a hero sprite which I have implemented in in my game. He walks around in a grass field. Unfortunately, he is surrounded by a white border that is also in the btmap(or JPG in this case). Any idea on how I can get my program to differentiate the … | |
I am making a character generator for school. What I have to do is make my CalcPoints method abstract. Unfortunately I keep getting These three error for each of my derived character classes and I don't know what to do. C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\Rosario_Week3\ConsoleApplication2\Program.cs(126,26): error CS0115: 'UltimateWarrior.CalcPoints()': no suitable method … | |
Re: Well We aren't going to write the code for you! What have you got so far? | |
I was hoping you guys could help me out as you have in the past. I am kind of new to C# coming from C++. I get two of each of these errors. C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(51,39): error CS1518: Expected class, delegate, enum, interface, or struct C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(57,9): … | |
Re: You are going to have to do this the hard and just learn by buying books on C# or taking a class on it at your local college. Also youtube offers some interesting tutorials on C# | |
Ok here is what I got so far. When you type add, it asks what object would you like to add When you type list, it lists those objects When you type exit, you leave the program What I would like to do is create a search function where I … | |
Re: I know this a long dead subject but... if anyone else has this problem like I did! here is the solution [code] #include <iostream> using namespace std; void spaces(int x) //I'm thinking, everybody else is going to do a diamond full of stars. So why not //put spaces in mine … | |
I keep getting a logic error when I go to fight a monster. It says the life must be initialized and then I get a runtime error. So I put a value to it and it runs fine. But the question is, what happens after the fight. I don't want … | |
For Visual Studio 2008. I am not sure if this is the right place for it, but maybe someone here can help me. I have my program set up for Open GL, I also want to put Open AL in there too. Now I scoured the net for tutorials and … | |
Can anyone give me a hint on how to save my heroes health that is in a PLAYER class that would be GetHealth() because it inherited that from the base class entity. SetHealth() is in the base class Entity. I know I am just a couple line away from solving … | |
Re: I believe you got to declare what today is. | |
Re: For unions. Unions cannot have base classes, and unions can not be used as base classes. Did I get it right? | |
Hello everyone. This is my first post here. I am only posting here under the most extreme circumstances because I cannot for the life of me figure out how to make my save function for RPG game to work. So for it will only save in the first room. So … |
The End.