someone give me game codez pls

Pages: 1234
Dec 16, 2011 at 6:52am
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 Dec 16, 2011 at 6:53am
Dec 16, 2011 at 2:15pm
Dec 16, 2011 at 2:36pm
Dec 17, 2011 at 7:52am
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.
Dec 17, 2011 at 8:56am
This link has all the information you need to start learning.

http://www.cplusplus.com/forum/articles/43175/
Last edited on Dec 17, 2011 at 8:56am
Dec 17, 2011 at 12:27pm
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.
Dec 17, 2011 at 12:31pm
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;
}

Dec 17, 2011 at 1:00pm
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. =\
Dec 17, 2011 at 10:32pm
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.
Dec 17, 2011 at 11:30pm
Hahaha btw we are amazing at feeding le trollz.
Dec 18, 2011 at 1:51am
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
Dec 18, 2011 at 1:59am
The same USSR that dissolved in 1991?

Hahaha btw we are amazing at feeding le trollz.
Last edited on Dec 18, 2011 at 2:00am
Dec 18, 2011 at 2:00am
Implying lolcat == russian failed english.

Hahaha btw we are amazing at feeding le trollz.




Last edited on Dec 18, 2011 at 2:01am
Dec 18, 2011 at 2:05am
closed account (j6AqM4Gy)
No, U.S.S.R. as in:

U - United
S - Stupid
S - Shit
R - Retards
Dec 18, 2011 at 2:24am
@gamecodezs Obvious troll is obvious.

Hahaha btw we are amazing at feeding le trollz.
Dec 18, 2011 at 3:02am
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.
Dec 18, 2011 at 4:09am
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.
Dec 18, 2011 at 4:19am
@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 Dec 18, 2011 at 7:06am
Dec 18, 2011 at 5:11am
Turns out this is spoon-licker...
Dec 18, 2011 at 12:16pm
Not like I was surprised. I'm still amazed anyone ever took this guy seriously though.
Pages: 1234