Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
realseal5 authored Jul 15, 2020
1 parent 5c27670 commit 634c0eb
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions EmmVRC+Melonloader_Uninstaller.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
@echo off
echo.
echo.
echo.
echo.
echo.
echo 
echo 
echo ^ __ __
echo ^ _______ ____ _____ ^| ^| ______ ____ _____ ^| ^|
echo ^ \_ __ \_/ __ \ \__ \ ^| ^| / ___/_/ __ \ \__ \ ^| ^|
echo ^ ^| ^| \/\ ___/ / __ \^| ^|__ \___ \ \ ___/ / __ \^| ^|__
echo ^ ^|__^| \____^> (______/____//_____/ \____^> (______/____/
echo 
echo ^ --------------------------------------------------------
echo ^ ^| MelonLoader - EmmVRC AutoInstaller v1.6 by realseal ^|
echo ^ ^| EmmVRC by thetrueyoshifan (thetrueyoshifan.com) ^|
echo ^ ^| MelonLoader by Herp Derpinstine (melonwiki.xyz) ^|
echo ^ --------------------------------------------------------
echo.
echo Checking VrChat installation..
set /A x=0
IF NOT EXIST Vrchat.exe (
c:
IF EXIST "C:\Program Files (x86)\Steam\steamapps\common\VRChat\VRChat.exe" ( cd "C:\Program Files (x86)\Steam\steamapps\common\VRChat"
) else (
d:
IF EXIST "D:\Games\Steam\Steamapps\common\VRChat\VRChat.exe" ( cd "D:\Games\Steam\Steamapps\common\VRChat"
) else (

IF EXIST "D:\Steam\Steamapps\common\VRChat\VRChat.exe" ( cd "D:\Steam\Steamapps\common\VRChat"
) else (
echo.
echo 
echo 
echo "VrChat.exe" not found
echo Please put this file in the VRChat installation folder^!
echo To find it:
echo Open Steam ^> Library ^> Right click VrChat ^> Manage ^> Browse local files
echo 
echo.
echo.
echo.
pause
)
)
)
)
IF EXIST VrChat.exe (
echo Done!
echo Cleaning up existing MelonLoader/EmmVRC installation..
rem Melonloader
IF EXIST MelonLoader rd /S /Q MelonLoader || set /A x=%x%+1
IF EXIST version.dll del version.dll || set /A x=%x%+1
IF EXIST MelonLoader.zip del MelonLoader.zip || set /A x=%x%+1
IF EXIST NOTICE.txt del NOTICE.txt || set /A x=%x%+1
IF EXIST winmm.dll del winmm.dll || set /A x=%x%+1
IF EXIST Mono.Cecil.dll del Mono.Cecil.dll || set /A x=%x%+1
rem EmmVRC
IF EXIST Mods\emmVRCLoader.dll del Mods\emmVRCLoader.dll || set /A x=%x%+1
echo Done!
)
pause

0 comments on commit 634c0eb

Please sign in to comment.