[Batch] Rock Paper and Scissor

Worms

Onyx user!
Reputation
0
Made by me, save it as .bat and run to play Rock Paper and Scissor against the PC.

Hint: Chose one number and hold ENTER to see the probability in action :D

tq8y9G.png


Source Code:
Code:
@echo off
color 0a
title Rock Paper and Scissor
set msg=.
set pp=0
set pc=0
set tot=0
set emp=0
:start
set / emp=%tot%-%nep%
cls
echo.
echo By Worms - www.RuneGear.net
echo.
echo%msg%
echo.
echo Total %tot% - Ties %emp%
echo.
echo Wins %pp% - Loses %pc%
echo.
echo Choose:
echo.
echo 1 [Rock]
echo 2 [Paper]
echo 3 [Scissor]
echo.
set /p pessoa=Number=
echo.
if %pessoa% EQU 1 goto comp
if %pessoa% EQU 2 goto comp
if %pessoa% EQU 3 goto comp
goto start
:comp
set comp=%random%
if %comp% LSS 10922 goto pedra
if %comp% LSS 21844 goto papel
if %comp% LSS 32767 goto tesoura
echo.
:pedra
if %pessoa% EQU 1 goto ep
if %pessoa% EQU 2 goto gp
if %pessoa% EQU 3 goto pp
:gp
set msg= The computer chosen Rock. You Win!
set /a tot=%tot%+1
set /a pp=%pp%+1
goto start
:pp
set msg= The computer chosen Rock. You Lost!
set /a tot=%tot%+1
set /a pc=%pc%+1
goto start
:ep
set msg= The computer chosen Rock. Tie!
set /a tot=%tot%+1
set /a emp=%emp%+1
goto start
:papel
if %pessoa% EQU 1 goto ppp
if %pessoa% EQU 2 goto epp
if %pessoa% EQU 3 goto gpp
:gpp
set msg= The computer chosen Paper. You Win!
set /a tot=%tot%+1
set /a pp=%pp%+1
goto start
:ppp
set msg= The computer chosen Paper. You Lost!
set /a tot=%tot%+1
set /a pc=%pc%+1
goto start
:epp
set msg= The computer chosen Paper. Tie!
set /a tot=%tot%+1
set /a emp=%emp%+1
echo.
goto start
:tesoura
if %pessoa% EQU 1 goto gt
if %pessoa% EQU 2 goto pt
if %pessoa% EQU 3 goto et
:gt
set msg= The computer chosen Scissor. You Win!
set /a tot=%tot%+1
set /a pp=%pp%+1
goto start
:pt
set msg= The computer chosen Scissor. You Lost!
set /a tot=%tot%+1
set /a pc=%pc%+1
goto start
:et
set msg= The computer chosen Scissor. Tie!
set /a tot=%tot%+1
set /a emp=%emp%+1
goto start
 
Worms, you are a lot of fun.

:3

Thanks for this, got something to do at work tomorrow :)
 
Communication said:
Currently pwning the computer.

99 RPSing cape

Nestea said:
Worms, you are a lot of fun.

:3

Thanks for this, got something to do at work tomorrow :)

Lol, you have a lot to learn before you master the holding enter at work skill. ^^
 
Back
Top