Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 2706 points

Ryroan

Favorite Answers24%
Answers184
  • Help Me Find This Youtube Video That Spoofed S.T.A.L.K.E.R using Roccobotte's Green Screen Video?

    It involved roccobotte (from mega64) but I don't think it was them that made the video.

    It used this video below.

    http://www.youtube.com/watch?v=W9r3pybkWgw

    And they did something like this

    http://www.youtube.com/watch?v=4P56m9dpfM8

    All I can remember from what happened in the video that I am looking for is the player was walking around in a building but as he walkes by a window he catches a glimpse of roccobotte dancing out the window, he looks back and he is gone, he walks a little more, walks past roccobotte in the stair case, goes back and starts shooting, but he was gone again. The Player then turns around and roccobotte was behind him screaming "ahhhhhhh" then the video ends.

    1 AnswerYouTube8 years ago
  • How do I make facial features smaller in photoshop?

    I want to know how to make something like this (though only a still image)

    http://i.imgur.com/xfd3D.gif

    is there a video or written tutorial somewhere on how I can make facial features smaller?

    1 AnswerDrawing & Illustration8 years ago
  • HDMI to DVI-D PS3 Black Screen?

    I am trying to connect my ps3 to my monitor with a HDMI to DVI-D Cable, but for some reason, when I try to change the output my monitor just stays black. I've made sure I have all the pins on the connectors and I know both the monitor and the cord work since I have used it for dual monitors on my laptop. What's the problem?

    2 AnswersPlayStation8 years ago
  • Java variable may be accessed here before having been definitely assigned a value?

    I have an error with this code and I can't seem too fix it, I know it's something obvious, but I can't seem to figure it out.

    /* Name: Summative

    Author: Ryroan

    Date: January 21st 2013 */

    import javax.swing.*;

    public class Summative

    {

    public static void main (String args[])

    {

    // Mod 1

    String[] okwords = {"Very good!", "Excellent!", "Flawless Victory!", "^_^"};

    String[] wrongwords = {"NOPE", "Try Again", "Fatal Error!", "-_-"};

    // Mod 2

    double acnt = 0.0;

    double okpreper = 0.0;

    // Mod 3 + 4

    int gradeofquestion = 0;

    int value;

    int value2,Answer;

    int value3;

    int value4;

    int counter;

    int input;

    String word;

    String word2;

    String output = "", output1 = "";

    JOptionPane.showMessageDialog (null, "Welcome To ICS3U1 teh Game. Press OK to begin", "ICS3U1... TEH GAME", JOptionPane.QUESTION_MESSAGE);

    for (int counter2 = 1 ; counter2 <= 10 ; counter2++)

    {

    if (gradeofquestion == 0) {

    value = 1 + (int) (Math.random () * 9);

    value2 = 1 + (int) (Math.random () * 9);

    } else

    {

    value = (1 + (int) (Math.random () * 9)) + (1 + (int) (Math.random () * 9)) * 10;

    value2 = (1 + (int) (Math.random () * 9)) + (1 + (int) (Math.random () * 9)) * 10;

    }

    do

    {

    output = value + " X " + value2;

    output1 = JOptionPane.showInputDialog ("What is " + output + "?");

    if (output1.indexOf("+") != (0 - 1)) {

    gradeofquestion = 1;

    }

    Answer = value*value2;

    value3 = 1 + (int) (Math.random() * 4);

    {

    switch(value3)

    {

    case 1:

    word = "Very Good";

    break;

    case 2:

    word = "Excellent";

    break;

    case 3:

    word = "Flawless Victory!";

    break;

    case 4:

    word = "^_^";

    break;

    default:

    break;

    }

    }

    value4 = 1 + (int) (Math.random() * 3);

    {

    switch(value4)

    {

    case 1:

    word2 = "NOPE";

    break;

    case 2:

    word2 = "Try Again";

    break;

    case 3:

    word2 = "Fatal Error!";

    break;

    case 4:

    word2 = "-_-";

    break;

    default:

    break;

    }

    }

    acnt = acnt + 1.0;

    if (input != Answer) { //HERE IS MY ERROR

    JOptionPane.showMessageDialog (null, wrongwords[(int) (Math.random() * 4)], "FAIL", JOptionPane.ERROR_MESSAGE);

    } else {

    okpreper = okpreper + 1.0;

    JOptionPane.showMessageDialog (null, okwords[(int) (Math.random() * 4)], "PASS", JOptionPane.INFORMATION_MESSAGE);

    }

    }

    while (input != Answer);

    }

    System.exit (0);

    }

    }

    2 AnswersProgramming & Design8 years ago
  • Java Code Help Math.Random?

    I have a code I need (I am a school student and before you say figure it out on your own, stop while you can.) and I am Stuck. I need to make 4 modifications to this code and I can't seem to do any of them.

    The I am Attempting to Make:

    /* Name: Math.Random Mods

    Author: Ryroan

    Date: January 21st 2013 */

    import javax.swing.*;

    public class Summative2

    {

    public static void main (String args[])

    {

    int value;

    int value2,Answer;

    int value3;

    int value4;

    int counter;

    int input;

    String word;

    String word2;

    String output = "", output1 = "";

    JOptionPane.showMessageDialog (null, "Welcome. Press OK to begin", "Random Numbers Game", JOptionPane.QUESTION_MESSAGE);

    for (int counter2 = 1 ; counter2 <= 10 ; counter2++)

    {

    value = 1 + (int) (Math.random () * 9);

    value2 = 1 + (int) (Math.random () * 9);

    do

    {

    output = value + " * " + value2;

    output1 = JOptionPane.showInputDialog ("What is " + output + "?");

    input = Integer.parseInt (output1);

    Answer = value*value2;

    value3 = 1 + (int) (Math.random() * 4);

    {

    switch(value3)

    {

    case 1:

    word = "Awesome";

    break;

    case 2:

    word = "Perfect";

    break;

    case 3:

    word = "Flawless";

    break;

    case 4:

    word = "YOU'RE UNSTOPPABLE";

    break;

    default:

    break;

    }

    }

    value4 = 1 + (int) (Math.random() * 3);

    {

    switch(value4)

    {

    case 1:

    word2 = "Try Again";

    break;

    case 2:

    word2 = "Sorry";

    break;

    case 3:

    word2 = "Don't give up.";

    break;

    case 4:

    word2 = "Durrrrrr";

    break;

    default:

    break;

    }

    }

    if (input != Answer)

    JOptionPane.showMessageDialog (null, "NOPE", "FAIL", JOptionPane.ERROR_MESSAGE);

    else

    JOptionPane.showMessageDialog (null, "CORRECT", "PASS", JOptionPane.INFORMATION_MESSAGE);

    }

    while (input != Answer);

    }

    System.exit (0);

    }

    }

    What The Mods need to be:

    Modification #1: Modify the program from assignment 13.Random Numbers so the various comments are printed for each correct answer and each incorrect answer as follows:

    Responses to a correct answer

    Very good!

    Excellent!

    Nice work!

    Keep up the good work!

    Responses to an incorrect answer

    No. Please try again.

    Wrong. Try once more.

    Don’t give up.

    Durrrrrr.

    Use random-number generation to choose a number from 1 to 4 that will be used to select an appropriate response to each answer. Use a switch structure to issue the responses.

    More sophisticated computer-aided instruction systems monitor the student’s performance over a period of time. The decision to begin a new topic is often based on the student’s success with previous topics.

    Modification #2: Modify the program to count the number of correct and incorrect responses typed by the student. After the student types 10 answers, your program should calculate the percentage of correct responses. If the percentage is lower than 75%, print “Please ask your instructor for extra help” and reset the program.

    Modification #3: Modify the program to allow the user to enter a grade-level capability. A grade level of 1 means to use only single-digit numbers in the problems, and a grade level of 2 means to use numbers as large as two digits.

    Modification #4: Modify the program to allow to user to pick the type of arithmetic problems he or she wishes to study. An option of 1 means addition problems only, 2 means subtraction problems only, 3 means multiplication problems only, 4 means division problems only and 5 means to intermix randomly problems of all these types

    All help is very much appreciated.

    3 AnswersProgramming & Design8 years ago
  • Dxtory Can't Detect Any Steam Game?

    I want to record some game footage and I am using Dxtory, but it won't detect any steam game I have. I was told to use a launch code, but it didn't work. What is the problem? The programs are .exe before you ask.

    1 AnswerSoftware8 years ago
  • Anyone Know of a Good Gaming Router That Has a DSL Port?

    I'm looking for a Dual-Band Wireless router that has a good connection (300mbps+) but also has a DSL port so I don't have to get a modem as well, any suggestions?

    3 AnswersComputer Networking8 years ago
  • Why is my Razer Headset Not Lighting Anymore?

    I had bought a Razer SWTOR headset a couple weeks ago, but since the last Synapse 2.0 update the lights stopped working. Is it a coincidence that the lights may have broke at the same time? Is there anything else I can do? I can say that every time I open synapse 2.0 the light settings are always off, even when I set them on to see if it works, the next time I open it, the setting is off.

    3 AnswersVideo & Online Games9 years ago
  • Why are the lights on my SWTOR headset not glowing anymore?

    They've always worked, up until the latest Synapse 2.0 update, so could that be the problem, I know my headphones aren't broken and I have checked to see if the light settings are on, but they always say off and when I set them on they don't glow. what's going on?

    1 AnswerVideo & Online Games9 years ago
  • How can I get virtual cpu/processor cores for AMD Processor?

    I want to play some games and the recommended settings usually ask for 4 cores, I have 2 and I was wondering if I can make/get virtual processor cores for a cpu. I would like 6 (8 if possible) but I don't even know if it will make a difference, either way from what I've been told, it can. But please I would like to know how to get virtual cpu's

    My system specs:

    Operating System: Windows 7 Home Premium 64-bit

    BIOS: InsydeH2O Version V2.04

    Processor: AMD Phenom(tm) II N660 Dual-Core Processor (2 CPUs), ~3.0GHz

    Memory: 3072MB RAM

    Available OS Memory: 2810MB RAM

    DirectX Version: DirectX 11

    Video: AMD Mobility Radeon HD 4250 (NOT A WORD!!!)

    All help is very much appreciated.

    1 AnswerLaptops & Notebooks9 years ago
  • Which Keyboard Should I Get?

    I am trying to decide a keyboard for my game build. I want to know which is better.

    Razer Star Wars The Old Republic Keyboard

    or

    Logitech G19

    I am a big star wars fan though and getting the headset and mouse. but the two keyboards I have been told that the two are better in their own ways. What I want to know is which keyboard has better color changable keys, has a better app for youtube videos on the LCD, which feels more comfortable. All other info on both keyboard would also be much appreciated and please I don't care about the prices unless there is a reason for one to not be so expensive and I don't want any fanboy crap! SO DON'T BE SAYING THIS ONES BETTER BECAUSE I OWN IT OR BECAUSE IT'S BETTER OR THAT BRAND SUCKS!

    2 AnswersVideo & Online Games9 years ago
  • If I delete my battle.net account, Will I be able to use the cd keys on a new account?

    I'm not being hacked or anything, but I'm just curious if I make a new account and delete the old one, will all the CD keys work?

    1 AnswerVideo & Online Games9 years ago
  • Is there a 7.1 speaker system I can buy for my PC?

    I found a speaker system I wanted to buy, but it was deactivated. So is there any other type of speaker system I can buy that has 7.1 Surround Sound and works with the PC?

    1 AnswerPC9 years ago
  • Where can I buy the Creative Inspire P7800 90 Watts 7.1 Speakers?

    I am currently building a new pc gaming rig, and I found these speakers and I can't buy them anywhere because they're all out of stock or deactivated. Is there anywhere I can get these?

    1 AnswerDesktops9 years ago
  • What Is The Better Option, Computer or External Hard Drive?

    I am constantly using my dad's laptop because it's the most powerful computer we own so I use it for gaming. He doesn't like me using up all his hard drive space and I constantly tell him. "If I had My Own Computer (blah blah blah)" and he says "buy your own or get your own hard drive!" so I was wondering, should I get a new computer or a hard drive. I want to build my own computer from scratch and it'll cost about $800. just to keep in mind

    1 AnswerOther - Hardware9 years ago
  • What is the best place to buy computer parts ONLINE?

    Now before you give your answer there are a few conditions.

    It MUST sell BEAST parts!

    It MUST BE ABLE SHIP TO CANADA!

    when I mean beast, I mean powerful, fast and all that jazz.

    1 AnswerOther - Computers9 years ago
  • If I make an iPhone App, can I give it to my friends for free?

    I want to make an iPhone app that you must buy to get, but I want to give it to my family and friends for free. How and Can I do this

    1 AnswerProgramming & Design9 years ago
  • If I make an iPhone App, Can I give it to my friends for free?

    I am wanting to make an iPhone app, but I want to make it one that you have to buy, but is there anyway I can give to certain people like my family and friends for free?

    1 AnswerPDAs & Handhelds9 years ago
  • Would I still have to pay for internet if I had Server Hardware?

    You know how people have to pay for hosting their websites on the internet? Well I was wondering if I would have to pay for internet services (Rogers, Bell, etc.) if I had server hardware.

    2 AnswersOther - Computers9 years ago
  • Would this be copyright infringement?

    I wanted to replicate and sell limited edition playing cards, but only the backs of them and change the front to my own design. Would this be Infringing the owners copyright. FYI the only way to get the originals was to buy a collectors set.

    1 AnswerLaw & Ethics9 years ago