Search:

Type: Posts; User: Kuplex

Search: Search took 0.00 seconds.

  1. Thread: Game Text

    by Kuplex
    Replies
    10
    Views
    1,437

    Game Text

    What's a simple way to make text appear like it does in video games? You know, one letter at a time at a variably set speed. I like the way it displays the text. Any pointers cuz I think my mind's...
  2. Replies
    63
    Views
    30,159

    Poll: both classes and self-teaching: I took a class in...

    both classes and self-teaching: I took a class in high school but me and a few friends went far beyond the school's teachings and found ourself out-doing the programming teacher many times. You'd be...
  3. Replies
    26
    Views
    5,043

    Poll: Okay. I get the point

    I know, I know

    no ads=no free site

    but the little pop-up box for yahoo is still annoying
  4. Replies
    26
    Views
    5,043

    Poll: Blocking Advertisements

    I know that this annoys more than just me. My website is hosted by Yahoo! and I was wondering if anybody knew somem coding to put in my HTML file that would prevent those ads from popping up on every...
  5. Replies
    6
    Views
    1,886

    Thanks

    I guess its just one of those things that I must deal with in order to enjoy a free compiler.
  6. Replies
    10
    Views
    1,783

    phubuh, i was being nice--you ass

    .
  7. Thread: How do I start?

    by Kuplex
    Replies
    24
    Views
    2,908

    There are links on some of the previous replies...

    There are links on some of the previous replies that have some pretty interesting stuff, but nothing beats another programmer. Ask Garfield for advice and of course, use this post. But, if you can...
  8. Replies
    5
    Views
    2,136

    Try this for MS VC++

    #include <windows.h>
    #include <conio.h>

    void gotoxy(int x, int y)
    {
    static HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
    COORD coord = {x, y};
    SetConsoleCursorPosition(hConsole,...
  9. Replies
    1
    Views
    3,564

    Maybe this?

    if (A<B+C && B<A+C && C<A+B)

    maybe if you rewrote it as:

    if ((A<(B+C)) && (B<(A+C)) && (C<(A+B)))

    i dont knwo if that will change anything though, unless turbo C++ doesn't recognize an...
  10. Thread: How do I start?

    by Kuplex
    Replies
    24
    Views
    2,908

    Just take it one step at a time

    Don't get too excited about programming a game just yet. Take a deep breath and get ready for work before fun. I'm not trying to discourage you or anything, but you're going to have to work at a...
  11. Replies
    7
    Views
    5,635

    C++.....is ..boring?...

    Well, at first is may be boring, depending on what level you're moving at. I mean, everyone has to start somewhere. :p

    I hope you're just bored and not discouraged though. After all, even though...
  12. Replies
    12
    Views
    3,332

    Okay, a little over the top

    I know, I know,I just hate Bill na dmost of MS's stuff. I had written this after reading about all the crap that XP makes you do in order to use it. (Which is why I stopped upgrading with Windows...
  13. Replies
    12
    Views
    3,332

    C#:Java::Bill:Everything w/ PCs

    Is it just me, or does this "new" language look like a wierd version of Java and nothing more? Where's the C/C++? It just looks like Java and JavaScript to me? Anyone else agree?

    What do you...
  14. Replies
    6
    Views
    1,886

    Dev-Bloodshed. Please help!

    I'm using the Dev-Bloodshed compiler and I have a few questions:

    1) Why won't the dos window stay open unless I put in a
    system("PAUSE"); before return 0;? Is there a way to prevent
    it...
  15. Replies
    14
    Views
    15,713

    Don't worry too much about it. Unless you really...

    Don't worry too much about it. Unless you really need to modify it that way--but then, use something that will open up the binary version or hex version of it, then editing through the code is...
  16. Replies
    10
    Views
    1,783

    nice program

    Nice game. I see that yo uchanged a few things from the first one. When you get better or just feel like it, try using ASCII characters to create a more authentic board, then as your skills develop...
  17. thankx

    the tips that you gave me worked really well. but the flush i was referring to is in C++ it would be somnething like:

    //move to a section on the screen using x,y
    //set bg to a color
    cout << " ...
  18. How do I use graphics libaries in Linux C/C++?

    I'm currently learning C in a Linux OS but I've already learned a lot of C++ in MSV 6.0. The question is though, how do I use graphics and their libraries in Linux C and MSV C++ and how do I...
Results 1 to 18 of 20