Guest User

Untitled

a guest
Jul 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. void ZChatOutput(char *message, int messageType, int location, unsigned int color)
  2. {
  3. _asm
  4. {
  5. pushad
  6. push end
  7. push ebp
  8. mov ebp, esp
  9. push color
  10. push location
  11. push messageType
  12. push message
  13. push LEAVERETN
  14. mov eax, ZCHATOUTPUT
  15. jmp eax
  16. end:
  17. popad
  18. }
  19. }
Add Comment
Please, Sign In to add comment