Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
26 lines
1.0 KiB
Java
26 lines
1.0 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package wasm;
|
|
|
|
import java.io.IOException;
|
|
import java.util.ArrayList;
|
|
import wasm.disassembly.InvalidOpCodeException;
|
|
import wasm.disassembly.modules.Module;
|
|
import wasm.misc.StreamReplacement;
|
|
|
|
public class GWasm {
|
|
public static void main(String[] args) throws IOException, InvalidOpCodeException {
|
|
long start = System.currentTimeMillis();
|
|
Module module = new Module("C:\\Users\\jonas\\Desktop\\Projects\\Jznnp\\S\\habbo2020\\rawfiles\\0.23.0_(534)\\habbo2020-global-prod.wasm.gz", true, new ArrayList<StreamReplacement>());
|
|
long end = System.currentTimeMillis();
|
|
System.out.println("Disassemble time: " + (end - start));
|
|
start = System.currentTimeMillis();
|
|
module.assembleToFile("C:\\Users\\jonas\\Desktop\\Projects\\Jznnp\\S\\habbo2020\\rawfiles\\0.23.0_(534)\\out\\habbo2020-global-prod.wasm.gz", true);
|
|
end = System.currentTimeMillis();
|
|
System.out.println("Assemble time: " + (end - start));
|
|
System.out.println("hi");
|
|
}
|
|
}
|
|
|