mirror of
https://github.com/LOOHP/Limbo.git
synced 2026-06-07 21:41:43 +00:00
Reorganize sources to maven project standard
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"HandshakeIn": {
|
||||
"0x00": "PacketHandshakingIn"
|
||||
},
|
||||
"LoginIn": {
|
||||
"0x00": "PacketLoginInLoginStart",
|
||||
"0x02": "PacketLoginInPluginMessaging"
|
||||
},
|
||||
"LoginOut": {
|
||||
"PacketLoginOutLoginSuccess": "0x02",
|
||||
"PacketLoginOutDisconnect": "0x00",
|
||||
"PacketLoginOutPluginMessaging": "0x04",
|
||||
},
|
||||
"PlayIn": {
|
||||
"0x10": "PacketPlayInKeepAlive",
|
||||
"0x03": "PacketPlayInChat",
|
||||
"0x13": "PacketPlayInPositionAndLook",
|
||||
"0x12": "PacketPlayInPosition",
|
||||
"0x14": "PacketPlayInRotation",
|
||||
"0x0B": "PacketPlayInPluginMessaging",
|
||||
"0x06": "PacketPlayInTabComplete"
|
||||
},
|
||||
"PlayOut": {
|
||||
"PacketPlayOutLogin": "0x24",
|
||||
"PacketPlayOutPositionAndLook": "0x34",
|
||||
"PacketPlayOutSpawnPosition": "0x42",
|
||||
"PacketPlayOutChat": "0x0E",
|
||||
"PacketPlayOutPlayerAbilities": "0x30",
|
||||
"PacketPlayOutMapChunk": "0x20",
|
||||
"PacketPlayOutLightUpdate": "0x23",
|
||||
"PacketPlayOutKeepAlive": "0x1F",
|
||||
"PacketPlayOutPlayerInfo": "0x32",
|
||||
"PacketPlayOutUpdateViewPosition": "0x40",
|
||||
"PacketPlayOutShowPlayerSkins": "0x44",
|
||||
"PacketPlayOutDisconnect": "0x19",
|
||||
"PacketPlayOutPluginMessaging": "0x17",
|
||||
"PacketPlayOutTabComplete": "0x0F",
|
||||
"PacketPlayOutDeclareCommands": "0x10",
|
||||
"PacketPlayOutRespawn": "0x39",
|
||||
"PacketPlayOutGameState": "0x1D"
|
||||
},
|
||||
"StatusIn": {
|
||||
"0x01": "PacketStatusInPing",
|
||||
"0x00": "PacketStatusInRequest"
|
||||
},
|
||||
"StatusOut": {
|
||||
"PacketStatusOutResponse": "0x00",
|
||||
"PacketStatusOutPong": "0x01"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
groups:
|
||||
admin:
|
||||
- limboserver.stop
|
||||
- limboserver.kick
|
||||
- limboserver.say
|
||||
- limboserver.gamemode
|
||||
default:
|
||||
- limboserver.spawn
|
||||
|
||||
players:
|
||||
LOOHP:
|
||||
- admin
|
||||
@@ -0,0 +1,35 @@
|
||||
#Server max players, -1 for no limit
|
||||
max-players=-1
|
||||
|
||||
#Server port
|
||||
server-port=30000
|
||||
|
||||
#Server ip, localhost for local access only
|
||||
server-ip=0.0.0.0
|
||||
|
||||
#Whether this is server is behind a bungeecord proxy
|
||||
bungeecord=false
|
||||
|
||||
#World Name and the Schematic file containing map
|
||||
level-name=world;spawn.schem
|
||||
|
||||
#Dimension, "minecraft:overworld", "minecraft:the_nether" or "minecraft:the_end"
|
||||
level-dimension=minecraft:overworld
|
||||
|
||||
#Whether Flying is allowed
|
||||
allow-flight=false
|
||||
|
||||
#GameMode, survival, creative, adventure, spectator
|
||||
default-gamemode=creative
|
||||
|
||||
#Spawn location
|
||||
world-spawn=world;20.5;17;22.5;-90;0
|
||||
|
||||
#Reduce debug info
|
||||
reduced-debug-info=false
|
||||
|
||||
#Server list message in Json
|
||||
motd={"text":"","extra":[{"text":"Limbo Server!","color":"yellow"}]}
|
||||
|
||||
#Server list version as string
|
||||
version=Limbo!
|
||||
Reference in New Issue
Block a user