Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* seu .h */
- void SendRemoveParty(int clientid, int mobId)
- /* .cpp */
- void SendRemoveParty(int clientid, int mobId)
- {
- int removeparty_addr = 0x00442410;
- _asm
- {
- PUSH mobId
- PUSH clientid
- CALL removeparty_addr
- ADD ESP,0x04
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment