Feat: Player statistics mod added

This commit is contained in:
2024-12-05 11:41:55 +00:00
parent c0bd808561
commit 416b46b63a
5 changed files with 49 additions and 21 deletions

59
.gitignore vendored
View File

@@ -1,30 +1,55 @@
# World data (contains player and world information) # World files and backups
world/ world/
*.zip
simplebackups/
worlds/ worlds/
# Log files # Forge and Minecraft server files
libraries/
logs/ logs/
crash-reports/
*.log *.log
.mixin.out/
# Server generated files
banned-players.json
usercache.json usercache.json
usernamecache.json usernamecache.json
ops.json
# Server runtime files
banned-ips.json
banned-players.json
whitelist.json whitelist.json
ops.json
eula.txt
server.properties server.properties
*.properties
# Backup folders # Mod and config related
simplebackups/ !mods/
mods/*.zip
!config/
!defaultconfigs/
!kubejs/
!scripts/
!resources/
!patchouli_books/
!pfm/
!modernfix/
!local/
# Local configuration files # Compiled files
rhino.local.properties *.class
*.local.properties *.jar
!forge-*-installer.jar
# Libraries and runtime files # Temporary files
libraries/ *.tmp
forge-*.jar *.bak
forge-*-installer.jar
# Generated data folders # OS-specific files
local/ .DS_Store
Thumbs.db
# IDE files
.idea/
*.iml
.vscode/
*.launch

View File

@@ -1,3 +1,3 @@
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula). #By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula).
#Thu Nov 28 15:12:17 GMT 2024 #Sat Nov 30 20:15:33 GMT 2024
eula=true eula=true

View File

View File

@@ -3,4 +3,5 @@
# #
# #
# Run the forge installer 1.18.2-40.2.4 and click Install server, then select this directory to install. # Run the forge installer 1.18.2-40.2.4 and click Install server, then select this directory to install.
# After that, launch the run.bat file or run.sh (linux) should start the server, make sure to agree with eula on the first time. # After that, launch the command prompt and navigate to the project directory then run run.bat file to start the server and notify the discord channel. Make sure to agree with eula on the first time.

View File

@@ -1,6 +1,8 @@
python C:\Users\edwar\OneDrive\Documents\Programming\Python Scripts\discord_bot_minecraft_bois\discord_bot_minecraft_bois\tests\test_message_server_start.py
REM Forge requires a configured set of both JVM and program arguments. REM Forge requires a configured set of both JVM and program arguments.
REM Add custom JVM arguments to the user_jvm_args.txt REM Add custom JVM arguments to the user_jvm_args.txt
REM Add custom program arguments {such as nogui} to this file in the next line before the %* or REM Add custom program arguments {such as nogui} to this file in the next line before the %* or
REM pass them to this script directly REM pass them to this script directly
java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.18.2-40.2.4/win_args.txt %* java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.18.2-40.2.4/win_args.txt %*
pause python C:\Users\edwar\OneDrive\Documents\Programming\Python Scripts\discord_bot_minecraft_bois\discord_bot_minecraft_bois\tests\test_message_server_stop.py
pause