PowerNukkit | Minecraft |
---|---|
1.3.1.3-PN | 1.16.20 |
1.3.0.0-PN | 1.16.0 |
1.2.0.0-PN | 1.14.60 |
1.1.1.0-PN | 1.14.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
class CeylonMvnExample() { | |
shared void test() { | |
} | |
} |
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
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
SpongeCoremod (spongeforge-1.11.2-2393-6.1.0-BETA-2484.jar) | |
TransformerLoader (OpenComputers-MC1.11.2-1.7.0.40.jar) | |
Contact their authors BEFORE contacting forge | |
// Ooh. Shiny. | |
Time: 04/08/17 19:40 |
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 org.bukkit.event.EventHandler; | |
import org.bukkit.event.Listener; | |
import org.bukkit.event.inventory.InventoryClickEvent; | |
import org.bukkit.event.inventory.InventoryDragEvent; | |
import org.bukkit.event.inventory.InventoryType; | |
import org.bukkit.plugin.java.JavaPlugin; | |
public class NoChestForYouJavaPlugin extends JavaPlugin implements Listener { | |
@Override | |
public void onEnable() { |
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
name: SkellyMovePlugin | |
main: sample.SkellyMovePlugin | |
version: "1.0.0" | |
api: ["1.0.9"] |
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 test; | |
import cn.nukkit.network.Network; | |
import cn.nukkit.network.protocol.BatchPacket; | |
import cn.nukkit.network.protocol.DataPacket; | |
import cn.nukkit.network.protocol.ProtocolInfo; | |
import cn.nukkit.raknet.protocol.EncapsulatedPacket; | |
import cn.nukkit.utils.Zlib; | |
import java.util.Arrays; |
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
minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=z | |
[] | |
minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=z | |
[] | |
minecraft:wood;wood_type=jungle;stripped_bit=0;pillar_axis=x | |
[] | |
minecraft:wood;wood_type=jungle;stripped_bit=1;pillar_axis=x |
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
name: OffhandTestPlugin | |
main: sample.OffhandTestPlugin | |
version: 1.0.0 | |
api: ["1.0.9"] | |
commands: | |
test-offhand: | |
permission: test-offhand | |
permissions: | |
test-offhand: |
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
#!/bin/bash | |
# PowerNukkit Installation Script | |
# | |
# Server Files: /mnt/server | |
apt update | |
apt install -y curl jq | |
if [ -n "${DL_PATH}" ]; then | |
echo -e "Using supplied download url: ${DL_PATH}" | |
DOWNLOAD_URL=`eval echo $(echo ${DL_PATH} | sed -e 's/{{/${/g' -e 's/}}/}/g')` |
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
{ | |
"minecraft:dimension_type": { | |
type: "minecraft:dimension_type", | |
value: [ | |
{ | |
element: { | |
ambient_light: 0.0f, | |
bed_works: 1b, | |
coordinate_scale: 1.0d, | |
effects: "minecraft:overworld", |