• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Off-Topic

Status
Not open for further replies.
Level 22
Joined
Sep 24, 2005
Messages
4,821
Hey, look at the request section, someone wants to beat Jad's KB3D lol!

EDIT: Oh it's T&S section, not Requests. lol
 
Level 22
Joined
Sep 24, 2005
Messages
4,821
Aha! I knew you were gay!
@Rheiko, oh nothing, lol xD. So you're now Yuki-onna? I hope you get your "wifu" back :D trololololol
 
Level 18
Joined
Sep 14, 2012
Messages
3,413
Code:
@echo off
set rand=%random%
set max=21
set nbCoupsMax=5
set nbCoups=0
set /a nbMystere=%rand%%%max%
echo ------------- JEU DU PLUS OU MOINS ----------------
echo Vous possedez %nbCoupsMax% essais !
:debut
if /i %nbCoups% equ %nbCoupsMax% goto :loose
set /a nbCoups += 1
set /p y=Entrez votre nombre :
if /i %y% gtr %nbMystere% echo C'est trop grand & goto fin
if /i %y% lss %nbMystere% echo C'est trop petit & goto fin
echo Vous avez gagne en %nbCoups% essais !
pause
exit /b 0
:fin
set /a temp = %nbCoupsMax%-%nbCoups%
echo Il vous reste %temp% essais !
pause
goto debut
:loose
echo Vous avez perdu !
pause
exit /b 0
Text are french sorry xD
 
Level 22
Joined
Sep 24, 2005
Messages
4,821
haha xD Welcome to the world of spaghetti code. It reminds me of the time I tried learning assembly. Those where the days haha XD
 
Level 22
Joined
Sep 24, 2005
Messages
4,821
Oh, so it's more of a prerequisite. I think that's good, assembly is as fast and as confusing you can go. Wait... Binary command ops lol!
 
Level 22
Joined
Sep 24, 2005
Messages
4,821
Try machine language, it's more incomprehensible, at least assembly utilizes mnemonics to dampen the confusing effect. It's mathematics on a different medium haha XD.
 
Status
Not open for further replies.
Top