We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b488515 commit 8d96d77Copy full SHA for 8d96d77
Instructions.md
@@ -1,4 +1,18 @@
1
# Instructions
2
3
## Configuration
4
-> seen here: `server.py`
+> seen here: `server.py` <br>
5
+> line 61 - 72 <br>
6
+> class PieMC_Server: <br>
7
+> def `__init__`(self, ip, port): <br>
8
+> self.server_name = None <br>
9
+> self.socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) <br>
10
+> self.ip = ip <br>
11
+> self.port = port <br>
12
+> self.edition = "MCPE" <br>
13
+> self.protocol_version = 589 <br>
14
+> self.version_name = "1.20.0" <br>
15
+> self.motd1 = config.MOTD1 <br>
16
+> self.motd2 = config.MOTD2 <br>
17
+> self.players_online = 2 # 2 players online XD. Update (By andiri): YES :sunglasses: <br>
18
+> self.max_players = config.MAX_PLAYERS <br>
0 commit comments