如何在批处理文件中隐藏和取消隐藏特定文本?

时间:2011-11-09 15:30:33

标签: scripting batch-file cmd hide show

我正在制作一款基于生存的小型游戏。

现在我想知道的是如何隐藏特定文字。

这是一个例子。

echo character:

回波。

回声您的饥饿程度是100%的饥饿百分比。

如果变量饥饿= 90,我想表明:“你正在挨饿”,但当它低于一定数量时,我希望它不显示。

我该怎么做?

1 个答案:

答案 0 :(得分:3)

@echo off
SET VARIABLE=2
IF %VARIABLE%==1 echo "this should be shown if the variable is 1"
IF %VARIABLE% GTR 1 echo "this should be shown if the variable is less than 1"
IF %VARIABLE% LSS 1 echo "this should be shown if the variable is greater than 1"