KWD

Kogama World Decoder

目前為 2022-03-30 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/442377/1034049/KWD.js

作者
Exnonull
版本
1.0
建立日期
2022-03-30
更新日期
2022-03-30
尺寸
11.3 KB
授權條款
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 => {
        // ...
    });