Jump to content

▬ஜ۩۞۩ஜ▬The Soul Society! ▬ஜ۩۞۩ஜ▬


Βyakuya

Recommended Posts

  • Replies 2.2k
  • Created
  • Last Reply

Hah, ten levels will do :D I'll start my scripting now... BTW, This is my fail scripting that always cut off...

 

@echo off

:menu

cls

echo Welcome to the Decision Questionaire. Choose your answers wisely.

echo If you choose wrong, hell awaits you.

echo If you choose right, well, that's impossible so I won't worry about that.

echo No pick what you wanna do you bloody mongrel!

echo 1) Decision Questionaire

echo 2) Exit

set /p letter=

 

if %letter% == 1 goto startgame

if %letter% == 2 goto exit

 

:startgame

cls

echo Level One!

echo Welcome to the questionaire...

echo Enter your name now.

set /p name=

echo Oh I have heard about you, infamous %name%.

echo So what is your life story?

set /p lifestory=

echo Oh come on, I mean, you read this... %lifestory%. Seriously? You expect ME to read..?

echo Oh ok, I read it. Second question. What is your favorite food?

set /p food=

echo I understand, I too have a sickening temptation for %food%. It is very good!

echo Now for another question... Hmm... when is your birthday?

set /p birthday=

echo Whoa whoa whoa, %birthday%? That's my mom's birthday, Mr. Stalkerpants.

echo Ugh, another question to waste my time. What do you like to do?

set /p hobby=

echo I hate %hobby%! Ugh you pitiful soul! Maybe I shall ban you to the pit of despair. Muahaha...

echo Ok %name% I have one more question from round one so I can decide what to do with you...

echo Do you think going green is the right thing to do? (yes/no) lower case only!

set /p yn=

 

if %yn% == yes goto lvl2

if %yn% == no goto HELL

 

:HELL

cls

echo You have gone to hell. The pit of despair is awaiting you. If you wish to get another try at this and change your ways, decide. Would you like another chance? (yes/no) lower case only!

set /p ynny=

 

if %ynny% == yes goto :startgame

if %ynny% == no goto :exit

 

:lvl2

cls

echo Wow, you really made it to Level Two, %name%?

echo I'm shocked, I would have sent you to my hellhounds as lunch. Poor things are starving. But remember, there are many levels.

echo Ok, now for a question. Where do you wish to go? (heaven/hell) lower case only!

set /p heavenhell=

echo Oh, so you want to go to %heavenhell% do you? Maybe I can arrange that... Or vice versa!

echo Ok, now, what is your main goal in life?

set /p maingoal=

echo So your main goal in life is to "%maingoal%"? Interesting, I never would have thought that.

echo Ok, %name%, who do you have a crush on? Hehe... my guilty pleasures...

set /p crush=

echo Ooh, you have the hots for %crush%? Don't worry, your secret is safe with me. Or is it?

echo Ok, one last question for this level...

echo Do you prefer cake or pie? Lower case only!

set /p cakepie=

 

if %cakepie% == cake goto lvl3

if %cakepie% == pie goto :howdareyou

 

:howdareyou

echo How dare you choose pie, that is wrong! Are you sure you like pie? (yes/no) lower case only!

set p/ ynnny=

 

if %ynnny% == yes goto :hell

if %ynnny% == no goto :lvl3

 

:lvl3

cls

echo Wow, you are blasting through these levels, %name%. Sadly, you are not even close to finished you pitiful excuse for a human.

echo Ok, now for a harder question. If you were a famous person, what would you do to change the world?

set /p famousperson=

echo Oh, so... %famousperson%? Hmm... I'll see if I keep you alive long enough to do that.

echo Now, tell me... What type of music do you like?

set /p music=

echo %music%? I don't like music, but that would be my first choice.

echo Oh shoot, you better move on, my hellhonds are hungry!

echo 1)Move on to Level 4

echo 2)Drop out

set /p moveon=

 

if %moveon% == 1 goto lvl4

if %moveon% == 2 goto exit

 

:lvl4

cls

echo Ugh, you're back...

 

 

Btw, I learned this all by myself, no scripting lessons or anything...

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.


×
×
  • Create New...