So, I don't get it about this part:
echo " _________________________________________________________________ "
echo "| |"
echo "| The wall in front of you moved upwards and light shined so |"
echo "| |"
echo "| bright, but you could move. You walked towards the light. And |"
echo "| |"
echo "| from here, your adventure will start soon. We welcome you to |"
echo "| |"
echo "| Votre Monde, Franqais... |"
echo "|_________________________________________________________________|"
So... here's the problem. If I try to remove the double quotes ("), the whole batch file crashes. I need it to be remove because it ruins the design of a game. Is there a way to let an echo allowed the code above without double quotes? I'd be very glad. Thank you...
You need to escape this special character | by adding a caret ^|
and your code can be written like this one :
@echo off
echo __________________________________________________________________
echo ^| ^|
echo ^| The wall in front of you moved upwards and light shined so ^|
echo ^| ^|
echo ^| bright, but you could move. You walked towards the light. And ^|
echo ^| ^|
echo ^| from here, your adventure will start soon. We welcome you to ^|
echo ^| ^|
echo ^| Votre Monde, Franqais... ^|
echo ^|_________________________________________________________________^|
pause>nul
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With