Skip to content
This repository was archived by the owner on Apr 9, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions Silver Project → Client.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@echo off
if not exist username.txt goto username
if not exist username.bat goto username

call username.bat
REM Drawing the main screen code here lol
:home
echo.
Expand All @@ -14,15 +16,20 @@ echo.
set /p input=Input:

if %input% == 1 goto error
if %input% == 2 goto connect
if %input% == 2 goto error
if %input% == 3 goto error
if %input% == 4 goto error
rem "ERROR" is placeholder for features.

REM :error is a placeholder

:connect
echo %username%>>send.txt

:username
cls
echo.
echo Type in your username.
echo.
set /p username=Username:
del username.bat
echo set /a Username=%username% >>username.bat



Expand Down