Advertisement
Guest User

Untitled

a guest
Mar 28th, 2016
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. void Myfunction()
  2. {
  3. PyRun_SimpleString("import player");
  4. PyRun_SimpleString("VALAMI....")");
  5. MessageBoxA(NULL, "SIKERÜLT LEFUTTATNI", NULL);
  6. }
  7.  
  8. void start_fuck_off()
  9. {
  10. C:
  11. if (GetAsyncKeyState(VK_F5)) Myfunction();
  12. goto C;
  13. }
  14.  
  15. BOOL APIENTRY DLL_FILE(HMODUL mod, DWORD reason, LPVOID re)
  16. {
  17. FILE *f = fopen("Readme.txt", "w");
  18. fputs("WAT", f);
  19. fclose(f);
  20. if (reason == DLL_PROCESS_ATTACH) CreateThread(NULL, NULL, LPTHREAD_START_ROUTINE(start_fuck_off), NULL, NULL, NULL);
  21. return TRUE;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement