Created
June 1, 2021 21:29
-
-
Save Ramonymous/ea34871f47201ae4503a4a88a39cd9d7 to your computer and use it in GitHub Desktop.
Revisions
-
Ramonymous created this gist
Jun 1, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ #! /system/bin/bash Cachedir=/sdcard/android/data/com.kakaogames.moonlightgb/cache MSDir=/data/data/com.kakaogames.moonlightgb KGDeviceID=/data/data/com.kakaogames.moonlightgb/shared_prefs/KGDeviceID.xml echo "MS Guest Account Reset" #checking pid echo "Making sure if Moonlight Sculptur is Closed" am kill com.kakaogames.moonlightgb #checking file echo "Checking KGDeviceID" if [ -f "$KGDeviceID" ]; then rm -rf $MSDir/* rm -rf $Cachedir echo "Success...now please open from your menu" else clear echo "Hey maybe you have reset the guest account before, please login to the app." fi