Ruddboy Olaf 10,628 November 13, 2014 Share November 13, 2014 Objection! Oh,the effects of the Orichalcos are starting early. Link to comment Share on other sites More sharing options...
FortyTwo42 1,287 November 15, 2014 Share November 15, 2014 (edited) OBJECTION! So, uhh... What's going to happen to me? I'd rather hold onto my soul if possible. Edited November 15, 2014 by FortyTwo42 Thanks to Pink for the lovely avatar and W.G.A. for the amazing signature! My OCs: Aero Wind, Shadowhide, Ebony (WIP) Link to comment Share on other sites More sharing options...
SCS 7,508 November 15, 2014 Share November 15, 2014 OBJECTION!One cannot hold something that isn't physical. Link to comment Share on other sites More sharing options...
FortyTwo42 1,287 November 15, 2014 Share November 15, 2014 OBJECTION! I'm the one about to lose a soul here, some help would be vastly preferred to pointing out my contradiction! (To which I apologize for, I actually meant 'keep my soul' but in my panic I phrased it incorrectly) Thanks to Pink for the lovely avatar and W.G.A. for the amazing signature! My OCs: Aero Wind, Shadowhide, Ebony (WIP) Link to comment Share on other sites More sharing options...
Ruddboy Olaf 10,628 November 15, 2014 Share November 15, 2014 Objection! You only lose your soul if you lose this case. The loser loses their soul. Link to comment Share on other sites More sharing options...
Buck Testa 5,505 November 16, 2014 Share November 16, 2014 Objection! You Activated my trap card! http://www.fimfiction.net/user/Billy%20G%20Gruff http://billyggruff.deviantart.com/ https://www.youtube.com/channel/UCPVpSXbUpDYTcaFHTPiPjYA Link to comment Share on other sites More sharing options...
Ruddboy Olaf 10,628 November 16, 2014 Share November 16, 2014 Objection! Traps or Magic cards don't work on my Seal of Orichalcos. Link to comment Share on other sites More sharing options...
Gatekeeper Giggle 2,902 November 16, 2014 Share November 16, 2014 (edited) I don't have a soul to steal! Edited November 16, 2014 by Stormgiggle My OCs: Dividend Yield, Stormgiggle | Ask Me questions! | My Counting Game Jeric, on 25 Sept 2014 - 6:09 PM, said: Any problem that you may experience on this site can be solved immediately if you simply throw Fluttershy into a wood chipper. You can trust me on this, because I'm an administrator. Would I lie? Link to comment Share on other sites More sharing options...
FortyTwo42 1,287 November 17, 2014 Share November 17, 2014 OBJECTION! I've just come to the realization that while I do currently have my soul, I do not care for it, so I wouldn't mind if I gave it away. So please excuse me while I quickly trade it to a demon in exchange for vast power. Thanks to Pink for the lovely avatar and W.G.A. for the amazing signature! My OCs: Aero Wind, Shadowhide, Ebony (WIP) Link to comment Share on other sites More sharing options...
Gatekeeper Giggle 2,902 November 27, 2014 Share November 27, 2014 I lied about not having a soul! My OCs: Dividend Yield, Stormgiggle | Ask Me questions! | My Counting Game Jeric, on 25 Sept 2014 - 6:09 PM, said: Any problem that you may experience on this site can be solved immediately if you simply throw Fluttershy into a wood chipper. You can trust me on this, because I'm an administrator. Would I lie? Link to comment Share on other sites More sharing options...
Galen Selanno 351 November 27, 2014 Share November 27, 2014 (edited) OBJECTION!!! Lots of funny looking code! import java.util.Random; // Gets the random number utility. import java.util.Scanner; // Gets the user input utility. public class GuessingGame { public static void main(String[] args) { // PROGRAM STARTUP! Scanner input = new Scanner(System.in); // This Scanner is what allows the user to make their guesses. Random randomGenerator = new Random(); // This Random creates generator for the correct solution. for (int x = 1; x < 2;) { // This just initiates the game. I don't know why it's necessary. int correctNumber = randomGenerator.nextInt(15); // This int creates the solution. int guessesLeft = 4; // This is the number of guesses you have left. If I set it to 5, it will give you 6. That won't do, will it, now? System.out.println("Try to guess the right number in " + (guessesLeft + 1) + " guesses or less.\nEnter a number:"); // Starting prompt. Enter your number! int userInput = input.nextInt(); // This just waits for the user's input. if this weren't here, the game wouldn't register user input, and it'd be bloody useless. while (userInput != correctNumber && guessesLeft >= 1) { // This begins the loop that tells you you have a bad answer. String howClose = null; // String that tells you how close you are to the correct number. if(Math.abs(correctNumber - userInput) < 15 && Math.abs(correctNumber - userInput) > 12) { // These if statements initialize the howClose String based on how close to the number you are. howClose = "cold."; } else if (Math.abs(correctNumber - userInput) <= 12 && Math.abs(correctNumber - userInput) > 8) { howClose = "cool."; } else if (Math.abs(correctNumber - userInput) <= 8 && Math.abs(correctNumber - userInput) > 4) { howClose = "warm."; } else if (Math.abs(correctNumber - userInput) <= 4 && Math.abs(correctNumber - userInput) >= 1) { howClose = "hot."; } if (userInput > 14) { // If the user's input is too large, tell them to enter something valid. System.out.println("Please enter a valid integer. It must be at least 0 and at most 14"); userInput = input.nextInt(); // This HAS to be here. If it weren't there'd be an infinite loop of "Please enter a valid integer." nextInt() just means "Wait until the next integer input." } else if (guessesLeft > 1) { // if your answer isn't correct: guessesLeft -= 1; // Decrement the guesses left... System.out.println("Sorry, that is incorrect. Try again. Your guess was " + howClose + " You have " + (guessesLeft + 1) + " guesses left."); // Display an "incorrect answer" message... userInput = input.nextInt(); // And wait for the next input. } else if (guessesLeft == 1) { // This is just here to make the computer seem more human. guessesLeft -= 1; System.out.println("Sorry, that is incorrect. Try again. Your guess was " + howClose + " You have 1 guess left."); userInput = input.nextInt(); } } if (userInput == correctNumber) { // If you got the right number... System.out.println("Correct! You got it in " + (5 - guessesLeft) + " guesses!"); // Display the "you win" message with the number of guesses you got it in. } else if (userInput != correctNumber) { // If you didn't get the right number... System.out.println("Sorry, you ran out of guesses. The correct number was " + correctNumber + "."); // Display the "game over" message with the correct number. } } } } P.S. I actually wrote this all myself. It's a guessing game. Edited November 27, 2014 by TheAnonBrony MLP. Home sweet home. I forgot how nice the residents of Equestria could be. Anyone seen The Martian? __ ____ ____ /'\_/`\/\ \ /\ _`\ /\ _`\ /\ \ \ \ \ \ \L\ \ \ \ \L\_\___ _ __ __ __ ___ ___ ____ \ \ \__\ \ \ \ __\ \ ,__/ \ \ _\/ __`\/\`'__\/\ \/\ \ /' __` __`\ /',__\ \ \ \_/\ \ \ \L\ \\ \ \/ \ \ \/\ \L\ \ \ \/ \ \ \_\ \/\ \/\ \/\ \/\__, `\ \ \_\\ \_\ \____/ \ \_\ \ \_\ \____/\ \_\ \ \____/\ \_\ \_\ \_\/\____/ \/_/ \/_/\/___/ \/_/ \/_/\/___/ \/_/ \/___/ \/_/\/_/\/_/\/___/ Link to comment Share on other sites More sharing options...
FortyTwo42 1,287 November 28, 2014 Share November 28, 2014 (edited) OBJECTION! I input '42' into your guessing program at the first instance it asks for user input. Edited November 28, 2014 by FortyTwo42 Thanks to Pink for the lovely avatar and W.G.A. for the amazing signature! My OCs: Aero Wind, Shadowhide, Ebony (WIP) Link to comment Share on other sites More sharing options...
Gatekeeper Giggle 2,902 December 4, 2014 Share December 4, 2014 "Please enter a valid integer. It must be at least 0 and at most 14" My OCs: Dividend Yield, Stormgiggle | Ask Me questions! | My Counting Game Jeric, on 25 Sept 2014 - 6:09 PM, said: Any problem that you may experience on this site can be solved immediately if you simply throw Fluttershy into a wood chipper. You can trust me on this, because I'm an administrator. Would I lie? Link to comment Share on other sites More sharing options...
Samurai Equine 50,752 December 4, 2014 Share December 4, 2014 Objection! I need more information than what was provided! Link to comment Share on other sites More sharing options...
Gatekeeper Giggle 2,902 December 4, 2014 Share December 4, 2014 You were given all the information you needed to figure it out! My OCs: Dividend Yield, Stormgiggle | Ask Me questions! | My Counting Game Jeric, on 25 Sept 2014 - 6:09 PM, said: Any problem that you may experience on this site can be solved immediately if you simply throw Fluttershy into a wood chipper. You can trust me on this, because I'm an administrator. Would I lie? Link to comment Share on other sites More sharing options...
Galen Selanno 351 December 7, 2014 Share December 7, 2014 YOUR OBJECTION WAS TOO SMALL!!!!! MLP. Home sweet home. I forgot how nice the residents of Equestria could be. Anyone seen The Martian? __ ____ ____ /'\_/`\/\ \ /\ _`\ /\ _`\ /\ \ \ \ \ \ \L\ \ \ \ \L\_\___ _ __ __ __ ___ ___ ____ \ \ \__\ \ \ \ __\ \ ,__/ \ \ _\/ __`\/\`'__\/\ \/\ \ /' __` __`\ /',__\ \ \ \_/\ \ \ \L\ \\ \ \/ \ \ \/\ \L\ \ \ \/ \ \ \_\ \/\ \/\ \/\ \/\__, `\ \ \_\\ \_\ \____/ \ \_\ \ \_\ \____/\ \_\ \ \____/\ \_\ \_\ \_\/\____/ \/_/ \/_/\/___/ \/_/ \/_/\/___/ \/_/ \/___/ \/_/\/_/\/_/\/___/ Link to comment Share on other sites More sharing options...
FortyTwo42 1,287 December 7, 2014 Share December 7, 2014 OBJECTION! You stole the image of the user above you! Such petty acts will not be tolerated in this courtroom! Thanks to Pink for the lovely avatar and W.G.A. for the amazing signature! My OCs: Aero Wind, Shadowhide, Ebony (WIP) Link to comment Share on other sites More sharing options...
Snow Frostflame 3,568 December 15, 2014 Share December 15, 2014 oh wait sorry he did..... never mind Link to comment Share on other sites More sharing options...
Galen Selanno 351 December 16, 2014 Share December 16, 2014 OBJECTION!!!!! NOBODY TELLS OFF ANONYMOUS!!!!!! MLP. Home sweet home. I forgot how nice the residents of Equestria could be. Anyone seen The Martian? __ ____ ____ /'\_/`\/\ \ /\ _`\ /\ _`\ /\ \ \ \ \ \ \L\ \ \ \ \L\_\___ _ __ __ __ ___ ___ ____ \ \ \__\ \ \ \ __\ \ ,__/ \ \ _\/ __`\/\`'__\/\ \/\ \ /' __` __`\ /',__\ \ \ \_/\ \ \ \L\ \\ \ \/ \ \ \/\ \L\ \ \ \/ \ \ \_\ \/\ \/\ \/\ \/\__, `\ \ \_\\ \_\ \____/ \ \_\ \ \_\ \____/\ \_\ \ \____/\ \_\ \_\ \_\/\____/ \/_/ \/_/\/___/ \/_/ \/_/\/___/ \/_/ \/___/ \/_/\/_/\/_/\/___/ Link to comment Share on other sites More sharing options...
Snow Frostflame 3,568 December 16, 2014 Share December 16, 2014 one does not tell Saxton Hale what he can and can't do Link to comment Share on other sites More sharing options...
Ruddboy Olaf 10,628 December 16, 2014 Share December 16, 2014 Objection! That looks more like a mix between Sheriff Bronson Stone and Mike Haggar. Link to comment Share on other sites More sharing options...
Snow Frostflame 3,568 December 16, 2014 Share December 16, 2014 Link to comment Share on other sites More sharing options...
Shenron00 366 December 16, 2014 Share December 16, 2014 OBJECTION! These past few posts are irrelevant to this very case! We must get back to the case at hand! Yo! I'm Shenron00, but you can call me “Shen” if you want! Thanks to WheatleyCore for the sig! BTW, yes, I do realize that's Carnage and not Shenron. Link to comment Share on other sites More sharing options...
Snow Frostflame 3,568 December 16, 2014 Share December 16, 2014 everything anyone has posted here has been irrelevant to this case Link to comment Share on other sites More sharing options...
Samurai Equine 50,752 December 16, 2014 Share December 16, 2014 OBJECTION! No one gets to be shirtless here unless they are He-Man! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Join the herd!Sign in
Already have an account? Sign in here.
Sign In Now