批量 - 表情符号颜色

Batch - Emoji Colors

我正在批量制作一款运动游戏,我需要: 这样一来,其中一个表情符号人会是蓝色的,而另一个表情符号人会是红色的。

我怎么可能那样做?我认为您可以这样做:

set (emoji)=color 04

希望你能理解我。如果您没有得到我需要的,请帮助和提问。


有些人要我的代码:

@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

你可以试试cecho.exe。只需将 .exe 文件放入 Windows 目录 (%Windir%) 即可将其用作普通命令。


用法

cecho.exe {04}text in red{#} text in original color{\n}

{xx} color code
{#}  revert to original color
{\n} newline

您可以了解更多关于此实用程序的信息here(下载link也在里面)