Search:

Type: Posts; User: MMD_Lynx

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    16
    Views
    4,492

    Sorry, I haven't been able to look at this for...

    Sorry, I haven't been able to look at this for more than 12 hours. random(int n) is a function for my compiler. I know it's not standard.

    Thanks to everyone. You set me straight in some of my...
  2. Replies
    16
    Views
    4,492

    Name Generator

    I'm making a name generator (for no reason except practice) except I'm having problems with the string array to store the "syllables"
    Here's my code.


    #include <stdio.h>
    #include <stdlib.h>
    ...
  3. Replies
    2
    Views
    1,361

    thnx so you're saying that i need to include the...

    thnx
    so you're saying that i need to include the "item.h"/"player.h" inside the #ifndef? And I need to put class Player/Item inside too?
    thnx, again
  4. Replies
    48
    Views
    5,980

    My mouth is agape from the coolio pictures... If...

    My mouth is agape from the coolio pictures...
    If only I had the much skill...
    GAH!
  5. Replies
    2
    Views
    1,361

    Headers and Classes

    Okay, I'm making an RPG (I know, who isn't?)
    However, I hadn't run into any problems I couldn't fix until now.
    Here is the code that most likely has the bug in it.




    //item.h"

    #include...
  6. Thread: Random Note

    by MMD_Lynx
    Replies
    28
    Views
    4,973

    also, today he asked if i was a computer nerd. i...

    also, today he asked if i was a computer nerd. i said "yes." He asked me if i used Linux. I said I wanted to but no. he said i wasn't a computer nerd. well, that's a load of crap. if i had more...
  7. Replies
    5
    Views
    2,575

    can u say, "infinite loop?"

    can u say, "infinite loop?"
  8. Replies
    33
    Views
    3,346

    do we have *two* discussions/arguments about...

    do we have *two* discussions/arguments about pointers and references? check the other one...and u'll see that people think it's funny that we have two posts on pointers going on....
  9. Replies
    53
    Views
    5,364

    man...i wanted this post to help eliminate...

    man...i wanted this post to help eliminate those...why don't these people do at least SOME research before posting...*crowds stares at Lynx with a look that says, "hypocrite..."* uh...
  10. Thread: Random Note

    by MMD_Lynx
    Replies
    28
    Views
    4,973

    Random Note

    Just felt like posting this. True Story.
    I heard this kid talking in school about him making this internet program thing...how it takes like files off the internet the filters them and such. Well, I...
  11. Replies
    3
    Views
    1,151

    wow! thanx...i was thinking of doing allegro...

    wow! thanx...i was thinking of doing allegro (since the graphics are for a game/game engine)
    i was really expecting to be yelled at...but i wasn't trying to be...nvm
  12. Replies
    3
    Views
    1,151

    graphics...ugh!

    I would like to learn some sort of graphics library. however, I'm using windows and already hate windows programming. I didn't understand OpenGL hardly at all. Does anyone have any suggestions what...
  13. Thread: homework

    by MMD_Lynx
    Replies
    18
    Views
    3,001

    cash?! :p *sits down and ponders for a good 13...

    cash?! :p
    *sits down and ponders for a good 13 hours, 38 minutes, and 7 seconds* wait!!!
    ...
    ...
    how much cash we talkin' about?
    lol jk
  14. Replies
    10
    Views
    1,709

    you can definately make games with c++ as for...

    you can definately make games with c++
    as for graphics, u need another library (like OpenGL or Allegro)
    i think u should start with maybe a card game (or even tic tac toe)
    then once ur skill is...
  15. Thread: Tutorials

    by MMD_Lynx
    Replies
    6
    Views
    1,304

    when in doubt, google it. a-duh!

    when in doubt, google it. a-duh!
  16. Replies
    2
    Views
    944

    yes that should probably help a lil bool...

    yes that should probably help a lil


    bool init_rand = false;

    Asteroid::Asteroid
    {
    if(init_rand == false)
    {
    init_rand = true;
  17. Thread: Struct Help

    by MMD_Lynx
    Replies
    6
    Views
    1,039

    in two posts made by prelude i noticed...

    in two posts made by prelude i noticed initializing an int by the means of of ( )

    is that kinda like a constructor? does it set the value of it without using =?
    :confused: sorry if its a newbish...
  18. Replies
    9
    Views
    1,074

    heh...i never use std namespace or std:: and I...

    heh...i never use std namespace or std:: and I have no trouble. in fact, when i do using namespace std;, i get an error. im using Borland 5.02
  19. Replies
    65
    Views
    14,715

    thx to all u guyz here. u evened out my...

    thx to all u guyz here. u evened out my reputation.
    i wuv u...er...jk. im not that type a guy. but thx :D
  20. Replies
    14
    Views
    1,346

    recursion is simple. it's just when a program...

    recursion is simple. it's just when a program calls itself. or you could do something weird like:


    int recur(int i)
    {
    cout<<i<<endl;
    return recur(i/2);
    }
  21. Replies
    15
    Views
    3,506

    pinout isn't a global variable because it is in...

    pinout isn't a global variable because it is in the main() function. put it outside, then that might solve your problem.



    pinout = PortD;

    main()
    {
    initl();
    while(1)
  22. Replies
    15
    Views
    3,506

    No, I don't think that will work. Because he...

    No, I don't think that will work. Because he needs to update pinout. otherwise the while loop will continue forever. of course, I only no what not to do, not what to do. just like in everything i do.
  23. Replies
    65
    Views
    14,715

    Most of my reputation points have to do with my...

    Most of my reputation points have to do with my spanish signature. then one guy set me down to -10 cuz i was "whining." It may have sounded like that, but i wasn't really trying to. I said it smells...
  24. Replies
    4
    Views
    3,198

    Toco violoncello (I play cello) Cellos are the...

    Toco violoncello (I play cello)
    Cellos are the best. Deep tones :)
  25. Thread: Newbie Help

    by MMD_Lynx
    Replies
    19
    Views
    2,041

    it might be a typo. int Main() should be int...

    it might be a typo. int Main() should be int main()
Results 1 to 25 of 65
Page 1 of 3 1 2 3