KPD

Kogama Packet Decoder

สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/441869/1034053/KPD.js

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

ผู้เขียน
Exnonull
เวอร์ชัน
1.1
สร้างเมื่อ
21-03-2022
อัปเดตเมื่อ
30-03-2022
Size
15.7 กิโลไบต์
สัญญาอนุญาต
MIT

Released old code as library, made some refactoring
Usage example:

    const inputPacket = [
        243,2,38,0,12,40,105,0,0,0,1,23,
        105,0,1,39,58,20,105,0,0,0,0,39,
        111,1,24,102,0,0,0,0,25,102,65,
        32,0,0,26,102,0,0,0,0,27,102,0,
        0,0,0,28,102,0,0,0,0,29,102,0,0,
        0,0,30,102,63,128,0,0,125,111,0
    ];

    // returns string
    const packetType = KPD.typeOf(inputPacket);

    // returns decoded object
    const data = KPD.decode(inputPacket);

    // returns array of bytes
    const outputPacket = KPD.encode(data);