Update 50 is now available for testing on the PTS! You can read the latest patch notes here: https://forums.elderscrollsonline.com/en/categories/pts
Maintenance for the week of April 20:
• NA megaservers for patch maintenance – April 20, 3:00AM EDT (7:00 UTC) - 12:00PM EDT (16:00 UTC)
• EU megaservers for patch maintenance – April 20, 7:00 UTC (3:00AM EDT) - 17:00 UTC (12:00PM EDT)

Cyrodiil Golden Vendor

  • idk
    idk
    ✭✭✭✭✭
    ✭✭✭✭✭
    The vendor should not sell the monster sets in best traits. Infused is good. Best traits should come from farming and farming alone. Infused is a good secondary choice for PvE and PvP.
  • IcyDeadPeople
    IcyDeadPeople
    ✭✭✭✭✭
    ✭✭
    The vendor should not sell the monster sets in best traits. Infused is good. Best traits should come from farming and farming alone. Infused is a good secondary choice for PvE and PvP.

    Isn't the point of the Golden vendor for people who don't do PVE to be able to acquire these sets? This is the only way I obtain them, so if a set doesn't appear for sale at the vendor, it sort of doesn't exist for me.

    While impen is in many cases a great PVP trait, sometimes I prefer sturdy for block cost reduction or divines for ganking, or magicka build with shield up constantly.
  • Taleof2Cities
    Taleof2Cities
    ✭✭✭✭✭
    ✭✭✭✭✭
    The vendor should not sell the monster sets in best traits. Infused is good. Best traits should come from farming and farming alone. Infused is a good secondary choice for PvE and PvP.

    Hmmm ...

    For players that PvP only, how do you expect those players to get decent end game gear?

    Monster helms with secondary traits will not be an option for them ... and there's already a very short list of items worth buying with AP.
  • Eleusian
    Eleusian
    ✭✭✭
    The vendor should not sell the monster sets in best traits. Infused is good. Best traits should come from farming and farming alone. Infused is a good secondary choice for PvE and PvP.

    I agree on the helm. Infused is really weak on shoulders , really weak
    PS4 NA
  • Thrasher91604
    Thrasher91604
    ✭✭✭✭✭
    The Golden should offer all sets on a random rotation, so that no item is repeated until all others have been offered. This isn't hard to do. Anyone who has written a card shuffling program knows that.
  • daswahnsinn
    daswahnsinn
    ✭✭✭
    The Golden should offer all sets on a random rotation, so that no item is repeated until all others have been offered. This isn't hard to do. Anyone who has written a card shuffling program knows that.

    Something like this, this been awhile since java'd.

    ublic class Deck52 {

    ////////////////////////////////////////
    // Card Shuffling
    ////////////////////////////////////////

    private Card[] cards; // array holding 52 cards
    private int cardsInDeck; // the current number of cards in the deck

    public static final int DECK_SIZE = 52;

    /**
    * Shuffles the deck (reorders the cards in the deck).
    */
    public void shuffle() {
    int newI;
    Card temp;
    Random randIndex = new Random();

    for (int i = 0; i < cardsInDeck; i++) {

    // pick a random index between 0 and cardsInDeck - 1
    newI = randIndex.nextInt(cardsInDeck);

    // swap cards and cards[newI]
    temp = cards;
    cards = cards[newI];
    cards[newI] = temp;
    }
    }

    }
    | | daswahnsinn | Vet 16 Nord Dragon Knight | Bow/Dual Wield/Two-Handed Sword| DPS | | Warrior of the EbonHeart Pact | |
Sign In or Register to comment.