Forum Url:
http://gcoders.smfforfree2.comHello, I am not sure if anyone here is GOOD at coding batch files or not. But if you are please answer my question.
Question- On my batch file I want it to say Hi, whats your name- now i got that far. But then when you type your name i want to it apear as Hi (what you typed)
here is the code so far
@echo off
:menu
cls
title hi
echo Hello world
echo Whats your name?
echo this is my first program
Echo Type your name
set /p c=Option:
:(typedname)
cls
echo Hi [i](this is were i want the name)[/i]
echo glad you got this far
echo if you hit 1 you will go to a screen were you can chat with the computer
set /p c=Option:
if %c%==1 goto 1
:1
cls
echo LolLolLolLollollollollollollollollollollollollollollololollollollollollollollol!
echo You actualy thought you can talk to the computer lollollollollollollollollollol!
echo I PRANKED YOU!!!
echo Use this on your friends I dare you!!!
echo dont wory this doesnt harm your computer
echo or does it? 0_o
echo type e to exit
set /p c=option
if %c%==e goto e
:e
cls
exit
Pause
Please help if you can.