I hereby claim:
- I am Proximyst on github.
- I am mariellh (https://keybase.io/mariellh) on keybase.
- I have a public key whose fingerprint is 259A FEEF 1FA8 9A66 2E53 30F1 DA28 172D FAC4 9D1A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| 22.07 09:00:59 [Multicraft] Received start command | |
| 22.07 09:00:59 [Multicraft] Loading server properties | |
| 22.07 09:00:59 [Multicraft] Starting server! | |
| 22.07 09:00:59 [Multicraft] Loaded config for "Custom.jar (Use and upload your own JAR)" | |
| 22.07 09:00:59 [Multicraft] Running setup... | |
| 22.07 09:01:00 [Setup/"Clean Mod Directories and Plugins" before setup] Deleting 'mods' directory... | |
| 22.07 09:01:00 [Setup/"Clean Mod Directories and Plugins" before setup] Deleting 'mod' directory... | |
| 22.07 09:01:00 [Setup/"Clean Mod Directories and Plugins" before setup] Deleting all jar files... | |
| 22.07 09:01:00 [Setup/"Clean Mod Directories and Plugins" before setup] Deleting all files in 'plugins'... | |
| 22.07 09:01:00 [Setup/"Clean Mod Directories and Plugins" before setup] Cleanup completed. |
| package com.proximyst.eisaku.eventhandling.framework | |
| import com.proximyst.eisaku.Main | |
| import discord4j.core.event.domain.Event | |
| import kotlin.reflect.KClass | |
| import kotlin.reflect.full.companionObject | |
| object EventHandler { | |
| val handlers = mutableListOf<EventHandlerClassWrapper<*>>() |
| [package] | |
| name = "cheat" | |
| version = "0.1.0" | |
| authors = ["Mariell Hoversholm <[email protected]>"] | |
| edition = "2018" | |
| [dependencies] | |
| winapi = { version = "^0.3", features = ["std", "everything"] } | |
| libc = { version = "^0.2", features = ["use_std", "extra_traits"] } | |
| getset = "^0.0" |
mov $6, %eax| import com.github.jengelman.gradle.plugins.shadow.tasks.ConfigureShadowRelocation | |
| import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar | |
| import org.apache.tools.ant.filters.ReplaceTokens | |
| plugins { | |
| id("com.github.johnrengelman.shadow") version "4.0.4" apply false | |
| id("java") | |
| kotlin("jvm") version "1.3.21" apply false | |
| } |
| /** | |
| * Defines different encodings to use for packet handling. | |
| */ | |
| enum class PacketEncoding { | |
| /** | |
| * Handle the packet with no compression whatsoever. | |
| */ | |
| UNCOMPRESSED { | |
| override fun decode(data : ByteBuf) : ByteBuf { | |
| return data |
| package com.proximyst.ussrm.impl | |
| import com.proximyst.ussrm.packet.lowlevel.Packet | |
| import com.proximyst.ussrm.packet.lowlevel.PacketEncoding | |
| import com.proximyst.ussrm.packet.lowlevel.data.VarInt | |
| import com.proximyst.ussrm.packet.lowlevel.data.toPacket | |
| import com.proximyst.ussrm.packet.lowlevel.data.toVarInt | |
| import com.proximyst.ussrm.packet.lowlevel.packet.handshake.serverbound.PacketHandshakeServerboundHandshake | |
| import com.proximyst.ussrm.packet.lowlevel.packet.login.clientbound.PacketLoginClientboundDisconnect | |
| import com.proximyst.ussrm.packet.lowlevel.packet.status.clientbound.PacketStatusClientboundResponse |
| package com.proximyst.ussrm.packet.lowlevel | |
| import com.proximyst.ussrm.packet.lowlevel.data.VarInt | |
| import io.netty.buffer.ByteBuf | |
| import io.netty.buffer.Unpooled | |
| import java.io.ByteArrayOutputStream | |
| import java.util.zip.DeflaterOutputStream | |
| import java.util.zip.Inflater | |
| /** |