KWD

Kogama World Decoder

Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta // @require https://update.greasyfork.org/scripts/442377/1034049/KWD.js

Tác giả
Exnonull
Phiên bản
1.0
Đã tạo
30-03-2022
Đã cập nhật
30-03-2022
Giấy phép
MIT

Released old code as library, made auto formatting, supposed to use with KPD
Usage:

    // decode request with KPD
    packet = KPD.decode(inputPacket);

    // check if GameWorld request
    if (packet.opCode != 'GameSnapshotData') return;
    queryType = ['GameWorld','Item','AddToGameWorld','AccessoryUserData','Bodies'][packet.params[133].Value];
    if (queryType != 'GameWorld') return;

    KWD.push(packet.params[245].Value); // record part
    if (packet.params[100].Value) return; // last part?

    // decoded game data
    /*
        list = {
          inv,
          obj,
          link,
          olink,
          runtime,
          invWorld,
          invGun
        }
    */

    KWD.then(list => {
        // ...
    });