Skip to content

Commit 8d96d77

Browse files
authored
Update Instructions.md
1 parent b488515 commit 8d96d77

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

Instructions.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Instructions
22

33
## Configuration
4-
> seen here: `server.py`
4+
> 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

Comments
 (0)