1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
maxonik [38]
2 years ago
12

What is the best way of farming exotics in destiny?

Computers and Technology
2 answers:
mamaluj [8]2 years ago
7 0

Answer:

the best way to farm exotics in destiny is talking to xur and playing nightfall all day but play at least on hero or legend difficulty to get exotics faster because it is very common to get them on those difficulties and more higher difficulties.

Explanation:

sleet_krkn [62]2 years ago
3 0
The best way to get exotics is to maximize doing activities which have a higher chance to drop them. Do these things for maximum chance:

- Do all Powerful Rewards on all characters. Every single Powerful reward has a chance to be an exotic instead of the normal reward. So do all your Crucible/Strikes/Gambit/Heroic Story/Heroic Adventure/Flashpoint/etc... - each day that one of these resets, do it again
- Do all Dreaming City activities every week (Ascendant Challenge, Blind Well/Offering to Queen bounties, featured story mission, bounty for 8 daily bounties).
- On Curse Week, do Shattered Throne on all characters
- If you Raid, do the Raid every week on all characters

Once you exhaust all your powerful rewards (I'm sure there are some I forgot to mention), then you are going to be limited to hoping one drops in the Wild as an engram. Focus on activities that have a lot of enemies - the more enemies you kill, the more chance you might see one drop.

Just doing all my powerful rewards this week, I got Trinity Ghoul, Ursa Furiosa, Shards of Galnor, Geomag Stabilizers and Queenbreaker (my luck this week is not typical but if I had not farmed all my powerful rewards, I would have never gotten them)

The easiest way (but probably the most time consuming) is to buy a bunch of vanguard boons from Zavala and use one at the beginning of a strike. Need 2 people in your fireteam. Quit out and repeat until you get your exotic reward pop up.
You might be interested in
Which of the following is a trend that began during the Vietnam War and continued with the Internet?
Blizzard [7]
<span>As far as I remember, this one - a. a move toward stricter control of mass-media communications by Congress and the FCC </span><span>is a trend that began during the Vietnam War and continued with the Internet.</span>
7 0
2 years ago
Suh my lil cuddys.... tell me what ur favorite candy is.....
LenKa [72]

Answer:

ok imma little scared, but my fav candy would have to be reeses peanut butter cups or hershey's with almonds.

8 0
3 years ago
Create a for-loop which simplifies the following code segment: penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25)
kvasek [131]

Answer:

for(var i=0; i<3; i++) {

  penUp();

  moveTo(100,120);

  turnTo(180);

  penDown();

  moveForward(25);

}

Explanation:

The i variable is the loop dummy. The code block will be executed 3 times.

7 0
2 years ago
how can I make a 108KB sound into a 108Mb sound it wont upload if its KB on garageband pls help I'm trying to make a ringtone on
Likurg_2 [28]
Dmjdjdhdndndndjdjdsjsjsnsns
4 0
2 years ago
Read 2 more answers
The purpose of this assignment is to practice with ArrayLists (and hopefully, you'll have some fun). As far as the user knows, p
aleksandrvk [35]

Answer:

See explaination

Explanation:

Program source code

import java.util.Random;

import java.util.Scanner;

import java.io.BufferedReader;

import java.io.FileReader;

import java.io.IOException;

import java.util.ArrayList;

public class hangman {

public static void main(String args[]) {

//ArrayList to store the dictionary

ArrayList<String> dict = new ArrayList<String>();

//to read the dictionary into ArrayList

BufferedReader fileReader;

try {

//change path to your dict file

fileReader = new BufferedReader(new FileReader(

"/Users/username/Downloads/dict.txt"));

String line = fileReader.readLine();

//read line by line into ArrayList

while (line != null) {

dict.add(line);

line = fileReader.readLine();

}

fileReader.close();

} catch (IOException e) {

e.printStackTrace();

}

//OR COMMENT THE ABOVE READING FROM FILE, to test with this 6 words

// dict.add("volvo");

// dict.add("apple");

// dict.add("ball");

// dict.add("cat");

// dict.add("elephant");

// dict.add("zoo");

int RAND_MIN=3,RANDMAX=9;

int maxGuesses = 10;

String chosenWord = "", resWord="";

Boolean isChosen = false;

Random r = new Random();

int randLength = r.nextInt((RANDMAX - RAND_MIN) + 1) + RAND_MIN;

System.out.println("Random length = " + randLength );

for (int i = 0; i < dict.size(); i++) {

if(dict.get(i).length() != randLength)

{

dict.remove(i);

i--;

}

}

//uncomment the println lines below to see the working of the algorithm

Scanner in = new Scanner(System.in);

int guessCounter = maxGuesses;

while(guessCounter>0)

{

System.out.println( "\n\n\nwords left are: and chosen is: " + isChosen);

for (int i = 0; i < dict.size(); i++) {

System.out.println(dict.get(i) );

}

guessCounter--;

System.out.println( "\nEnter a letter:" );

String letter = in.nextLine();

if(isChosen==false){

//delaying choosing random word by removing words based on given letter

int matchCount=0;

for (int i = 0; i < dict.size(); i++) {

if(dict.get(i).indexOf(letter.charAt(0)) != -1)

{

matchCount++;

}

}

if(matchCount!=dict.size())

{

for (int i = 0; i < dict.size(); i++) {

if(dict.get(i).indexOf(letter.charAt(0)) != -1)

{

dict.remove(i);

i--;

}

}

}

//choosing the mystery word if there'll be no words left in ArrayList

else{

chosenWord = dict.get(0);

resWord = chosenWord;

isChosen = true;

chosenWord = chosenWord.replace(letter.charAt(0)+"","");

//System.out.println("remaining word: "+ chosenWord);

if(chosenWord=="")

{

System.out.println( "you've cracked the word: " + chosenWord + " in Guesses:" + (maxGuesses-guessCounter));

return;

}

}

}

//if guessed all letters of chosen word

else{

chosenWord = chosenWord.replace(letter.charAt(0)+"","");

//System.out.println("remaining worrd: "+ chosenWord + " : " + chosenWord.length());

if(chosenWord.length()==0)

{

System.out.println( "you've cracked the word: " + resWord + " in Guesses:" + (maxGuesses-guessCounter));

return;

}

}

}

//if ran out of guesses

System.out.println( "you've ran out of your guesses, the word is: " + resWord);

return;

}

}

3 0
3 years ago
Other questions:
  • Write a program, NumberStatistics.java, that reads an unspecified number of integers. The program ends with the input 0. The pro
    14·1 answer
  • An engine's _______ contains the cylinder block, the cylinders, the piston, the connecting rods, and the crankshaft assemblies.
    9·2 answers
  • The chart shows an example of a study-time survey. Students can use the formula shown in the survey to figure out ways to track
    14·1 answer
  • Helppppppppppppppppppp
    11·1 answer
  • When writing potential test questions, it is very important to use vocabulary words in their correct form. Please select the bes
    11·2 answers
  • In Microsoft Word you can access the _______ command from the "Mini toolbar
    11·1 answer
  • Each object that is created from a class is called a(n) ____________ of the class.
    5·2 answers
  • Create an application containing an array that stores eight integers. The application should call five methods that in turn (1)
    7·1 answer
  • Unconformities develop when new sedimentary layers accumulate atop old, eroded layers, resulting in a geologic hiatus. Which of
    9·1 answer
  • A system is being developed to help pet owners locate lost pets. Which of the following best describes a system that uses crowds
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!