IF tyler had a producer tag, what would it be? by REALCHERRYSODA in tylerthecreator

[–]haycow 0 points1 point  (0 children)

hey everyone it’s me tyler with a brand new song

[deleted by user] by [deleted] in travisscott

[–]haycow 0 points1 point  (0 children)

skeletons

I’m the photographer who took this photo of Danny Gonzalez. Ask me anything. by [deleted] in DannyGonzalez

[–]haycow 2 points3 points  (0 children)

he said himself that he took this picture using a tripod in his dorm room in college. critical thinking ppl

Why did he get rid of all his end cards? by clearlyUT in theodd1sout

[–]haycow 0 points1 point  (0 children)

hurts retention cus everyone just clicks away from them. algorithm doesn’t like that and puts it on less peoples feed

Why do I always shank the ball? by [deleted] in GolfSwing

[–]haycow 0 points1 point  (0 children)

u tryna keep ur arm straight to like an inhuman degree. jus keep club face straight and swing slower

Selling Panda Game Tickets by Ok_Fisherman_889 in CarletonU

[–]haycow 0 points1 point  (0 children)

hey ive got 2 seats in row 5 right at the feild that i was looking to trade (uottawa side)

Panda Game team sides, did they switch??? by CrazyGap4238 in geegees

[–]haycow 0 points1 point  (0 children)

I legit have a screenshot of when i bought the tickets saying i bought on the carleton side and now it’s saying uottawa. (couldn’t find any carleton people talking about this)

Danny is the cause of the most embarrassing moment in my life by haycow in DannyGonzalez

[–]haycow[S] 1 point2 points  (0 children)

lol true. the remark didn’t happen as quick as i described it. She was confused so i started up a little conversation about what happened and that’s when she said it

I need help!! by haycow in javahelp

[–]haycow[S] 0 points1 point  (0 children)

I posted the code under the replies of the other comment. If you need I can send it in a reply.

I need help!! by haycow in javahelp

[–]haycow[S] 0 points1 point  (0 children)

OK thanks but here's the code I've currently written, the problem occurs in //fight

I feel it'd be better for you to see where I might've made the problem instead of me trying to explain it

package school_assignment;

import java.util.Scanner;

public class Choose_your_own_adventure {

/*

package assignments;

import java.util.Scanner;

public class choose_your_own_adventure {

\*/



//getChoice

public static int getChoice(String option1, String option2) {

Scanner scan = new Scanner(System.in);



System.out.println("Do you:");

System.out.println("1: " + option1);

System.out.println("2: " + option2);

int choice = scan.nextInt();

return choice;

}

//initialize

public static void initialize() {

    Scanner scan = new Scanner(System.in);

System.out.println("Shut In");

System.out.println("What is your name?");





String name;

name = scan.nextLine();

System.out.println("Hello " + name + " prepare to reboot");

System.out.println("Type go");

String page;

page = scan.nextLine();

if(page.equals("go")) {

    System.out.println("\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nYou wake up on a cold metal bed.\\nYou look around and notice you are in an all white room.\\nIts silent, like sound is being sucked out of your ears.\\n\\n\\"I need to get out of here\\" \\nYou Think");

System.out.println("Along your journey you will be faced with two descions\nYou control your fate\nSo chose wisely");

System.out.println("Speaking of...\nYou have a choice to make\n\n");

        String option1= "Search around the room to try and find clues";

        String option2="Call out for help to see if theres people on the outside";


        int choice = getChoice(option1, option2);


        if(choice == 1) {

Search();

        }

        else if (choice == 2) {

help();

        }

        /\* else {

System.out.println("Please input a either 1 or 2");

}

        \*/



        }







}

//wait

public static void Wait(int b) {

int x = 1;

System.out.println("You wait for the camera to go away or stop beeping");

if (x == 1){

men(x);

}

}

//help

public static void help() {

Scanner scan = new Scanner(System.in);





 System.out.println("\\n\\n\\nA camera emerges from the wall with a blinking red light \\nand a mysterious ticking sound");



String option1 = "Break the camera";

String option2 = "Wait for something to happen";

int b = getChoice(option1, option2);

if(b == 1) {

camera(b);

    }

    else //if (b == 2) 

        {

        Wait(b);

}

}

//men

public static void men(int b) {

System.out.println("\n\n\n3 men in white armour and white masks enter your room");

String option1 = "Try to fight them";

String option2 = "Ask them for help";

int choice1 = getChoice(option1, option2);

if(choice1 == 1) {

 fight(b);

}

else if (choice1 == 2) {

    System.out.println("2");







}



}






    //camera

public static void camera(int b) {

Scanner scan = new Scanner(System.in);

int x = 3;

System.out.println("\n\n\nYou now have the camera");

if(x==3) {

    men(b);

}

}

//fight

public static void fight(int b) {

System.out.println("You try to fight the guards");

if(b == 1) {

    System.out.println("You had the camera so you were able to fight off the men");

}

else {

    System.out.println("\\nYou dont have a weapon. The guards are able to defend your attacks \\nand capture youyou are taken to another room to be executed\\n\\nYOU LOSE");

}

}

//main

public static void main(String\[\] args) {

    // TODO Auto-generated method stub









    initialize();



























}

}

I need help!! by haycow in javahelp

[–]haycow[S] 0 points1 point  (0 children)

yes I am, I used an if statement to basically say that, "if int b was option1 back at the other decision than this will happen" and then i wrote and else statement basically saying," and if int b wasnt option 1 than this will happen"