someone give me game codez pls

Pages: 1234
So far, apparently, they know the sacred language of stupid-talk. That's a start... or maybe they're just a pure troll. Whatever, I'm ignoring this topic now..
Last edited on
closed account (j6AqM4Gy)
u gis rnt vry hlpful. i kno "hi wrld" and som basic inpt. i thnk i can mak a gam if u wuld sho me how.
This link has all the information you need to start learning.

http://www.cplusplus.com/forum/articles/43175/
Last edited on
Dacster123 wrote:
@gamecodezs what do you know so far though? have you gone through the c++ tutorials on this site? Do you have any background on a graphics API like OpenGL or Direct X?

Has anyone really been far even as deciced to use even go want to do look more like?
[/offtopic]

Gamecodezs, I hope you realize the following things:
- Creating games is hard.
- You will need more than understanding of input/output.
- There are huge companies of dedicated professionals working on single games and they take several YEARS.

I certainly do not want to discourage you, I just want to show the facts, and the fact is that you aren't really up to it. If you're as good at C++ as you are at English, then I suggest you work on both for the time being.

What you should do to get started to create a game:
Go through the tutorial on this website and learn C++. When you're familiar with the language, I suggest you go look up SFML and OpenGL.
u gis rnt vry hlpful. i kno "hi wrld" and som basic inpt. i thnk i can mak a gam if u wuld sho me how.


Are you trying to piss people off, or is it just an unfortunate side-effect? Stop writing your posts like that.

I was about to comment that games are a conglomerate of applied knowledge, like maths and physics... but then I realized OP probably wants to make a text mode game.

Here you go OP, have fun.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// guess Wally's password game

#include <iostream>
#include <string>
#include <algorithm>
#include <limits>
#include <cstddef>
#include <cstdlib>
#include <ctime>

char random_letter()
{
    const std::string alphanum =
        "abcdefghijklmnopqrstuvwxyz"
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        "0123456789";

    return alphanum[rand() % alphanum.length()];
}

int main()
{
    srand(time(NULL));

    size_t difficulty = 6;
    bool   playing    = true;

    std::cout << "Guess Wally's Password!\n\n";

    while (playing)
    {
        std::cout << "Enter difficulty (input 0 to quit): ";
        std::cout.flush(); // just in case
        std::cin >> difficulty;
        std::cin.ignore();

        if (difficulty == 0)
            break;

        std::string real_password;
        real_password.resize(difficulty);
        std::generate(real_password.begin(), real_password.end(), random_letter);
        std::string fake_password = real_password;
        std::random_shuffle(fake_password.begin(), fake_password.end());

        bool guessed = false;

        while (!guessed)
        {
            std::cout << "\n\nWally's password uses these letters but"
                " in a different order:\n\t" << fake_password;
            std::cout << "\nWhat could it be? (Type !EXIT to quit): " << std::endl;
            std::string user_password;
            getline(std::cin, user_password);

            if (user_password.compare("!EXIT") == 0)
            {
                playing = false;
                break;
            }

            if (user_password.compare(real_password) == 0)
            {
                std::cout << "Correct. Well done Mr. Password Cracker!\n\n" << std::endl;
                guessed = true;
            }
            else
                std::cout << "You suck." << std::endl;
        }
    }

    return EXIT_SUCCESS;
}

Has anyone really been far even as deciced to use even go want to do look more like?
[/offtopic]


huh? sorry I don't quite understand what you're trying to say. =\
Dacster13 wrote:
huh? sorry I don't quite understand what you're trying to say. =\


It's a meme that's not supposed to make sense. I'm pretty sure Kyon used it because of the nature of OP's posts.
Hahaha btw we are amazing at feeding le trollz.
closed account (j6AqM4Gy)
i iz not a trol, i jst wnt som hlp 4 u 2 sho me 2 mak a gam. pls post some codez 4 a ful gam wit gfx pls. i dnt spek enggliss vry well, i from teh U.S.S.R. i wuld lik to lern to mak gams n C==8
The same USSR that dissolved in 1991?

Hahaha btw we are amazing at feeding le trollz.
Last edited on
Implying lolcat == russian failed english.

Hahaha btw we are amazing at feeding le trollz.




Last edited on
closed account (j6AqM4Gy)
No, U.S.S.R. as in:

U - United
S - Stupid
S - Shit
R - Retards
@gamecodezs Obvious troll is obvious.

Hahaha btw we are amazing at feeding le trollz.
I am offended, good sir. That language is unbecoming of a gentleman and a testament to your blatant disregard for public decency.


Also:
Hahaha btw we are amazing at feeding le trollz.
closed account (j6AqM4Gy)
u good sir is a dik. i has much pubic decensee. btw, i has no penis, so im not a gentlmen. u gis need to hop off my d. gbye jerks.
@gamecodezs So thou is a maiden? That is of a higher shame, a maiden is of respect and virtue. I agree with the gentleman before me, why u no show respect?
Last edited on
Turns out this is spoon-licker...
Not like I was surprised. I'm still amazed anyone ever took this guy seriously though.
Pages: 1234