me myself

the best

Este script no debería instalarse directamente. Es una biblioteca que utilizan otros scripts mediante la meta-directiva de inclusión // @require https://update.sleazyfork.org/scripts/390103/733014/me%20myself.js

  1. module.exports = class {
  2. constructor(size){
  3. this.buffer = Buffer.allocUnsafe(size)
  4. this.byteOffset = 0
  5. }
  6. writeUint8(value){
  7. this.buffer.writeUInt8(value, this.byteOffset++)
  8. }
  9. writeInt32(value){
  10. this.buffer.writeInt32LE(value, this.byteOffset)
  11. this.byteOffset += 4
  12. }
  13. writeUint32(value){
  14. this.buffer.writeUInt32LE(value, this.byteOffset)
  15. this.byteOffset += 4
  16. }
  17. writeString(string){
  18. for(let i = 0; i < string.length; i++) this.writeUint8(string.charCodeAt(i))
  19. this.writeUint8(0)
  20. }
  21. }