We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e843d4f commit 2e7d9dcCopy full SHA for 2e7d9dc
README
@@ -0,0 +1,12 @@
1
+MCProxy is a python application that aims to:
2
+ Proxy minecraft packet connections between clients and servers
3
+ Packet inspection on that link
4
+ Implement features/restrictions on the minecraft game by modifying the packet stream
5
+
6
+The main proxy (in the top level directory) is the guts and provides a framework for making plugins.
7
+Plugins are in the plugins directory and are loaded in order. This order is set in the plugins.py file.
8
9
+All packets recieved are filtered through each plugin in order. Each plugin may replace it, modify it or just drop it completely.
10
+See the plugin spec for details.
11
12
+Within the plugins directory there are several core plugins that provide a framework for player interaction and other useful tasks.
0 commit comments