Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. double server;
  2. dllInit();
  3. std::cout << "start\n";
  4. server = tcpconnect( "77.167.89.19", 40000, 2 );
  5. while ( !tcpconnected( server ) ) {
  6. std::cout << "connected!\n";
  7. }
  8. std::cout << "~\n";
  9. //
  10. writebyte( 1, 0 );
  11. writestring( "chachamaru", 0 );
  12. writestring( "myewopass", 0 );
  13. sendmessage( server, 0, 0, 0 );
  14. while ( true ) {
  15. if ( GetAsyncKeyState( VK_ESCAPE ) )
  16. break;
  17. }
  18. writebyte( 5, 0 );
  19. sendmessage( server, 0, 0, 0 );
  20. //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement