Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[C++] Release of Little Projects with source codes.

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming -> Binaries
View previous topic :: View next topic  
Author Message
Travis13
Expert Cheater
Reputation: 0

Joined: 17 Feb 2007
Posts: 199

PostPosted: Thu Oct 02, 2008 11:49 pm    Post subject: [C++] Release of Little Projects with source codes. Reply with quote

Hey guys, I'm starting to make just random fun things in c++ just to practice up on it all. Also, I know for a fact (cuz im still a noob) that the best way to learn is to look at source codes from other people. But wait, u expect some noob to understand some old maplestory bot and learn from that when they still dont know wat a function is!?!??!

As a noob in c++ myself i know for a fact that u need source codes just a BIT over your level to learn from...not some crazy hard code where all u understand of it is #include <iostream> and the cout's. U CAN ALL AGREE ON THAT WITH ME SmileRazz

So to get to the point, this thread is gonna kind of be like a progress page of all my projects from beginning (not complete beginning of starting coding but w/e) to whenever i make something new. I WILL be including source codes in all my projects all writen in c++ and compiled by dev-c++.

(I will probably rarely get a hold of something private)

(If u think im giving u a virus or w/e just either don't download it or don't be scared...they will be in .rar files so u will know its a virus or not when u open the .rar file before even extracting [i think lol] )

C++ Projects. Sources Included

_________________
Learning C++, trying, failing, never gonna give up tho Razz
Back to top
View user's profile Send private message MSN Messenger
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Fri Oct 03, 2008 12:06 am    Post subject: Reply with quote

Moving to binaries.

What compiler are you using? Your exe's are enormous.
Back to top
View user's profile Send private message
Travis13
Expert Cheater
Reputation: 0

Joined: 17 Feb 2007
Posts: 199

PostPosted: Fri Oct 03, 2008 2:55 pm    Post subject: Reply with quote

slovach wrote:
Moving to binaries.

What compiler are you using? Your exe's are enormous.


wow i got scared that my post got deleted or something lol...couldn't find it but thanks for moving it

and for the size of it.....im just using dev-c++ as i said in the post Razz my computer can't install any higher .net framework and shit and its all messed up but long story short i cant install msvc++ yet until i get a new computer

_________________
Learning C++, trying, failing, never gonna give up tho Razz
Back to top
View user's profile Send private message MSN Messenger
nwongfeiying
Grandmaster Cheater
Reputation: 2

Joined: 25 Jun 2007
Posts: 695

PostPosted: Fri Oct 03, 2008 6:56 pm    Post subject: Reply with quote

lol...a modulus calculator. It's that quite pointless?
Back to top
View user's profile Send private message
krazedkat
I post too much
Reputation: 0

Joined: 29 Aug 2007
Posts: 2255
Location: Hell, Norway

PostPosted: Fri Oct 03, 2008 8:25 pm    Post subject: Reply with quote

nwongfeiying wrote:
lol...a modulus calculator. It's that quite pointless?

and so is that post spammer.
Great. BTW.. There are uses for modulus calculators.
Back to top
View user's profile Send private message
samuri25404
Grandmaster Cheater
Reputation: 7

Joined: 04 May 2007
Posts: 955
Location: Why do you care?

PostPosted: Sat Oct 04, 2008 10:33 am    Post subject: Reply with quote

krazedkat wrote:
nwongfeiying wrote:
lol...a modulus calculator. It's that quite pointless?

and so is that post spammer.
Great. BTW.. There are uses for modulus calculators.


And I'm sure it was hell to write, as well.

Code:

#include <iostream>
using namespace std;

int main( int argc, char *argv[] ) {
    int num, mod;
    cout << "Enter number.";
    cin >> num;
    cout << "Enter what to mod by";
    cin >> mod;
    cout << "The result is " << num % mod << endl;
    cin.get();
}


Damn, I'm sweating.

_________________
Wiccaan wrote:

Oh jeez, watchout I'm a bias person! Locked.


Auto Assembly Tuts:
In Depth Tutorial on AA
Extended
Back to top
View user's profile Send private message
Travis13
Expert Cheater
Reputation: 0

Joined: 17 Feb 2007
Posts: 199

PostPosted: Mon Oct 06, 2008 9:43 pm    Post subject: Reply with quote

hey samuri25404, thanks for your sarcasm in my post im sure all the new learning people will aprreciate your sarcasm as much as i do Smile. like seriously...there was no point of that i'm trying to help ppl here and all ur doing is flaming (indirectly) please, if your gonna comment, make it useful.
_________________
Learning C++, trying, failing, never gonna give up tho Razz
Back to top
View user's profile Send private message MSN Messenger
nwongfeiying
Grandmaster Cheater
Reputation: 2

Joined: 25 Jun 2007
Posts: 695

PostPosted: Tue Oct 07, 2008 6:19 pm    Post subject: Reply with quote

You really must not know who he is then. samuri25404 helps a lot and he didn't flame you. He just simply stated (which is pretty much what I said) that it's a simple program that it wouldn't be worth the size of that program.

Understand?

And as for krazedkat, I don't even know why he's talking...

Edit: Also, you claim that this post will help noobs learn C++ or at least somehow benefit from it. I think you would need to seriously clean up the spelling and grammar before posting. It hurts my eyes just to look at it.
Back to top
View user's profile Send private message
torpin005
Master Cheater
Reputation: 0

Joined: 19 Nov 2007
Posts: 255

PostPosted: Tue Oct 07, 2008 9:38 pm    Post subject: Reply with quote

samuri25404 wrote:
krazedkat wrote:
nwongfeiying wrote:
lol...a modulus calculator. It's that quite pointless?

and so is that post spammer.
Great. BTW.. There are uses for modulus calculators.


And I'm sure it was hell to write, as well.

Code:

#include <iostream>
using namespace std;

int main( int argc, char *argv[] ) {
    int num, mod;
    cout << "Enter number.";
    cin >> num;
    cout << "Enter what to mod by";
    cin >> mod;
    cout << "The result is " << num % mod << endl;
    cin.get();
}


Damn, I'm sweating.


Lol that made me laugh Smile

And good job i like the Modulur Calc
Back to top
View user's profile Send private message AIM Address
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming -> Binaries All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites