Page 1 of 5 1234 ... LastLast
Results 1 to 10 of 43

Thread: This is my game about raping and killing people

  1. #1
    OlegL's Avatar Poster
    Join Date
    May 2009
    Location
    New York City
    Age
    42
    Posts
    1,832
    #include <iostream>
    using namespace std;

    int main()
    {
    if (1 == 1)
    cout << "I wanna fucking rape you\n";
    if (3 == 3)
    cout << "I wanna fucking kill you\n";
    if (5 == 0)
    cout << "I want to get laid\n";
    }
    I love FST!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

  2. Games   -   #2
    IdolEyes787's Avatar Persona non grata
    Join Date
    Feb 2008
    Location
    State of Grace
    Posts
    31,103
    That's all well and good but I think that you really need to make it so that you can rape people that you've killed.
    Last edited by IdolEyes787; 08-01-2011 at 11:53 PM.
    Respect my lack of authority.

  3. Games   -   #3
    Nice, but player interaction is limited and the plot is a bit trite... I give it 5/10.
    "I just remembered something that happened a long time ago."

  4. Games   -   #4
    IdolEyes787's Avatar Persona non grata
    Join Date
    Feb 2008
    Location
    State of Grace
    Posts
    31,103
    See I told you.
    Respect my lack of authority.

  5. Games   -   #5
    OlegL's Avatar Poster
    Join Date
    May 2009
    Location
    New York City
    Age
    42
    Posts
    1,832
    Quote Originally Posted by IdolEyes787 View Post
    That's all well and good but I think that you really need to make it so that you can rape people that you've killed.
    Okay, I introduced the new function for that: kill_and_rape(). The game looks like this now:

    #include <iostream>
    #include <string>
    using namespace std;

    void kill_and_rape();

    int main()
    {
    cout << "Do you want to kill somebody?\n";
    string answer;
    cin >> answer;
    if (answer == "yes")
    kill_and_rape();
    else if (answer == "no")
    cout << "How come you don't wanna kill anybody?\n";
    else
    cout << "I didn't understand your answer. Game's over\n";
    }

    void kill_and_rape()
    {
    cout << "Do you want to rape the person that you killed?\n";
    string answer;
    cin >> answer;
    if (answer == "yes")
    cout << "Enjoy raping that person!\n";
    else
    cout << "Sorry, I didn't understand your answer. Game's over\n";
    }
    I love FST!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

  6. Games   -   #6
    IdolEyes787's Avatar Persona non grata
    Join Date
    Feb 2008
    Location
    State of Grace
    Posts
    31,103
    Good but could you add kill, let the body decompose and become maggot infested and then rape?
    Respect my lack of authority.

  7. Games   -   #7
    mjmacky's Avatar an alchemist?
    Join Date
    May 2010
    Location
    day book
    Posts
    10,855
    Or that the maggots grow oversized and then rape your mother?
    Everything is brought to you by Fjohürs Lykkewe.

  8. Games   -   #8
    a7x's Avatar ǝɟıl sı ɔısnɯ
    Join Date
    Jul 2011
    Location
    Syntax Error
    Posts
    579
    Thank you better2reign You are Awesome.
    Music is Life ©
    https://www.facebook.com/Adrenaline.Junkie.a7x

  9. Games   -   #9
    OlegL's Avatar Poster
    Join Date
    May 2009
    Location
    New York City
    Age
    42
    Posts
    1,832
    Quote Originally Posted by IdolEyes787 View Post
    Good but could you add kill, let the body decompose and become maggot infested and then rape?
    Okay, I did it.

    #include <iostream>
    #include <string>
    using namespace std;

    void kill_and_rape();
    void decomposed_and_maggot_infested();


    int main()
    {
    cout << "Do you want to kill somebody?\n";
    string answer;
    cin >> answer;
    if (answer == "yes")
    decomposed_and_maggot_infested();
    else if (answer == "no")
    cout << "How come you don't wanna kill anybody?\n";
    else
    cout << "I didn't understand your answer. Game's over\n";
    }

    void kill_and_rape()
    {
    cout << "Do you want to rape the person that you killed and whose body became decomposed and maggot infested?\n";
    string answer;
    cin >> answer;
    if (answer == "yes")
    cout << "Enjoy raping that person!\n";
    else
    cout << "Sorry, I didn't understand your answer. Game's over\n";
    }

    void decomposed_and_maggot_infested()
    {
    cout << "Please wait until the body becomes decomposed and maggot infested\n";
    kill_and_rape();
    }
    I love FST!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

  10. Games   -   #10
    Quote Originally Posted by anon View Post
    Nice, but player interaction is limited and the plot is a bit trite... I give it 5/10.
    Make that 6/10 as of version 1.2, and it's nice to see the coders listen to their users.

    You can use this to check them out, in case anyone cares.
    "I just remembered something that happened a long time ago."

Page 1 of 5 1234 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •