Greasy Fork is available in English.

KWD

Kogama World Decoder

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/442377/1034049/KWD.js

作者
Exnonull
版本
1.0
创建于
2022-03-30
更新于
2022-03-30
许可证
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 => {
        // ...
    });