I'm making a sport game in batch and I need: So that one of the emoji people would be blue, and the other emoji people would be red.
How can I possibly do that? I thinks that you can maybe do it like this:
set (emoji)=color 04
I hope you understood me. Please help and ask questions if you don't get what I need.
Some of you were asking for my code:
@echo off
:start
title Sport Game
echo Pick A Team:
echo.
echo 1. Blue
echo 2. Red
set /p start=
if %start%== 1 goto blue
if %start%== 2 goto red
echo Plase give me the number..
pause
goto start
:blue
cls
echo You Are On Blue Team!
pause
:red
cls
echo You Are On Red Team!
pause