mercredi 19 février 2014

[Release] Not Much but I'm Proud topic




So I have been learning C++ for awhile now and I have just created an exe file. It is my first one and I'm very proud. Although it's not that much I'm just excited to post it. (Its not a hack at all of any kind so I hope I'm allowed to do this) and although no one may want to download this anyway, I just thought I'd show it :yup:

__________________________________________________________________________________________________________________________________________________________________________________________

here is the coding as well:


#include "stdafx.h"
#include <iostream>

using namespace std;
int healthAmount = 100;
int health = 4;
int strength = 50;



class Ogre//*************DECLARATION OF CLASS "OGRE"*********************************************************************************
{
public:

Ogre(int x, int y);//startHealth and startStrength

void attack();
void beattacked(int health);
void heal(int healthAmount);

public:

int health;
int strength;
int healthAmount;

};

int main()//****************MAIN FUNCTION********************************************************************************************
{
Ogre abe(100, 50);
abe.attack();
abe.beattacked(health);
abe.heal(4);




char f;
cin >> f;
return 0;
}

Ogre::Ogre(int startHealth, int startStrength)://**********USE OF FUNCTIONS**********************************************************
strength(startStrength), healthAmount(startHealth)
{
}


void Ogre::attack()
{
cout << "Get ready to eat my gosh damn dust!" << "::Stength = ::" << strength << endl;
}

void Ogre::beattacked(int health)
{
cout << "Ogre has been attacked!" << "::Life left = ::" << healthAmount - health << endl;
}

void Ogre::heal(int health)
{
cout << "Ogre has healed himself!" << "::Current health = ::" << healthAmount << endl;
}

//*****************************************************************************************************************END**************

//************************************MADE ENTIRELEY FROM MEMORY OF SOUPER HAXXOR :)***************************************************

__________________________________________________________________________________________________________________________________________________________________________________________

Any feedback would be appreciated!

DOWNLOAD LINK: http://www.unknowncheats.me/forum/do...=file&id=11079





Aucun commentaire:

Enregistrer un commentaire