Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
I like the idea of the smileys, Really no other things to say besides that positive comment.
the violence is real
Warrior my fav class from rotmg C:
Mkay, topic over CLOSED
I want a cookie smiley :3
(someone make a graphic for me please I'm too bad at making graphics xP)
I got banned on roblox for cussing so I came here ;C (RIP MY ROBLOX ACCOUNT)
This morning I was eating strawberries and this one had a blueish shade on the side. Do you know why it was?
wwho plays it? if you do leave your name below (my name is JJohnC.)
I just went to the barber and got an Odell Beckham Jr, like haircut (Basically a Mohawk Fade / Mohawk Tamper Fade.) And I like it.
What type of hairstyle do you have?
is there going to be one?
gg you found it
What is pokemon lake?
just search up pokemonlake.com
I like it, it is very cool to me (btw my name is OhhhMehGuwd)
Do any of you play Pokemon Lake? If you do whats your name and we could battle or trade.
why don't they make the other classic chrisitmas packs for energy? like the christmas 2012 pack, or the class chrisitmas smileys?
There is 2 Grinches? People are saying that there is 2 Grinches where? btw show me the 2 pics of the grinches if you can, and ty
already suggested
like 1,000 times
1.Say the B word to a girl.
2.Yell at your mom.
3.Stand in front of a train.
4.Yell the N word in the hood.
5.Say Elmo is ghetto.
6.Smoke in front of your mom.
7.Stick a fork in a toaster.
8.Say number 5 is not true.
9.Say you suck to John Cena.
10.Stick a toaster in a fork.
11.Say Donkeys are better than Horses if front of a Horse.
12.Say God is black.
13.Stick the middle finger to yourself.
14.Say #Eslfie instead of #Selfie
15.Smash a Gnome.
16.Say Infinite is not a number.
pls
at least put 'set x=0' at the beginning of label so it doesn't break if you press enter without typing anything and 'goto x' commands at the end of 'section' so it doesn't select first option or whatever, like this::Begin set answer=0 cls echo Mom: Can you go to the store to get some milk please? echo. echo 1)Sure echo 2)No echo. set /p answer=Enter if %answer% == 1 goto Store if %answer% == 2 goto Moms mad goto Begin :Store
also i'm pretty sure labels can't contain space character
ty for letting me know fixed it
@echo off
cls
color 70
echo Welcome to The Story Game!
echo Press any key to play
pause >nul
goto begin
:Begin
set answer=0
cls
echo Mom: Can you go to the store to get some milk please?
echo.
echo 1)Sure
echo 2)No
echo.
set /p answer=Enter:
if %answer% == 1 goto Store
if %answer% == 2 goto Moms mad
goto Begin
:Store
set answer=0
cls
echo You check your pocket, You dropped a dollar! What do you do?
echo.
echo 1)Go look for the Dollar
echo 2)Go back home
echo.
set /p answer=Enter:
if %answer% == 1 goto Look for a Dollar
if %answer% == 2 goto Trouble
goto Store
:Moms mad
set answer=0
cls
echo Then you're grounded!
echo.
echo 1)Quit
echo 2)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto :Begin
goto Moms mad
:Trouble
set answer=0
cls
echo You lost the Dollar?! Then you're grounded!
echo.
echo 1)Quit
echo 2)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto :Begin
goto Trouble
:Look for a Dollar
set answer=0
cls
echo Where do you want to look?
echo.
echo 1)Trash
echo 2)Alley
echo 3)Store
set /p answer=Enter:
if %answer% == 1 goto Trash
if %answer% == 2 goto Alley Way
if %answer% == 3 goto Store2
goto Look for a Dollar
:Trash
set answer=0
cls
echo You look in the trash and find nothing where do you look now?
echo.
echo 1)Alley
echo 2)Store
set /p answer=Enter:
if %answer% == 1 goto Alley Way
if %answer% == 2 goto Store2
goto Trash
:Alley Way
set answer=0
cls
echo You look and the alley and see a group of guys, They shoot you and you die.
echo.
echo 1)Quit
echo 2)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto :Begin
goto Alley Way
:Store2
set answer=0
cls
echo You look around in the store you find your Dollar!
echo.
echo 1)Buy the milk and go home
echo 2)Act like you lost the dollar and go home
set /p answer=Enter:
if %answer% == 1 goto Home
if %answer% == 2 goto Trouble
goto Store2
:Home
set answer=0
cls
echo Mom: Thank you sweetheart by the way your friend knocked you can go play with them now!
echo.
echo 1) Play with your friend
echo 2) Stay inside
set /p answer=Enter:
if %answer% == 1 goto Friend
if %answer% == 2 goto Home2
goto Home
:Home2
set answer=0
cls
echo You: Should I play Xbox or goto sleep?
echo.
echo 1)Play Xbox
echo 2)Goto sleep
set /p answer=Enter:
if %answer% == 1 goto Hours
if %answer% == 2 goto Sleep
goto Home2
:Friend
set answer=0
cls
echo You: Sup.
echo Friend: Hey what are you doing today?
echo.
echo 1)Just going to the park
echo 2)Nothing, wanna go inside and play Xbox?
echo 3)Nothing, Wanna watch ****?
set /p answer=Enter:
if %answer% == 1 goto Park
if %answer% == 2 goto Xbox2
if %answer% == 3 goto nroP
goto Friend
:Hours
cls
echo 3 Hours later
echo Press any key to continue
pause >nul
goto Xbox
:Xbox
set answer=0
cls
echo You: I think thats enough Xbox I think I should goto sleep?
echo.
echo 1)Yes
echo 2)No
set /p answer=Enter:
if %answer% == 1 goto Sleep
if %answer% == 2 goto Choice
goto Xbox
:Sleep
set answer=0
cls
echo You woke up the next morning time for school!
echo.
echo 1)Goto school
echo 2)Act like you're sick
echo 3)Skip school
set /p answer=Enter:
if %answer% == 1 goto School
if %answer% == 2 goto Sick
if %answer% == 3 goto Skip School
goto Sleep
:nroP
set answer=0
cls
echo You and your friend watch **** but got caught by your mom and got grounded!
echo.
echo 1)Quit
echo 2)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto Begin
goto nroP
:Park
set answer=0
cls
echo Friend: Dude I don't think we should.. Theres too many people.
echo.
echo 1)Play Xbox instead
echo 2)Go home and goto sleep
set /p answer=Enter:
if %answer% == 1 goto Xbox2
if %answer% == 2 goto Sleep
goto Park
:Xbox2
cls
echo You and your friend play Xbox then he has to leave so you goto sleep, Press any key to continue.
pause >nul
goto :Sleep
:Skip School
set answer=0
cls
echo You try to skip school but you get caught!
echo.
echo 1)Quit
echo 1)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto Begin
goto Skip School
:School
set answer=0
cls
echo So you goto school but you're late what do you do?
echo.
echo 1)Go home
echo 2)Just get a late pass
set /p answer=Enter:
if %answer% == 1 goto Trouble2
if %answer% == 2 goto School2
goto School
:Sick
set answer=0
cls
echo You act sick but mom said you only stay home if you throw up!
echo.
echo 1)Try to throwup
echo 2)Just goto school
set /p answer=Enter:
if %answer% == 1 goto Bad
if %answer% == 2 goto School
goto Sick
:Bad
cls
echo You try to fake throwup but your mom caught you!
echo Press any key to continue
pause >nul
goto Caught
:Caught
echo Mom: You tried to act sick?! You're grounded!
echo.
echo 1)Quit
echo 2)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto Begin
:Trouble2
set answer=0
cls
echo Mom: You came home because you're late?! grounded!
echo.
echo 1)Quit
echo 2)Restart
set /p answer=Enter:
if %answer% == 1 goto Quit
if %answer% == 2 goto Begin
:School2
set answer=0
cls
echo You goto class and you get ready to choose your breakfest. What do you choose?
echo.
echo 1)Eggs, Bacon, Pancakes.
echo 2)Waffles, Eggs.
echo 3)Pancakes with syrup
echo 4)Fruit Loops
echo 5)Fruity Pebbles
echo 6)Cocoa Pebbles
echo 7)Bagel, Pancakes, Waffles.
echo 8)Pancakes, Waffles.
echo 9)Hashbrown, Bagel, Waffle
echo 10)Waffle, Eggs, Hashbrown.
set /p answer=Enter:
if %answer% == 1 goto School3
if %answer% == 2 goto School3
if %answer% == 3 goto School3
if %answer% == 4 goto School3
if %answer% == 5 goto School3
if %answer% == 6 goto School3
if %answer% == 7 goto School3
if %answer% == 8 goto School3
if %answer% == 9 goto School3
if %answer% == 10 goto School3
:School3
set answer=0
cls
echo So you eat your breakfest and now its time for math. What do you do?
echo.
echo 1)Do your math
echo 2)Don't do your math
echo 3)Walk out of the class
set /p answer=Enter:
if %answer% == 1 goto Math
if %answer% == 2 goto Nomath
if %answer% == 3 goto Outofclass
:Math
set answer=0
cls echo
xxx_ad0lf_xxx
aMaZiNg.BuNNy
added both of urs to the list
mines doesn't mines runs perfectly fine, ftw.
add did_you_think_there_could_be_nothing_worse_than_racism_world?_well_guess_again
lol added your's idc if you say u were messing around, cuz I added your's.
[ Started around 1732677753.2166 - Generated in 0.331 seconds, 10 queries executed - Memory usage: 1.46 MiB (Peak: 1.64 MiB) ]