You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# NMdebug will change the mode you run McCMD inside of, giving you access to features a normal user does not have.
# NM WILL LOCK YOUR NAME AT YOUR MODE
import sys
import time
# - = OR
# NM List -
# dev
# NM EARLY List -
# error
# Default = user
NM = "user"
if NM == "user" or NM == "dev":
print(f'Setting Debug Mode: {NM}')
time.sleep(1)
exec(open("bootsc.py").read())
else:
sys.exit("Uh oh! McCMD has encountered an error! We were unable to launch bootsc.py {DO NOT ATTEMPT TO LAUNCH IT MANUALLY} \n\nDev Reason: NMdebug is set to an invalid string, head into NMdebug.py and set NM to 'user'.")