document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ::模板開始
  2. Echo.
  3. Echo   Exit Confirmation:
  4. Echo     [Y]es
  5. Echo     [N]o
  6. Echo   *Please enter the first letter of the item you want to select.
  7. Echo.
  8. Echo ------------------------------------------------------------------------------
  9. Echo.
  10.  ::將選擇的字母寫入「Confirmation」
  11. set /P Confirmation=  Please select an item: %=%
  12. Echo.
  13. Echo ------------------------------------------------------------------------------
  14.  ::選擇「Y」會退出程式,選擇「N」會重新選擇
  15. If %Confirmation% == Y goto Exit
  16. If %Confirmation% == N goto SelectNo
  17. If %Confirmation% == y goto Exit
  18. If %Confirmation% == n goto SelectNo
  19.  ::選擇錯誤會回到開始畫面
  20. goto Start
  21. ::模板結束
');