mov $6, %eax
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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<*>>() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PluginImpl : JavaPlugin() { | |
override fun onLoad() { instance = this } | |
companion object { | |
lateinit var instance : PluginImpl | |
private set | |
} | |
} |
NewerOlder