Search:

Type: Posts; User: Dark_Oppressor

Search: Search took 0.00 seconds.

  1. Replies
    11
    Views
    4,369

    That's kind of what I've been thinking, and...

    That's kind of what I've been thinking, and thanks for clarifying that for me Tonto.
  2. Replies
    11
    Views
    4,369

    So I'm thinking perhaps the degree being in the...

    So I'm thinking perhaps the degree being in the college of engineering is good after all? I would think engineering based stuff would have more math.
  3. Replies
    11
    Views
    4,369

    Computer Science Major

    I have been taking gen ed courses at a couple of different colleges the last year and a half, and have finally decided that I definitely want to go into programming, specifically gaming related. I...
  4. Replies
    15
    Views
    3,685

    Thanks everyone. I've got quite a few things...

    Thanks everyone. I've got quite a few things working now, but one thing that is killing me is random dungeon generation. I have been working on it for about 6 hours now, and I can't get the rooms I...
  5. Replies
    15
    Views
    3,685

    Aye, that would be a better order to do it, I'd...

    Aye, that would be a better order to do it, I'd say.
    Ok, current issue:

    I need a way to make a type of structure Dungeonlvl, with a name of 'd' and then a number representing whatever level of...
  6. Replies
    15
    Views
    3,685

    Thanks, that'll do for now, anyway. Here is part...

    Thanks, that'll do for now, anyway. Here is part of the code I'm working on to randomly generate the dungeon:

    void Dungeon_Gen()
    {
    int i;
    int j;
    int k;
    int l;
    int...
  7. Replies
    15
    Views
    3,685

    Ok, now I am using the x and y coordinates of my...

    Ok, now I am using the x and y coordinates of my @ to determine where GotoXY should center, then drawing the @. Here's my current code regarding this:

    void drawscreen()
    {
    clrscr();
    ...
  8. Replies
    15
    Views
    3,685

    What do I need to include to use those functions?...

    What do I need to include to use those functions?

    EDIT: Never mind, needed windows.h. I've got an empty room with a moving @ now! Woo, haha.
  9. Replies
    21
    Views
    2,037

    Yes, I have started a new thread in the games...

    Yes, I have started a new thread in the games section for this, located here: http://cboard.cprogramming.com/showthread.php?p=591430#post591430
  10. Replies
    15
    Views
    3,685

    Trying to start a roguelike

    I am attempting to start making my own roguelike. I'm using c++, and I know the basics, I've got a menu and whatnot working, but I don't know how to get started on making the actual game(ie. I need...
  11. Replies
    21
    Views
    2,037

    Thank you much! That works beautifully! Now,...

    Thank you much! That works beautifully! Now, all I need to learn is how to make a @ dude that can move around, and I'm well on my way :)

    (I've decided to go after my roguelike dream again)
  12. Replies
    21
    Views
    2,037

    Hrm, when trying that, I get this error: 60...

    Hrm, when trying that, I get this error:

    60 E:\Dev-Cpp\My Crap\New Adventure RPG\Adventure RPG.cpp no matching function for call to `std::basic_ofstream<char, std::char_traits<char>...
  13. Replies
    21
    Views
    2,037

    Now I'm trying to write a save file, where part...

    Now I'm trying to write a save file, where part of the filename is a variable that you type in(your character's name), so each character generates its own unique save file. Here's what I have so...
  14. Replies
    21
    Views
    2,037

    Awesome, thanks everyone! I read that page from...

    Awesome, thanks everyone! I read that page from the FAQ, and ended up using this to accomplish my goal:



    #include <conio.h>
    while ((ch = getch())){
    if (ch == 'n')
    goto...
  15. Replies
    21
    Views
    2,037

    Input in C++

    I'm fairly new to c++, but I know a lot of the basics. I have decided to create a console game of some kind. At first, I wanted to create a roguelike, but after weeks of reading source files,...
Results 1 to 15 of 15