Advertisement
dcomicboy

elite kick

Mar 20th, 2012
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. void EliteVoteKick(LPDIRECT3DDEVICE9 pDevice)
  2. {
  3. if((*(BYTE *)GameStatus == 1) && Elite)
  4. {
  5. if(ValidPointer(g_LTClient))
  6. {
  7. CAutoMessage Msg;
  8. Msg.Writeuint8(206);
  9. Msg.Writeuint8(1);
  10. g_LTClient->SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
  11. }
  12. else
  13. {
  14. g_LTClient = *(CLTClient**)ADDR_LTCLIENTDLL;
  15. g_CommonLT = g_LTClient->Common();
  16. return;
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement