Questo codice è stato progettato per assomigliare ad una versione più semplice del gioco di battaglia Pokemon. Ho solo codificato negli attacchi. Ho provato a fondo e ho trovato un messaggio di errore (Goto era inatteso in questo momento) ogni volta che l'utente ha confermato il suo attacco. AVVERTIMENTO!! Il codice è lungo 96 righe. Alla fine, inserirò la sezione del problema, quindi puoi saltare questo primo enorme pezzo.Goto era inatteso in questo momento batch windows 7 starter
@echo off
Set H1=20
Set A1=8
Set D1=6
Set S1=5
Set H2=14
Set A2=5
Set D2=4
Set S2=8
:Begin
CLS
Echo Bulbasur
Echo %H2%/14 /\
Echo (__) ___
Echo l __lo.ol
Echo l_\ l_\"
Echo.
Echo _
Echo */\
Echo \\l )
Echo \\__l Charmander
Echo %H1%/20
Echo -Attack -Capture
Echo -Item -Run
Set /p Move=Action?
If %move%==Attack goto Attack
If %move%==Catpure goto capture
If %move%==Item goto Item
If %move%==Run Goto Run
Echo I'm sorry, Charmander can't do that.
Pause
goto Begin
:Attack
ClS
Echo Attacks
Echo 1)Tackle
Echo 2)Growl
Echo 3)Ember
Echo 4)Scratch
Set /p attack=Which one?
If %attack%==Tackle goto Tackle
If %attack%==1 goto Tackle
If %attack%==Growl Goto Growl
If %attack%==2 goto Growl
If %attack%==Ember goto Ember
If %attack%==3 goto Ember
If %attack%==Scratch goto Scratch
If %attack%==4 goto Scratch
If %attack%==Cancel goto Begin
Echo I didn't get that
Goto Attack
:Tackle
CLS
Echo Tackle Hits The opponent where it hurts. EVERYWHERE.
Echo Do you want to?
set /p accept=Yes/No?
If %acccept%==Yes goto Combat
If %acccept%==No goto Begin
Echo I didn't get that.
goto Tackle
:Growl
CLS
Echo Growl lowers the opponents attack.
Echo Do you want to?
set /p accept=Yes/No?
If %acccept%==Yes goto Status
If %acccept%==No goto Begin
Echo I didn't get that.
goto Growl
:Scratch
CLS
Echo Scratch hits the foe with a claw.
Echo Do you want to?
set /p accept=Yes/No?
If %acccept%==Yes goto Combat
If %acccept%==No goto Begin
Echo I didn't get that.
goto Scratch
:Ember
CLS
Echo Ember hits the opponent with a small fire.
Echo Do you want to?
set /p accept=Yes/No?
If %acccept%==Yes goto Combat
If %acccept%==No goto Begin
Echo I didn't get that.
goto Ember
:Combat
CLS
If NOT %attack%==Growl If NOT %attack%==2 set /a H2=%H2%-(%A1%^2/%D2%)
set /a H1=%H1%-(%A2%^2/%D1%)
goto Begin
:Status
CLS
Set /a A1=%A1%-1
goto Combat
Problema Area:
:Tackle
CLS
Echo Tackle Hits The opponent where it hurts. EVERYWHERE.
Echo Do you want to?
set /p accept=Yes/No?
If %acccept%==Yes goto Combat
If %acccept%==No goto Begin
Echo I didn't get that.
goto Tackle
Il codice arriva qui bene, ma una volta che sono qui, non si aspetta i comandi Goto. Chiunque può aggiustare questa carne? (Nota: Tackle è solo un esempio. Nessuno degli attacchi funziona.) EDIT: Se l'utente inserisce "Sì", "No", senza senso o nulla, continua a inviare lo stesso messaggio di errore (goto era inaspettato in questo momento)
Sono curioso dei downvotes; asker ha pubblicato il codice, ha individuato un'area di problemi di esempio e ha persino fornito il messaggio di errore. Sembra una buona domanda per me. E 'solo disdegno per i file batch? Ciò non dovrebbe influire sul fatto che la domanda sia buona o meno. –
@WesleyPetrowski, probabilmente perché ha pubblicato il suo intero script. E poi ha pubblicato una copia aggiuntiva del codice problematico. Avrebbe dovuto solo pubblicare il codice che era problematico. – mikerobi
'Se% move% == Catpure goto capture' So che i gatti purre, ma penso che questo sia un typo ^^ – Stephan