This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9496e0d
commit 677231a
Showing
15 changed files
with
67 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,8 @@ | ||
/%@@@@@@@@@( | ||
/&@@&%#@@@@# | ||
(&@@@@@@@@@@@@@@&( #@@@# | ||
(@@@@@@@@@@@@@@@@@@@@@@@&( %@@@% | ||
/&@@@@@@@@@@@@@@@@@@@@@@@@@@@/ /&@@@% | ||
%@@@@@@@@@@@@@@@@@@@@@@@@@@@( %@@@@( | ||
/&@@@@@@@@@@@@@@@@@@@@@@@@@@# #@@@@% | ||
&@@@@@@@@@@@@@@@@@@@@@@@@@( #@@@@@% | ||
/@@@@@@@@@@@@@@@@@@@@@@@@/ #@@@@@@@@/ | ||
(@@@@@@@@@@@@@@@@@@@@@# &@@@@@@@@@@( | ||
/@@@@@@@@@@@@@@@@@@&/ (@@@@@@@@@@@@@/ | ||
#@@@@@@@@@@@@@@@( /%@@@@@@@@@@@@@@% | ||
%@@@@@@@@@@&( #@@@@@@@@@@@@@@@@& | ||
(@@@@@@%( #@@@@@@@@@@@@@@@@@@( | ||
#@# /%( /%@@@@@@@@@@@@@@@@@@@# | ||
#@@@@ (&@@@@@@@@@@@@@@@@@@@# | ||
@@@@ (&@@@@@@&@@@@@@@@@@@%/ | ||
@@@@@@@@@@@@@@%/ | ||
(&@@@@@@%/ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
dBBBBb dBBBBP dBBBBBb dBBBBBBP dBP dBP.dBBBBP dBBBBBBP dBBBBBb dBBBBBb | ||
dBP dB'.BP dBP BP BB dBP | ||
dBP dBP dB'.BP dBBBBK' dBP dBBBBBP `BBBBb dBP dBP BB dBBBBK' | ||
dBP dBP dB'.BP dBP BB dBP dBP dBP dBP dBP dBP BB dBP BB | ||
dBP dBP dBBBBP dBP dB' dBP dBP dBP dBBBBP' dBP dBBBBBBB dBP dB' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
2023-10-20 19:22:05,758 - INFO - Changed the window title. | ||
2023-10-20 19:22:05,760 - INFO - Started rich presence. | ||
2023-10-20 19:22:16,381 - INFO - Selected GPTW |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import os | ||
def minecraft_tweak(): | ||
# Set the Minecraft directory | ||
mc_dir = os.path.join(os.getenv('APPDATA'), '.minecraft') | ||
|
||
# Check if Minecraft directory exists | ||
if not os.path.exists(mc_dir): | ||
print("Minecraft directory not found. Are you sure you have minecraft installed?") | ||
exit() | ||
|
||
# Check if options.txt exists | ||
options_file = os.path.join(mc_dir, 'options.txt') | ||
if not os.path.exists(options_file): | ||
print("options.txt not found.") | ||
exit() | ||
|
||
# Make a backup of the original options.txt | ||
os.system(f'copy {options_file} {os.path.join(mc_dir, "options.txt.bak")}') | ||
|
||
# Change settings in options.txt | ||
with open(options_file, 'r') as file: | ||
lines = file.readlines() | ||
|
||
with open(options_file, 'w') as file: | ||
for line in lines: | ||
if line.startswith('renderDistance'): | ||
file.write('renderDistance:4\n') | ||
else: | ||
file.write(line) |
Oops, something went wrong.