shepher

SendRemoveParty

Mar 13th, 2012
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. /* seu .h */
  2. void SendRemoveParty(int clientid, int mobId)
  3.  
  4.  
  5. /* .cpp */
  6.  
  7. void SendRemoveParty(int clientid, int mobId)
  8. {
  9.     int removeparty_addr = 0x00442410;
  10.     _asm
  11.     {
  12.         PUSH mobId
  13.         PUSH clientid
  14.         CALL removeparty_addr
  15.         ADD ESP,0x04
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment