File tree 1 file changed +6
-11
lines changed
1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 5
5
6
6
pth = os .getcwd ()
7
7
8
+ print ("write down which versions you want to use(use full name of version, example 1.2.4 and 1.17.34.02)" )
9
+ LL = input ("what version of LL u need? " )
10
+ BDS = input ("what version of BDS u need? " )
11
+
8
12
print ('Beginning downloading files...' )
9
- zip = 'https://minecraft.azureedge.net/bin-win/bedrock-server-1.17.34.02 .zip'
10
- zip1 = 'https://github.com/LiteLDev/LiteLoaderBDS/releases/download/1.2.4 /LiteLoader.zip'
13
+ zip = 'https://minecraft.azureedge.net/bin-win/bedrock-server-' + BDS + ' .zip'
14
+ zip1 = 'https://github.com/LiteLDev/LiteLoaderBDS/releases/download/' + LL + ' /LiteLoader.zip'
11
15
urllib .request .urlretrieve (zip , 'bedrock_server.zip' )
12
16
urllib .request .urlretrieve (zip1 , 'LiteLoader.zip' )
13
17
print ("Success!" )
14
18
15
-
16
19
print ('Starting extract files' )
17
20
fantasy_zip = zipfile .ZipFile (pth + '\\ bedrock_server.zip' )
18
21
fantasy_zip .extractall (pth )
23
26
print ('All file extracted! Starting generate server' )
24
27
os .system (pth + '\\ SymDB2.exe' )
25
28
26
-
27
29
for i in range ( 0 , 0 ):
28
30
subprocess .call (('SymDB2.exe' , str (i )))
29
31
30
32
os .system (pth + '\\ bedrock_server.exe' )
31
-
32
- my_file = open ('LL-loader.txt' , 'w+' )
33
- my_file .write ('Hello!' + '\n ' )
34
- my_file .write ('Thx for using LL-loader' + '\n ' )
35
- my_file .write ('Github: https://github.com/Development-studio/LL-Loader' )
36
- my_file .close ()
37
-
You can’t perform that action at this time.
0 commit comments