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 


so this is my 1st program
Goto page 1, 2, 3, 4  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam
View previous topic :: View next topic  
Author Message
paupav
Master Cheater
Reputation: 13

Joined: 15 Apr 2011
Posts: 314
Location: P. Sherman 42, Wallaby Way, Sydney

PostPosted: Thu Aug 09, 2012 10:55 am    Post subject: so this is my 1st program Reply with quote

that i have made by myself Very Happy

i protected it with copyright so dont try anything

this is not virus -.-

here is code
Code:

//v1.0
#include "stdafx.h"
#include <iostream>
#include <string>
#include <sstream>
using namespace std;


int main ()
{
   system("color 40");
int godinaRodjenja, mjesecRodjenja, danRodjenja;
int danasnjiDan, danasnjiMjesec, danasnjaGodina;
int razlikaDana, razlikaMjeseci, razlikaGodina;
string myString;
string drzava;
string danasnjiDatum;
cout << "Are you from west or from east? \n(answer with east or west or write help for help) ";
getline(cin, drzava);

if(drzava == "help")
{
   cout << "\nIf you write west date will be formatted YYYY/MM/DD\nand if you write east date will be formatted DD/MM/YYYY";
   cout << "\n\nAre you from west or from east? (answer only with west or east) ";
getline(cin, drzava);
}
else if(drzava == "east")
   {
//danasnji dan
cout << "Enter witch day is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >>danasnjiDan;
//danasnji mjesec
cout << "Enter witch month is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiMjesec;
//danasnja godina
cout << "Enter witch year is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjaGodina;

//danasnji datum
cout << "So today is: " << danasnjiDan <<"." << danasnjiMjesec << "." << danasnjaGodina;

cout << "\nEnter day of birth! (only number) ";
getline(cin, myString);
stringstream(myString) >> danRodjenja;
cout << "\nEnter month of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> mjesecRodjenja;
cout << "\nEnter year of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> godinaRodjenja;
//cout << "\nYou have been born " << dan;  //provjera
   }

else if(drzava == "west")
          {
//danasnja godina
cout << "Enter witch year is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjaGodina;

//danasnji mjesec
cout << "Enter witch month is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiMjesec;

//danasnji dan
cout << "Enter witch day is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiDan;

//danasnji datum
cout << "So today is: " << danasnjiMjesec <<"." << danasnjiDan << "." << danasnjaGodina;

//unesti godinu rodjenja
cout << "\nEnter year of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> godinaRodjenja;
//unesti mjesec rodjenja
cout << "\nEnter month of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> mjesecRodjenja;
//unesti dan rodjenja
cout << "Enter day of birth! (only number) ";
getline(cin, myString);
stringstream(myString) >> danRodjenja;

            }
else
{
   cout << "\nWront input!\nPlease restart application!";
}
//cout << "\nYou have been born " << danRodjenja <<"." << mjesecRodjenja << "." <<godinaRodjenja;  //verification if everything is fine

// ------------------------ checked




razlikaDana=danasnjiDan-danRodjenja;
razlikaMjeseci=danasnjiMjesec-mjesecRodjenja;
razlikaGodina=danasnjaGodina-godinaRodjenja;

//cout << "\nrazlikaDana " << razlikaDana << ", razlika mjeseci " << razlikaMjeseci << ", razlikaGodina "<< razlikaGodina;

if(razlikaDana << 0)
{
   razlikaDana++;
   razlikaDana++;
    razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;

   razlikaMjeseci-1;

}

if(razlikaMjeseci << 0)
{
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;
   razlikaMjeseci++;

   razlikaGodina--;
}

//cout << "\nRazlikagodina " << razlikaGodina;

if(0 >> razlikaGodina)
{
cout << "\nWrong input!\nPlease enter real year of birth!";
}
else if(0 <= razlikaGodina)
cout <<"\nYou live: " << razlikaDana <<" days, " << razlikaMjeseci <<" months, " << razlikaGodina << " years.";




cout << "\n";
system("pause");
return 0;
}

Code:

//v 1.1
#include "stdafx.h"
#include <iostream>
#include <string>
#include <sstream>
using namespace std;


int main ()
{
   system("color 40");
int godinaRodjenja, mjesecRodjenja, danRodjenja;
int danasnjiDan, danasnjiMjesec, danasnjaGodina;
int razlikaDana, razlikaMjeseci, razlikaGodina;
string myString;
string drzava;
string danasnjiDatum;
cout << "Are you from west or from east? \n(answer with east or west or write help for help) ";
getline(cin, drzava);

if(drzava == "help")
{
   cout << "\nIf you write west date will be formatted YYYY/MM/DD\nand if you write east date will be formatted DD/MM/YYYY";
   cout << "\n\nAre you from west or from east? (answer only with west or east) ";
getline(cin, drzava);
}
else if(drzava == "east")
   {
//danasnji dan
cout << "Enter witch day is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >>danasnjiDan;

//danasnji mjesec
cout << "Enter witch month is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiMjesec;

//danasnja godina
cout << "Enter witch year is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjaGodina;

//danasnji datum
cout << "So today is: " << danasnjiDan <<"." << danasnjiMjesec << "." << danasnjaGodina;

cout << "\nEnter day of birth! (only number) ";
getline(cin, myString);
stringstream(myString) >> danRodjenja;

cout << "Enter month of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> mjesecRodjenja;

cout << "Enter year of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> godinaRodjenja;
//cout << "\nYou have been born " << dan;  //provjera
   }

else if(drzava == "west")
          {
//danasnja godina
cout << "Enter witch year is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjaGodina;

//danasnji mjesec
cout << "Enter witch month is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiMjesec;


//danasnji dan
cout << "Enter witch day is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiDan;


//danasnji datum
cout << "So today is: " << danasnjaGodina <<"." << danasnjiMjesec << "." << danasnjiDan;

//unesti godinu rodjenja
cout << "\nEnter year of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> godinaRodjenja;
//unesti mjesec rodjenja
cout << "Enter month of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> mjesecRodjenja;

//unesti dan rodjenja
cout << "Enter day of birth! (only number) ";
getline(cin, myString);
stringstream(myString) >> danRodjenja;


            }
else
{
   cout << "\nWront input!\nPlease restart application!";
break;
}

//cout << "\nYou have been born " << danRodjenja <<"." << mjesecRodjenja << "." <<godinaRodjenja;  //verification if everything is fine

// ------------------------ checked


if(danasnjiDan <= 31 && danRodjenja <= 31 && mjesecRodjenja <= 12 && danasnjiMjesec <= 12)

{

razlikaDana=danasnjiDan-danRodjenja;
razlikaMjeseci=danasnjiMjesec-mjesecRodjenja;
razlikaGodina=danasnjaGodina-godinaRodjenja;

//cout << "\nrazlikaDana " << razlikaDana << ", razlika mjeseci " << razlikaMjeseci << ", razlikaGodina "<< razlikaGodina;

if(razlikaDana << 0)
{
   razlikaDana+=30;

   razlikaMjeseci--;

}

if(razlikaMjeseci << 0)
{
   razlikaMjeseci+=12;
   razlikaGodina--;
}

//cout << "\nRazlikagodina " << razlikaGodina;

if(razlikaDana >> 30)
{
   razlikaMjeseci++;
   razlikaDana-=30;

}

if(razlikaMjeseci >> 12)
{
razlikaGodina++;
   razlikaMjeseci-=12;
}



if(drzava == "east")
{

     if(0 >> razlikaGodina)
     cout << "\nWrong input!\nPlease enter real year of birth!";
     else if(0 <= razlikaGodina)
     cout <<"\nYou live: " << razlikaDana <<" days, " << razlikaMjeseci <<" months, " << razlikaGodina << " years.";
}
else if(drzava == "west")
{
   
 if(0 >> razlikaGodina)
 {
 cout << "\nWrong input!\nPlease enter real year of birth!";
 }
 else if(0 <= razlikaGodina)
 {
 cout <<"\nYou live: " << razlikaGodina << " years, " << razlikaMjeseci <<" months, " << razlikaDana <<" days.";
 }
}

}
else
   cout << "\nWrong input!\nNote -month can max have 31 day\n     -year can max have 12 months";


cout << "\n";
system("pause");
return 0;
}


Code:

//v 1.2
#include "stdafx.h"
#include <iostream>
#include <string>
#include <sstream>
using namespace std;


int main ()
{
   int * p;
   p= new (nothrow) int;
   int * m;
   m= new (nothrow) int;
   int * y;
   y= new (nothrow) int;
system("color 40");
int godinaRodjenja, mjesecRodjenja, danRodjenja;
int danasnjiDan, danasnjiMjesec, danasnjaGodina;
int razlikaDana, razlikaMjeseci, razlikaGodina;
string myString;
string drzava;
string danasnjiDatum;
p=&razlikaDana;
m=&razlikaMjeseci;
y=&razlikaGodina;
void printdate_east (int *y, int *m, int *p);
void printdate_west (int *y, int *m, int *p);


cout << "Are you from west or from east? \n(answer with east or west or write help for help) ";
getline(cin, drzava);

if(drzava == "help")
{
   cout << "\nIf you write west date will be formatted YYYY/MM/DD\nand if you write east date will be formatted DD/MM/YYYY";
   cout << "\n\nAre you from west or from east? (answer only with west or east) ";
getline(cin, drzava);
}
else if(drzava == "east")
   {
//danasnji dan
cout << "Enter witch day is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >>danasnjiDan;

//danasnji mjesec
cout << "Enter witch month is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiMjesec;

//danasnja godina
cout << "Enter witch year is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjaGodina;

//danasnji datum
cout << "So today is: " << danasnjiDan <<"." << danasnjiMjesec << "." << danasnjaGodina;

cout << "\nEnter day of birth! (only number) ";
getline(cin, myString);
stringstream(myString) >> danRodjenja;

cout << "Enter month of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> mjesecRodjenja;

cout << "Enter year of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> godinaRodjenja;
//cout << "\nYou have been born " << dan;  //provjera
   }

else if(drzava == "west")
          {
//danasnja godina
cout << "Enter witch year is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjaGodina;

//danasnji mjesec
cout << "Enter witch month is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiMjesec;


//danasnji dan
cout << "Enter witch day is today! " ;
getline(cin, danasnjiDatum);
stringstream(danasnjiDatum) >> danasnjiDan;


//danasnji datum
cout << "So today is: " << danasnjaGodina <<"." << danasnjiMjesec << "." << danasnjiDan;

//unesti godinu rodjenja
cout << "\nEnter year of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> godinaRodjenja;
//unesti mjesec rodjenja
cout << "Enter month of birth! (only number)";
getline(cin, myString);
stringstream(myString) >> mjesecRodjenja;

//unesti dan rodjenja
cout << "Enter day of birth! (only number) ";
getline(cin, myString);
stringstream(myString) >> danRodjenja;


            }
else
{
   cout << "\nWront input!\nPlease restart application!";

}

//cout << "\nYou have been born " << danRodjenja <<"." << mjesecRodjenja << "." <<godinaRodjenja;  //verification if everything is fine

//----- checked


if(danasnjiDan >> 31 )
{
int j;
int l;

j=danasnjiDan/32;

   for(  ; j>0 ; j--)
   {
   danasnjiMjesec++;
   l=danasnjiDan%32;
   danasnjiDan+=l;
   }
}

if(danRodjenja >> 31)
{
int k;
int m;
k=danRodjenja/32;

   for(  ; k>0 ;k--)
   {

   mjesecRodjenja++;
   m=danRodjenja%32;
   danRodjenja+=m;

   }
}

if(danasnjiMjesec >> 12 )

{
int yay;
int bay;

yay=danasnjiMjesec/13;

   for(  ; yay>0 ; yay--)
   {
   danasnjaGodina++;
   bay=danasnjiMjesec%13;
   danasnjiMjesec+=bay;
   }
}

if(mjesecRodjenja >> 12 )
{
int hai;
int hui;

hai=mjesecRodjenja/13;

   for(  ; hai>0 ; hai--)
   {
   godinaRodjenja++;
   hui=mjesecRodjenja%13;
   mjesecRodjenja+=hui;
   }
}

razlikaDana=danasnjiDan-danRodjenja;
razlikaMjeseci=danasnjiMjesec-mjesecRodjenja;
razlikaGodina=danasnjaGodina-godinaRodjenja;

//cout << "\nrazlikaDana " << razlikaDana << ", razlika mjeseci " << razlikaMjeseci << ", razlikaGodina "<< razlikaGodina;

if(*p << 0)
{
   razlikaDana+=30;

   razlikaMjeseci--;

}

if(*m << 0)
{
   razlikaMjeseci+=12;
   razlikaGodina--;
}

//cout << "\nRazlikagodina " << razlikaGodina;




if(*p >> 31)
{
   razlikaMjeseci++;
   razlikaDana-=30;

}

if(*m >> 12)
{
razlikaGodina++;
razlikaMjeseci-=12;
}


if(p==0 || m==0 || y==0)
{
   cout << "\nCritical failure! \nMemory couldnt be set";
}




if(drzava == "east")
{

     if(0 >> *y)
     cout << "\nWrong input!\nPlease enter real year of birth!";
     else if(0 <= *y)
     printdate_east (&razlikaDana,&razlikaMjeseci,&razlikaGodina);
   
}
else if(drzava == "west")
{
   
 if(0 >> *y)
 {
 cout << "\nWrong input!\nPlease enter real year of birth!";
 }
 else if(0 <= *y)
 {
 printdate_west (&razlikaGodina , &razlikaMjeseci, &razlikaDana);
 }

}

if(*p==0 && *m== 0)
    cout << "\nHappy Birthday!!";

cout << "\n";
system("pause");
return 0;
}

void printdate_east (int  *bnb, int *nbn, int *nnb)
{
   cout << "You live: " << *bnb << " days, " << *nbn << " months, "<< *nnb << " years.";
}

void printdate_west (int *bnb, int *nbn, int *nnb)
{
   cout << "You live: " << *bnb << " years, " << *nbn << " months, "<< *nnb << " days.";
}


Code:
//paupav's livinng calculator II 1.0 Open Beta
#include <iostream>
#include <string>
using namespace std;

struct numbers
{
short int day;
short int month;
short int year;
} today, birth, difference;



void lifetimepassed (int, int, int);
int tutToday ();
int tutBirth ();
int error ();
int calculation ();


int main()

{
//######################################
tutToday();
cout << "\nSo it is: " << today.day << "." << today.month << "." << today.year << " -formatted in DD.MM.YYYY";
tutBirth();
cout << "\nSo you were born: " << birth.day << "." << birth.month << "." << birth.year << " -formatted in DD.MM.YYYY";

error ();


calculation ();

lifetimepassed (difference.day, difference.month, difference.year);


//##################################
}

int tutToday()

{
cout << "Enter today's day: ";
cin >> today.day;

cout << "Enter today's month: ";
cin >> today.month;

cout << "Enter today's year: ";
cin >> today.year;

return 0;

}

int tutBirth ()
{
cout << "\nEnter your birth day: ";
cin >> birth.day;

cout << "Enter your birth month: ";
cin >> birth.month;

cout << "Enter your birth month year: ";
cin >> birth.year;

return 0;

}

int error()
{
while (today.day > 31 || today.month > 12 )
{
cout << "\nThere is some problem with today's date, please re-enter it" << endl;
tutToday();
}
while (birth.day > 31 || birth.month > 12 )
{
cout << "\nThere is some problem with your birth date, please re-enter it" << endl;
tutBirth ();
}
return 0;

}

int calculation ()
{


difference.year = today.year - birth.year ;

//Month conversion

if (today.month < birth.month)
{
difference.year--;
today.month += 12;
}


difference.month = today.month - birth.month ;


if (today.day < birth.day)
{
difference.month--;
today.day += 30;
}

difference.day = today.day - birth.day ;

return 0;

}

void conversionD (int a, int b, int c)
{
if (a > b)
{
c--;
b +=30;
}
}


void lifetimepassed (int a, int b, int c)
{
cout << "\nYou have lived: \n" << difference.day << " days\n" << difference.month << " months\n" << difference.year << "years";

}


Code:

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

struct numbers
{
short int day;
short int month;
short int year;
} today, birth, difference;



void lifetimepassed (int, int, int);
int tutToday ();
int tutBirth ();
int error ();
int calculation ();
int clockclock ();
int correcting();


int main()

{
//######################################

clockclock();

cout << "\nSo it is: " << today.day << "." << today.month << "." << today.year << " -formatted in DD.MM.YYYY";
cout << "\nIs that date correct? Wtite 'no' to enter date manually. ";

string correct;
correct = "Yes";
getline (cin,correct);



if (correct == "no")
{
cout << "\nPlease re-enter it ";
tutToday();
}
else
{
cout << "\nSystem date active. ";
}


tutBirth();
cout << "\nSo you were born: " << birth.day << "." << birth.month << "." << birth.year << " -formatted in DD.MM.YYYY";

error ();


calculation ();

lifetimepassed (difference.day, difference.month, difference.year);


//##################################
}

int tutToday()

{
cout << "\nEnter today's day: ";
cin >> today.day;

cout << "Enter today's month: ";
cin >> today.month;

cout << "Enter today's year: ";
cin >> today.year;

return 0;

}

int tutBirth ()
{
cout << "\nEnter your birth day (just number): ";
cin >> birth.day;

cout << "Enter your birth month (just number): ";
cin >> birth.month;

cout << "Enter your birth year (just number): ";

cin >> birth.year;

return 0;

}

int error()
{
while (today.day > 31 || today.month > 12 )
{
cout << "\nThere is some problem with today's date, please re-enter it" << endl;
tutToday();
}
while (birth.day > 31 || birth.month > 12 )
{
cout << "\nThere is some problem with your birth date, please re-enter it" << endl;
tutBirth ();
}
return 0;

}

int calculation ()
{


difference.year = today.year - birth.year ;

//Month conversion

if (today.month < birth.month)
{
difference.year--;
today.month += 12;
}


difference.month = today.month - birth.month ;


if (today.day < birth.day)
{
difference.month--;
today.day += 30;
}

difference.day = today.day - birth.day ;

return 0;

}

int clockclock()
{
time_t t = time(NULL);
tm* timePtr = localtime(&t);
today.day = timePtr->tm_mday;
today.month = timePtr->tm_mon += 1;
today.year = timePtr->tm_year +=1900;

return 0;
}


void lifetimepassed (int a, int b, int c)
{
cout << "\nYou have lived: \n" << difference.day << " days\n" << difference.month << " months\n" << difference.year << "years\n\n";

}



DOWNLOAD:
v 1.0
http://www.mediafire.com/?ntci4ry47ewndfr

v1.1
http://www.mediafire.com/?3lerppy5w49mzqt

#what is new
-error message when enter impossible date ; e.g 32.13
-bugs, crashes, glitches patched (joke)


v1.2
http://www.mediafire.com/?ickiyg5ebu5apbo
#what is new
-says happy birthday if its your birthday
-if you entered day is more than 31 it converts to months[/code]



II v1.0
download link
#whats new
-improved memory usage

II v1.1
- Windows


- Linux
[url=http://www.mediafire.com/download/qg33f550eikb8h7/paupav_calculatorII.out]download link


#what's new
-auto detect system date


paupavII_calculator_linux.png
 Description:
 Filesize:  616.76 KB
 Viewed:  8581 Time(s)

paupavII_calculator_linux.png



paupav calculator II.png
 Description:
 Filesize:  6.14 KB
 Viewed:  8613 Time(s)

paupav calculator II.png




Last edited by paupav on Mon Jul 15, 2013 7:40 am; edited 12 times in total
Back to top
View user's profile Send private message
br0l0ck
Cheater
Reputation: 63

Joined: 15 Aug 2007
Posts: 36

PostPosted: Thu Aug 09, 2012 10:55 am    Post subject: Reply with quote

virus, reported
Back to top
View user's profile Send private message
Maes
Advanced Cheater
Reputation: 10

Joined: 09 Apr 2009
Posts: 50

PostPosted: Thu Aug 09, 2012 10:55 am    Post subject: Reply with quote

Brolock wrote:
virus, reported
Back to top
View user's profile Send private message
paupav
Master Cheater
Reputation: 13

Joined: 15 Apr 2011
Posts: 314
Location: P. Sherman 42, Wallaby Way, Sydney

PostPosted: Thu Aug 09, 2012 10:56 am    Post subject: Reply with quote

lololol no
Back to top
View user's profile Send private message
potaters
Grandmaster Cheater
Reputation: 72

Joined: 13 Apr 2009
Posts: 969

PostPosted: Thu Aug 09, 2012 10:57 am    Post subject: Reply with quote

Might be a problem with your program dude, just opens a command prompt window and now my pc is running slower, and theres a new process called server.exe?
Back to top
View user's profile Send private message
Fafaffy
Cheater
Reputation: 65

Joined: 12 Dec 2007
Posts: 28

PostPosted: Thu Aug 09, 2012 10:58 am    Post subject: Reply with quote

HEY IMA RElEAZ A PROGRUM ON CEF WITHOUT TILLING DEM WUT IT IS!

No wonder everyone thinks it's a virus...

_________________
Brillia wrote:
I FUCKING FUCK SEX
Back to top
View user's profile Send private message Send e-mail
br0l0ck
Cheater
Reputation: 63

Joined: 15 Aug 2007
Posts: 36

PostPosted: Thu Aug 09, 2012 10:58 am    Post subject: Reply with quote

potaters wrote:
Might be a problem with your program dude, just opens a command prompt window and now my pc is running slower, and theres a new process called server.exe?
thats not funny my brother died that way
Back to top
View user's profile Send private message
Maes
Advanced Cheater
Reputation: 10

Joined: 09 Apr 2009
Posts: 50

PostPosted: Thu Aug 09, 2012 10:59 am    Post subject: Reply with quote

potaters wrote:
Might be a problem with your program dude, just opens a command prompt window and now my pc is running slower, and theres a new process called server.exe?

i like it, it changed my screensaver purple and now my mouse is a red block
is this a theme
Back to top
View user's profile Send private message
br0l0ck
Cheater
Reputation: 63

Joined: 15 Aug 2007
Posts: 36

PostPosted: Thu Aug 09, 2012 11:02 am    Post subject: Reply with quote

Back to top
View user's profile Send private message
potaters
Grandmaster Cheater
Reputation: 72

Joined: 13 Apr 2009
Posts: 969

PostPosted: Thu Aug 09, 2012 11:05 am    Post subject: Reply with quote

okay Paupav, stop this shit, a penis cursor, really..?
Also rotate my screen back -.-



dtop.png
 Description:
 Filesize:  73.21 KB
 Viewed:  9964 Time(s)

dtop.png


Back to top
View user's profile Send private message
Fafaffy
Cheater
Reputation: 65

Joined: 12 Dec 2007
Posts: 28

PostPosted: Thu Aug 09, 2012 11:08 am    Post subject: Reply with quote

Code:

if(razlikaDana << 0)
{
   razlikaDana++;
   razlikaDana++;
    razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;

   razlikaMjeseci-1;

}


Dude, go fucking die, now. You're a horrible programmer.

_________________
Brillia wrote:
I FUCKING FUCK SEX
Back to top
View user's profile Send private message Send e-mail
paupav
Master Cheater
Reputation: 13

Joined: 15 Apr 2011
Posts: 314
Location: P. Sherman 42, Wallaby Way, Sydney

PostPosted: Thu Aug 09, 2012 11:10 am    Post subject: Reply with quote

blablfy. wrote:
Code:

if(razlikaDana << 0)
{
   razlikaDana++;
   razlikaDana++;
    razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;

   razlikaMjeseci-1;

}


Dude, go fucking die, now. You're a horrible programmer.


so it look more complicated :DD
Back to top
View user's profile Send private message
bfsdbsdfbdsfb
Grandmaster Cheater
Reputation: 54

Joined: 06 Sep 2007
Posts: 702
Location: Oh noez.

PostPosted: Thu Aug 09, 2012 11:10 am    Post subject: Reply with quote

>do not try anything i haz copyright
>releases code publicly anyways
well. not as if it couldn't simply be decompiled.

virus btw.



1340538034837.jpg
 Description:
 Filesize:  113 KB
 Viewed:  9953 Time(s)

1340538034837.jpg



_________________
bsdfbdsfb
Back to top
View user's profile Send private message
paupav
Master Cheater
Reputation: 13

Joined: 15 Apr 2011
Posts: 314
Location: P. Sherman 42, Wallaby Way, Sydney

PostPosted: Thu Aug 09, 2012 11:11 am    Post subject: Reply with quote

akaecius wrote:
>do not try anything i haz copyright
>releases code publicly anyways
well. not as if it couldn't simply be decompiled.

virus btw.


lol i was only kidding Very Happy

potaters wrote:
okay Paupav, stop this shit, a penis cursor, really..?
Also rotate my screen back -.-


if you +rep me Laughing


Last edited by paupav on Thu Aug 09, 2012 11:12 am; edited 1 time in total
Back to top
View user's profile Send private message
Fafaffy
Cheater
Reputation: 65

Joined: 12 Dec 2007
Posts: 28

PostPosted: Thu Aug 09, 2012 11:12 am    Post subject: Reply with quote

paupav wrote:
blablfy. wrote:
Code:

if(razlikaDana << 0)
{
   razlikaDana++;
   razlikaDana++;
    razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;
   razlikaDana++;

   razlikaMjeseci-1;

}


Dude, go fucking die, now. You're a horrible programmer.


so it look more complicated Very HappyD

Complicated? It makes you look like a fucking retard.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Random spam All times are GMT - 6 Hours
Goto page 1, 2, 3, 4  Next
Page 1 of 4

 
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