Skip to content

Instantly share code, notes, and snippets.

@LegoFigure11
Last active May 30, 2021 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LegoFigure11/060a783bad062668d5c3fb54708c6c53 to your computer and use it in GitHub Desktop.
Save LegoFigure11/060a783bad062668d5c3fb54708c6c53 to your computer and use it in GitHub Desktop.
::Don't print unnecessary lines
@echo off
mode con cols=80 lines=26
title Colo Seed
::Set Up Variables
::Make sure to add the .exe to the path, otherwise the script won't know what to run!
set RUNASDATE=C:\Users\Lego\Documents\Pokemon\Tools\Runasdate\RunAsDate.exe
set DOLPHIN=C:\Users\Lego\Documents\Dolphin Emulator\RTC Version\dolphin.exe
::Print initial messages
echo ### Colo Seed.bat ### && echo by LegoFigure11 && echo. && echo Please enter the times you would like to use with RunAsDate:
::Accept User Inputs
set /p ddmmyyyy=DD\MM\YYYY (Backslashes Important):
set /p hhmmss=hh:mm:ss (Colons Important):
::Run the program!
"%RUNASDATE%" "%ddmmyyyy%" "%hhmmss%" "%DOLPHIN%" -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment