Advertisement
dcomicboy

crasher

Dec 2nd, 2011
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. void crash(int value){
  2.  
  3.  
  4. if(value == 0)
  5.  
  6.  
  7. return;
  8.  
  9.  
  10. CAutoMessage Msg;
  11.  
  12. Msg.Writeuint8(104);
  13.  
  14. Msg.WriteWString((wchar_t*) L"The Game, you just lost :)");
  15.  
  16. g_LTClient->SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
  17. }
  18.  
  19.  
  20.  
  21.  
  22. DWORD WINAPI servercrasher(LPVOID){
  23.  
  24. while(1)
  25.  
  26. {
  27.  
  28. if(hack1){
  29.  
  30. g_LTClient = *(CLTClient**)0x377C97A8;
  31.  
  32. g_CommonLT = g_LTClient->Common();
  33.  
  34. if(ValidPointer(g_LTClient))
  35. {
  36.  
  37. while(1){
  38.  
  39. CAutoMessage Msg;
  40.  
  41. Msg.Writeuint8(104);
  42.  
  43. Msg.WriteWString((wchar_t*) L"lost the game ");
  44.  
  45. g_LTClient->SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
  46.  
  47. Sleep(500)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement