Guest User

Untitled

a guest
Jan 1st, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. //v170
  2. [enable]
  3. alloc(time_stamp_hook,128)
  4. label(time_stamp_continue)
  5.  
  6. alloc(time_stamp_initialized,4)
  7. alloc(time_stamp,4)
  8.  
  9. time_stamp_initialized:
  10. dd 00000000
  11.  
  12. time_stamp:
  13. dd 00000000
  14.  
  15. 01CE8568: //011CE113: // No Delay
  16. db 05 00 00 00 00
  17.  
  18. 01CE90B0: // Fix timestamp-disconnect
  19. call time_stamp_hook
  20.  
  21. time_stamp_hook:
  22. cmp [time_stamp_initialized],00000000
  23. jne time_stamp_continue
  24.  
  25. call 01D70280
  26. mov [time_stamp],eax
  27. mov [time_stamp_initialized],00000001
  28.  
  29. time_stamp_continue:
  30. add [time_stamp],000003E8
  31. mov eax,[time_stamp]
  32. ret
  33.  
  34. [disable]
  35. 01CE8568: // 05 E8 03 00 00 89 85 ? ? FF FF
  36. db 05 E8 03 00 00
  37.  
  38. 01CE90B0: // 89 85 ? ? FF FF E8 ? ? ? 00 89 45 ? C7 85
  39. call 01D70280
  40.  
  41. dealloc(time_stamp)
  42. dealloc(time_stamp_initialized)
  43.  
  44. dealloc(time_stamp_hook)
Advertisement
Add Comment
Please, Sign In to add comment