I am new to programming and I started with Batch. I learned some basics, like to make an RPG game etc... But I need a "clicking" script or anything that will alow me to click a text such as "echo Play" so when I click "Play" with mouse it should proceed to the next code. I think this is possible to make but I don't know I am just beginner.
Here is example for this:
@echo off
title RPG
cls
:start
cls
echo Play
echo Exit
echo.
set /p=Click
if %click% == play goto :play
if %click% == exit exit
:play
cls
echo Welcome to the game!
echo.
pause
So I know how this set /p
and if %%
works, but this was just example on how it by how I think should work. I would be thankful if someone could write a code so I could just paste it. Thank you!