OldSchoolHack

Register / Login English

GameHacking Tutorial Part 09 - Kreationen und Probleme

icon Thread: GameHacking Tutorial Part 09 - Kreationen und Probleme

Join Date: Oct 2007

Posts: 329

Tag,

Hab was anderes gemacht :>

TEXT Code:
  1. #include <iostream>
  2. using namespace std;
  3. #include <time.h>
  4.  
  5. int main()
  6. {
  7. time_t timek;
  8. tm *k;
  9. timek = time(0);
  10. k = localtime(&timek);
  11. cout << "#k: " << k->tm_hour
  12. << ':' << k->tm_min << endl;
  13. system("pause");
  14. }
  15.  
  16.  
Only registered and activated users can see links.