AimerNeige / Minecraft Auto TP
0 likes
0 forks
1 files
Last active
auto load your minecraft map with tp command
1 | import os |
2 | import time |
3 | |
4 | PLAYER_NAME = "Notch" |
5 | TMUX_SESSION_NAME = "minecraft" |
6 | SLEEP_DURATION = 6 |
7 | CHUNK_SIZE = 16 |
8 | VIEW_DISTANCE = 24 |
9 | WORLD_SIZE = 4096 |
10 | TP_STEP = CHUNK_SIZE * VIEW_DISTANCE |