Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi im trying to write a batch file that when it gets to that area of the code it waits for 10 seconds and then if a certain key is pressed it exits else it goto's another area of the code. Heres what i got so far

SLEEP 10
IF
exit
else if
goto start

srry dont know if this is write im just learning Lua an while similr to dos they arnt quite the same. If anyone can fill in the gaps an fix the mistakes I would much appreciate it. The key i want to be pressed is anykey or a specific key idc which

share|improve this question
1  
That's not Lua code. What kind of batch file is that? – Nicol Bolas Jul 13 '12 at 5:49
To be able to write something in Lua, you should first learn a bit of it's syntax. The Programming in Lua book is a good place to get started. – jpjacobs Jul 13 '12 at 8:07

1 Answer

You can do this in batch using this

@echo off
choice /c abcd /n /t 5 /d d
if %errorlevel%==1 echo You chose a
if %errorlevel%==2 goto :CONTINUE
if %errorlevel%==3 echo You chose c
if %errorlevel%==4 exit >nul

:CONTINUE
REM Continue code
pause >nul

Usage:

In this script your options are a, b, c, and d.

Use the %errorlevel% with incrementing numbers to get the choice selected.

The /t switch is the timeout in seconds, in this it is 5 seconds.

The /d switch is the default option, use this to automatically make a choice if the command times out. In this case d will be the time out choice, which will exit the script.

Just tweak to fit your needs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.