#wow-help

1 messages · Page 252 of 1

fair pier
#

And when you go to the vendor and look at goods you can sell things at that time

uneven fog
fair pier
#

Where are you? Lol

uneven fog
#

Trade winds market

fair pier
#

Well you can sell things there

#

But there’s no auction unless you see a long boi Dino

uneven fog
#

Can I ask what is AH ?

fair pier
#

Auction house

vocal dragon
#

How do I get to suramar in broken isles

#

Nvm I’m slow

mellow flower
#

so i think the game is broken? lol
my wife has a horde toon on a different server. yet even when we not in party and relog, we still see eachother in the world. we were trying to phase me into her realm to search for a pet to tame, but its acting as if we are on the same server even though we arent
anyone know what is going on?
neither one of us got phased, yet we can see eachother from our native realms. seems like its bugged?

fair pier
#

Are they shared servers?

mellow flower
#

nope

#

they arent in a server cluster

#

im on azuremyst and shes on raven something

#

Azuremyst is a connected realm in the North American region for retail World of Warcraft. This server is connected to Dawnbringer, Madoran, and Staghelm.

#

shes on ravencrest, so i should be able to phase into her realm but its acting like we already on the same native realm

#

@fair pier

#

i left party and we both logged out and logged in, and could see eachother instantly upon logging in while not in party

fathom ingot
#

Are yall in game friends?

mellow flower
#

yes

fathom ingot
#

I mean it's probably because of that

#

There are times you will meet people not in your realm, most obviously pvp and instanced stuff like dungeons and raids

mellow flower
#

we are in highmountain zone, not in pvp or a dungeon/raid

fathom ingot
#

I know but I assume being friends is just another one of those cases

#

I was friends with someone from Moonguard and I could see them although it's not part of the realm I'm in

#

It would make sense as it would be kinda awkward to force server changes so that you could see your friend

mellow flower
#

we removed eachother as friends, both relogged, and its still doing the same thing. we see eachother in the open world even when not in party

jolly tree
#

War mode would increase that possibility

neon cedar
#

there seems to be certain tendencies for realms to share shards without being connected

#

Firetree and Draka seem to shard together most of the time - they are both in the LA datacenter

#

as an example

low oak
#

Enhancement shaman -- can we put 5 totems immediately one button click ?

keen pewter
#

If they're not on the GCD yeah

low oak
#

GCD ?

keen pewter
#

Global CoolDown

low oak
#

good, how to do that ?

fast chasm
fair pier
#

Kill it's kids

#

They'll be walking around that area, I think it works that way

#

Otherwise, use the group finder

cobalt flint
#

[Elune's Blessing]

forest lilyBOT
cobalt flint
#

@fast chasm I don't remember, but I would read the comments on Wowhead first. Just go to the page linked above, scroll down, and select the comments tab.

fast chasm
#

ok tyty

fervent venture
#

What do all the reven/maldraxxus 2x4 groups in LFG mean?

keen pewter
violet cairn
#

Lookin for some macro help. I'm trying to utilize the following in a Healthstone/Soulwell macro
group - true if you are currently in a group. Can be specialized to [group:party] or [group:raid]
But I'm at a loss on how to only say to Party with [group:party] or Raid with [group:raid] that I'm dropping a cookie jar, but without doing both.

keen pewter
#

Uh, what do you wanna do sorry?

#

Post what you have

#

@violet cairn

violet cairn
#

#showtooltip
/cast [group] Create Soulwell
/cast Create Healthstone

Is what I have right now.

What I want is to add a line [group:party] /p Cookie jar coming up!
and another line [group:raid] /ra Cookie jar coming up!

forest lilyBOT
violet cairn
#

So when I'm in group, it's not doing BOTH raid and group.

#

And, of course, when I'm by myself, it just casts my healthstone for myself, and doesn't spam anything :B

forest lilyBOT
violet cairn
#

But I suddenly realized I'm not sure how to make the group and raid lines only activate when I'm in a group or raid.

neon cedar
#

i think that would take code (/run)

keen pewter
#

/cast [group:party] Create Soulwell; [group:raid] Create Soulwell; Create Soulwell

#

you probs do need a run to send messages on chat with conditional though

violet cairn
#

Well, I got the cast part down already. If I'm in a group of any type, just using the [group] conditional works. Party or Raid, doesn't matter.

forest lilyBOT
keen pewter
#

/run SendChatMessage("WTS "..(select(2,GetItemInfo(ID))).." -I craft engineering mounts too. PST me with offers","channel",nil,GetChannelName("Trade - City")) for example

violet cairn
#

Bleh on needing a /run line for the chat conditionals.

keen pewter
#

yeah conditionals on run....

violet cairn
#

Oof.... that's WAY above my paygrade

keen pewter
#

well, not really

#

you can make them easier this is just some old macro

#

Though honestly

#

just do /i

#

since it defaults to whatever you're, if party party if raid raid

#
/i Droping cookies```
#

Alone, it will just not do the /i cuz there's no party, instance or raid chat

#

Try this?

#

it's a bit old but

violet cairn
#

o.o /i ? Ohhh right. instance! I forgot that reverts to the highest available channel.

#

I really wish I could read that code better. It looks like you could pull some wicked macros off of it.

keen pewter
#

yeah.

#

But yeah /i is the easy way, if you don't mind the warning (pic) on chat

#

the run local whatever is the complicated way

violet cairn
#

There's no way to simply end the /run if (GetNumPartyMembers() = 0)... is there.

keen pewter
#

¯_(ツ)_/¯

#

I don't use those kind of scripts I'm sorry

violet cairn
#

That would be ideal. 0 party members = alone = end without further processing.

keen pewter
#

The more I've ever used is profession advertisement, to link items on chat on macro

#

Well, if you're alone it shouldn't do anything per se I think

violet cairn
#

Oh? tries that

#

Doesn't seem to work.

keen pewter
#

oh well.

violet cairn
#

#showtooltip Create Healthstone
/run local C; if (GetNumPartyMembers() > 0) then C="PARTY"; elseif (GetNumRaidMembers() > 0) then C="RAID"; end SendChatMessage("Cookie Jar coming up!",C);
/cast [group] Create Soulwell
/cast Create Healthstone

forest lilyBOT
violet cairn
#

Wowhead bot seems to not like one of my words :B

keen pewter
#

yeah the bot is annoying x-D

violet cairn
#

Oh well. Thanks for trying :3

keen pewter
#
/script [group] SendChatMessage("Cookie Jar coming up!","Instance" );```
forest lilyBOT
keen pewter
#

I don't assume this works does it?

keen pewter
#

right

neon cedar
#

with /script [group] print("test")

forest lilyBOT
lapis sluice
#

hey any idea why I cant see the sephuz legendary at the honor vendor? Im a fresh 60 (renown 12), do I need to meet any requirements to see the legendary?

vocal dragon
#

Is the court of stars only heroic and mythic

#

It won’t let me run it on normal

keen pewter
#

Mythic only dungeon, just like The Arcway.

vocal dragon
#

That’s weird I’ve been running it on heroic?

keen pewter
#

¯_(ツ)_/¯

#

maybe it's also heroic now

vocal dragon
#

So I was trying to farm shoulders that come from the dungeon, I wanted the purple one but I got the red ones from heroic, would mythic have the purple ones?

#

Doesn’t specify in game

keen pewter
#

let me check. What shoulders? Leather, plate, cloth?

vocal dragon
#

The “Amice of the unfurling tempest” it says I got the heroic recolour so would the normal one be from mythic cuz it’s the only other difficulty?

fair pier
#

try the LFR

#

Go to Dalaran above Broken Shore and talk to the guy near violet hold

#

seems most purple colorations are on LFR

#

Wait no, that's a dungeon so that wouldnt work

keen pewter
fair pier
vocal dragon
#

Are those all the exact same?

fair pier
#

Yes

keen pewter
#

Yes

fair pier
#

So you have options

vocal dragon
#

They can all be used on every race and class?

fair pier
#

uh cloth users

vocal dragon
#

Well yeah

keen pewter
#

Like, so exact they reward the exact same appearance Identifier. It just has different source

vocal dragon
#

Ok I’ll check which one is easiest to get

#

I’m trying to get it tonight hopefully no mythic

fair pier
#

If you ever need that in the future, find an item you like then click this on wowhead

vocal dragon
#

Ok

fair pier
#

This is actually, likely, the easiest way to get it from what Im seeing

keen pewter
#

relinquished, sounds like broken shore grind

vocal dragon
#

Those aren’t on the list?

fair pier
#

You can get currency so fast now if youre the right level

#

You get a 'token' and use it to make the shoulder

#

"use to make an item of your gear class' kinda thing

vocal dragon
#

I’m kinda confused, I farm to get a token then I just buy the shoulders?

lapis sluice
#

hey any idea why I cant see the sephuz legendary at the honor vendor? Im a fresh 60 (renown 12), do I need to meet any requirements to see the legendary please?

fair pier
#

No the token ARE the shoulders, it'll tell you to click on it then it becomes that item

#

like example the 'click the clam!" then it becomes clam meat

vocal dragon
#

So the token can like create any different piece?

fair pier
#

Its easy to get broken shore currency if you are lvl45 or higher
No, it only makes the one for your class, but Im unsure if it will make a different item aside from the one shown above. I got them on my warlock first try

vocal dragon
#

Ok I’m lvl 60 ig I’ll just go get the currency and get the relinquished spaulders

fair pier
#

I hope that works out, otherwise its RNG from drops

vocal dragon
#

I hope so aswell hopefully this token thing doesn’t take long I’ve already wasted time farming the wrong difficulty

fair pier
#

650 isnt a lot

#

theyre on the vindicar, so if you dont have that then...dont bother

vocal dragon
#

Idk what the vindicar is

#

I’ve only been playing for a month probably don’t have whatever that is

fair pier
#

Oh well, nevermind on that strategy

vocal dragon
#

I’ll farm anything as long as I don’t have to wait a stupid 1 week timer

pallid fulcrum
#

Hi, Im trying to get the duelers tabard and WoWHead says that I need to win 50 duels in the duelers guild and I just looked up the achievement (Dueling Master) but I can't find it. Does that mean that I can't get the Tabard anymore?

vocal dragon
low folio
#

yo im still decently new to wow and am trying to setup a macro to use avenging wrath final reckoning and execution sentance but it only seems to be using avenging wrath

/cast avenging wrath
/cast [@target] Final Reckoning
/cast execution sentence
``` is what i have setup how would i fix it to make it work?
forest lilyBOT
keen pewter
#

Are they outside the global cooldown?

cobalt flint
#

[avenging wrath][final reckoning][execution sentence]

forest lilyBOT
cobalt flint
pallid fulcrum
#

In case it went down I'll ask again: Hi, Im trying to get the duelers tabard and WoWHead says that I need to win 50 duels in the duelers guild and I just looked up the achievement (Dueling Master) but I can't find it. Does that mean that I can't get the Tabard anymore?

pure niche
#

can someone help me show what quests to do to unlock nightborne allied race?

#

i already did "nightfallen but not forgotten" quests but need to finish "insurrection"

#

but i dont know how to start insurrection questline

fleet ocean
#

pretty sure you have to do some of the stuff ''good suramaritan'' too

pure niche
#

ahh now i see

#

a change of seasons quest is in that questline

#

ty actually haha

#

already did first part its the 6th

#

but i did "an ancient gift" already what quest is next? the faladin guy only gives me reputation quest but that thing is removed right

cobalt flint
#

@pure niche There are a couple of things required for Good Sumaratinan that you don't actually need to do to unlock the allied race, but pretty much everything involving Nightborne in Shal'aran and whatever they want you to do is mandatory.

cobalt flint
fathom ingot
#

and reveal the spoiler in it

pure niche
#

ok t

#

ty

prisma schooner
#

does anyone know why i cant talk to warbrave oro?

cobalt flint
prisma schooner
#

nvm

prisma schooner
#

anoyne know what i am supposed to the at the quest the path of huln?

forest lilyBOT
prisma schooner
#

thx mate

cobalt flint
half eagle
#

can i still learn gnomish or goblin engineering or have they been somehow merged?

cobalt flint
half eagle
#

it's weird, not much information to find about them and it seems that the most important goblin glider kit can be build by "normal" engineers

cobalt flint
#

They are not used in new recipes. Just some stuff from older expansions.

half eagle
#

okay, so i can make my choice on the recipes that are out there

#

k, thanks guys ❤️

cobalt flint
#

[Geosynchronous World Spinner][Depleted Kyparium Rocket]

forest lilyBOT
cobalt flint
#

Probably the last items that require a specialization to make. Adden in MoP.

half eagle
#

okay, they look both awkward and cool, so that's not what i'll base my choice on. but thanks a lot for the addition

low oak
#

only 1 Imp a demonology warlock can sommon ?

cobalt flint
#

Don't they have ability that drop a meteor-like thing from the sky and spawns some temporary imps?

fervent sphinx
#

AmazeDI, I always thought that was odd as well.

foggy whale
#

Hand of Gul’dan summons more imps per shard used

hidden pasture
#

Is there an item or consumable that extend other buffs duration?

narrow knot
#

I collected a bunch of these items, atm 7, just to see how much gold i can make out of 10, its in German but i hope u can see what i mean on the Alliance Side. Yesterday i transferred my Account to the Horde and now i cant open them anymore. I click on them and the went gray and cant do anything more with them. It is because i got these things on Alliance and now that i got to the Horde i cant open them? 🙄

half eagle
narrow knot
#

@half eagle yes these are the bags that you get from the daily missions from ur covenant. Yeah i got the same covenant, only changed my character from Alliance to Horde

half eagle
narrow knot
#

@half eagle okey then i will wait with my daily today until tomorrow and try it, thank you! 😊

cosmic scarab
#

can i equip 2 different darkmoon decks or can you only have one deck at a time?

fathom ingot
#

You probably can but it's also probably highly not recommended

cosmic scarab
#

i just need 2 item levels to start lfr

fathom ingot
#

A darkmoon deck is ilvl200

cosmic scarab
#

i know

fathom ingot
#

I don't think your trinket is that high of an ilvl to not be a +2 upgrade

#

what levels are they?

cosmic scarab
#

132

fathom ingot
#

replacing one is definitely enough

cosmic scarab
#

and i have one deck already

fathom ingot
#

i think buying any other trinket would work

#

another darkmoon would just be overkill and a waste of gold

#

even a pvp trinket should be sufficient

cosmic scarab
#

o shoot i forgot about pvp gear lol

tight elbow
#

Why aren't you doing dungeons?

fathom ingot
#

I guess he wants the gear fast

tight elbow
#

Normal drops 154, heroic drops 171, mythic drops 184

half eagle
#

can someone help me with a macro?

/cast Aspect of the Cheetah
/use 6```
this is what i got, use 6 triggers the Nitro Boost engineer belt tinker.
the macro right now triggers both spells which is overkill, i want to have a variable which only triggers cheetah and if cheetah is currently on cooldown triggers nitro. is that possible? if so, what is the command?
cosmic scarab
#

i have been but havent been getting upgrades and i really wanna start lfr

fathom ingot
#

PvP or straight up buying would be the quickest way atm

foggy whale
#

Or world quest gear maybe

tight elbow
#

Slower, more methodical is much better than quick and rushed

fathom ingot
#
#showtooltip
/cast Aspect of the Cheetah
/use 6

@half eagle Please use triple backticks to surround code

#

just a readibility thing

#

those are commas bro

#

backticks

half eagle
#

lol

fathom ingot
#

on separate lines...

#

you are looking at the screenshot right??

#

also I dont think it's possible to do something like that

#

I dont get why you just have both buttons on your action bar

#

and use cheetah and nitro separately

half eagle
#

well, i'd like to use it that way and it makes perfect sense to me that way. i just wonder if i can make a macro for that

fathom ingot
#

Afaik, there's no option to do so

idle thistle
#

does anyone have a up to date tsm guide??? following a tsm4 guide which is outdated and i can't setup opperations correctly

half eagle
#

weird that accent grave is called backtick in english, i bet most english speakers don't even know what it is

stray patio
#

Does anyone know what this mount is

fathom ingot
#

Idk immediately but if you select the character, the name of the mount should be seen on the buff he has

fathom ingot
half eagle
fathom ingot
#

[shadowblade's murderous omen]

forest lilyBOT
fathom ingot
#

sure looks like it

half eagle
#

wow mount dark black raven that's what i googled to find it by the way @stray patio

vocal dragon
#

Can I still do the broken shores thing to get a token if I don’t have the vindicator

foggy whale
#

M+ probably better unless you know raid mechanics

half eagle
#

you have to learn mechanics for both M+ and raid. icy veins leveling guides are very good imo.

#

it's easy to find groups for M+ and raids. i assume you are dps, so leveling your own M+ keys will be hard. there is nothing that prevents you from doing raids and M+ by the way, that's what most do and that's what gives you more options in the weekly vault. M+ will likely be your go to choice way later when you are above ilvl 207 if you don't have a raid group

polar wasp
#

"Its easy to find groups"
True
"Its easy to find actually competent groups that dont have LFR rejects"
Is not true

half eagle
#

it's easy to find group for normal level content. that goes for M+ and raids. to find groups for higher level content is based on how good the individual seems to be according to meta data like raid.io

polar wasp
half eagle
#

you will also accomplish nothing if you are the leader and can't handle the content and don't know what you are doing. but if that's the only option for some people, then they have to do what they have to do i guess.

foggy whale
#

had a boosted 1400 io boomy in my heroic nathria pug last night lol homie was ass garbage

half eagle
#

it really doesn't matter.

fathom ingot
foggy whale
#

I wasn't the one who looked it up but his parses were bad

half eagle
#

there will be many more balance changes up in the next couple months which you can't forsee, so if you think you need to chose covenant x over covenant y to have a 0.2% dps increase this might get completely reversed in the future

foggy whale
#

what class are you playing?

#

this may determine if one is straight up better for everything or if you can be more flexible

half eagle
#

yeah, i'd recommend to check the covenant pages on wowhead and then make your choice. also take into account if you intend to play another char later and if both have the same covenant as their assumed "best choice", then you might want to chose the 2nd best choice to not play the same covenant twice

foggy whale
#

because some classes having their cov ability is damn near necessary

#

Yeah, now that i have done kyrian and night fae I will not be touching those covenants again

#

venthyr time 8)

half eagle
#

i chose night fae for my hunter which is obviously the "correct" choice, but now i'm leveling a mage and i wish i had kyrian for my hunter, because night fae is also kind of a must for fire mages...but next in like is a paladin...it's a trap. just don't chose any covenant and there will be no regrats

#

aw, no gifs

misty hare
#

I notice in lfg there's proving grounds, is there any reason to still do them?

idle thistle
#

does anyone have a up to date tsm guide??? following a tsm4 guide which is outdated and i can't setup opperations correctly

tight elbow
hidden pasture
#

Can i do the magisters' terrace multiple times per day? I'm trying to drop the Orb of the Sin'dorei but everytime I enter it's all done already

tight elbow
#

Did you reset instances?

hidden pasture
#

n o p e. Thank you.

tight elbow
#

No problem

hidden pasture
#

oh, if you're still here, do you know why i can't create any class trials? I have the sub and tried some classes, but I can't create them anymore :c

tight ivy
#

can noob questions be asked here?

#

getting back into wow after a few years

hidden pasture
#

I ask them all the time, I think you can do it

tight ivy
#

im lvl 46 and been leveling in draneor...i've done all quest and im stuck at 46. i have no idea where to go

#

last time i played wow it was only eastern kingdom and kalimdor lol

hidden pasture
#

ohh, you have a lot of things to do, maybe Legion, Cataclysm, Pandaria

#

Or BfA

tight ivy
#

so go talk to chromie and do one of those expansions?

hidden pasture
#

I think you can do it right away

tight ivy
#

im trying to get to zandalaar to check it out but i cant even use portal in orgg idk y

pallid fulcrum
#

hey guys , i have a question maybe you know the answer : im currently night fae and i talk to the npc to rejoin venthyr and i got the quest called proove your worth and i abandoned the quest . The question is am i still night fae or not?

hidden pasture
#

There is a starting quest in org to start the bfa story

#

Maybe you need to do it

tight ivy
#

i did it already @hidden pasture

hidden pasture
#

I'm level 30 and still in Classic, so I really don't know

#

d a m n

tight elbow
tight ivy
#

no

#

@tight elbow

tight elbow
#

Then you should have been doing bfa

tight ivy
#

when u say do bfa do u mean talk to chromie and do it that way? because i did a quest line for bfa i believe

#

where u start by going thru the dark portal

#

i actually just got to zandalar and found some quest that give decent xp finallly...i appreciate eeveryones help

tight elbow
#

No

tight elbow
#

You should have gone from exiles reach, straight into bfa

tight elbow
magic horizon
#

If i wanted a [nochanneling:Essence Font] into this macro, where would it go? (i cant figure it out)

#showtooltip
/use [@mouseover,help][@player]Renewing Mist

forest lilyBOT
sick wind
#

Question about wow purchases?

fathom ingot
#

well ask it @sick wind

sick wind
#

Haven't played for a hot minute. Do i need to buy each expansion separately?

fathom ingot
#

@bold oyster War mode off is best

#

unless you're sure you're not going to waste time being ganked

sick wind
#

Not getting straight answers online, if it sounds like a stupid question lol

fathom ingot
#

@sick wind Uh I think just buying BFA and Shadowlands should work

#

BFA should include itself and every expansion before it

#

Shadowlands is just by itself I believe

#

That's how I bought the game at least

sick wind
#

Thanks! I wasn't sure if It did, and wanted to make sure

fathom ingot
#

I mean unless you're in some super dominated server like area52 or proudmoore

#

I think having wm on is a waste of time if you don't have pvp gear

#

If your goal is leveling to 50 or 60, I would recommend keeping wm off unless you got a group with you or something

#

Well I mean the horde will be in alliance territory and vice versa for the war campaigns they have so it's still gonna be painful

tight elbow
tight elbow
#

No problem

fathom ingot
#

Thats great news then

#

Others told me that even with SL, you'd have to buy both

#

Not necessarily... I mean you could argue that dps specs could fare well, if you get caught by multiple people, it's probably over for you

tight elbow
#

Whoever told you that, was either stupid or a dick

#

Probably both

fathom ingot
#

Eh I'll lean towards stupid

neon cedar
#

or there was a miscommunication / misunderstanding

#

until pre-patch we couldn't clearly say whether it was a one-time reset or a recurring thing per expansion

#

now with it happening twice we can assume the latter

balmy ibex
#

I have a silly noob question. What is the explosion icon above the Training Dummy, when I'm in combat? and is there a way to disable it.

keen pewter
#

That's probably one of rogue's procs

balmy ibex
#

oic, i've only played one toon, sounds like it. Thanks!

#

That makes sense. I have always used WAs for that

vocal dragon
#

Am I able to farm rare enemies by just resetting or are they on a timer

#

I need to farm this thing it has like a 0.6 and 0.3 drop chance for gloves and the head piece i need

cobalt flint
#

What's the name of this thing?

vocal dragon
#

Lemme check rq

#

Amber claw

#

Glrglrr’s mount

cobalt flint
vocal dragon
#

Honestly I have no idea I’m kinda new, I was just talking about resetting its spawn timer if it has one so I can keep killing it

#

Idk how it works it just has 2 items I need

fathom ingot
#

Rare enemies respawn on a timer

#

actually most enemies in the open world do

cobalt flint
#

I don't know exactly how Darkshore rare mobs work specifically, but there are basically two types of rares in the game. Some respawn fairly quickly and always give you their items on the first kill, but only once. Others drop random loot chosen from their loot pool, but have longer spawn timers. The spawn timer of the latter type is not meant to be easily abused, but sometimes people find a way to trick the system.

fathom ingot
#

[Glrglrr's mount]

forest lilyBOT
fathom ingot
#

List of the Darkshore rares introduced with 8.1. Their drops are not guaranteed and can be looted once per Warfront cycle

vocal dragon
#

Yeah amber claw has like a 0.6% to drop the head piece I want and 0.3% for my gloves

fathom ingot
#

I guess if you looted them already, you're gonna have to wait for the next cycle

#

You going for transmog?

vocal dragon
#

How long is a cycle

#

Yeah

fathom ingot
#

I have no idea how long a warfront cycle is

#

Have you checked the auction house?

vocal dragon
#

I haven’t

cobalt flint
fathom ingot
#

Ah

#

Those are two quest items it seems tho

#

[plaguebringer's gloves]

forest lilyBOT
fathom ingot
#

Oh nvm

vocal dragon
#

Quest drops a box that has a chance to drop the gloves I think idk

cobalt flint
#

You don't need to farm Amberclaw specifically, it seems.

fathom ingot
#

It's a 19 day cycle by the way @vocal dragon

#

So uh you probably should go kill the other mobs that drop it

vocal dragon
#

😳kinda long ngl

fathom ingot
#

Each Warfront is on roughly a 19 day cycle, dependent on how long contributions take, which is roughly 5 days each time

vocal dragon
#

So it can’t be in the auction house?

fathom ingot
#

Probably not yeah

#

you could always check to be absolutely sure

vocal dragon
#

Ok

#

Might just go for easier items

pallid fulcrum
#

Guys, what's the use of an Artifact relic (Life, Frost, Fire...etc) ?

keen pewter
#

That's for Legion artifact weapons

pallid fulcrum
#

ok

toxic beacon
#

can someone help me with something?

fathom ingot
#

Just ask away broski @toxic beacon

balmy ibex
#

Not sure if this is a bug or not, but in combat my action bar changes to the stealth action bar and I'm not able to press those keybinds. It's happen quite a lot.

#

I'm trying to figure out if it's something I'm doing, an addon or something else.

#

ignore my previous msgs. I'm going to end up copying what I have in non-stealth to my stealth action bar. that will fix the issue

vocal dragon
#

Anyone know where the western plague lands are in mists of pandaria

keen pewter
#

yeah, not there xD

#

Western Plaguelands is from the old world, not from an expansion

vocal dragon
#

How do I get there, I need to do the schoolamance dungeon

fair pier
#

Get back to Stormwind first

keen pewter
#

"need" it's a funny word

vocal dragon
#

Well yeah 😂

#

Time to find storm wind

keen pewter
#

Go to orgrimmar dude

vocal dragon
#

I’m there

keen pewter
#

and take the zepelin to Grom'gol

#

Or the tp to Twilight Highlands, which I guess is closer to Western Plaguelands

vocal dragon
#

Where is the tp

#

It’s not in the reg room

keen pewter
#

it's on the north

vocal dragon
#

Ok

keen pewter
vocal dragon
#

I’m at twilight high lands

#

Found it

mellow flower
#

the achievements for unique battle pets, how do you tell whats a unique one?
does it mean pets with unique skill sets?

keen pewter
#

^

smoky beacon
#

If I choose Threads on a character, would a friend who doesn't have access to it be able to do party sync or anything like that with me, to allow me to quest with them whenever they're online?

#

Or would it completely lock me out of being able to play with them until they hit 60?

keen pewter
tribal flare
#

im currently trying to unlock zandalari trolls i cant talk to the panda u are supposed to talk too, how do i do it

#

i cant fiqure it out pls help

#

idk

#

trying to fiqure it out

smoky beacon
keen pewter
#

Dungeons 🤷‍♂️

tribal flare
#

i cant talk to the panda in orgrimmar which u are supposed to do

#

pls help

keen pewter
#

dunno how to help mate

#

you're probably missing something

tribal flare
#

what could that be?

#

a quest in orgrimmar or no?

keen pewter
#

¯_(ツ)_/¯

low oak
#

In this video i present to you a complete guide on the Tides of Vengeance Achievement in World of Warcraft for the Horde Side. This is one of the Achievements needed to Unlock the Zandalari Trolls, Once you have Completed Zandalari Forever, Ready for War and Tides of Vengeance you will then be able to do the quest to unlock the Zandalari Troll...

▶ Play video
tribal flare
#

Is the achivement the problem?

low oak
#

it has some sequence of trivial quests

#

you can use the video to unlock "zandalari trolls"

tribal flare
#

So i dont need to talk to the panda in orgrimmar?

low oak
#

there are some changes done to the game by 2019 and 2020

keen pewter
tribal flare
#

i dont get the website

#

where does it say what i have to do or talk too?

#

should i find Queen Talanji and talk to her?

cobalt flint
#

@tribal flare First you need to do some achievements. Click the Zandalari flag behind the Pandaren to see what you are missing.

#

Some might not display as obtained if you got them on Alliance. But once you reach level 50, these should be checked correctly.

tribal flare
#

Ahould i do every single quest in zaldalari?

#

But not the world quest?

#

@cobalt flint

low oak
#

all three parts must get completed

cobalt flint
low oak
#

yes, all three parts

tribal flare
#

im currrently doing every single quest after the darkshore

#

is that right?

#

or is that wrong?

#

@low oak

cobalt flint
#

I don't think you need to do Darkshore

tribal flare
#

I have breaking kul tiran will, the motherlode raw deal, send the fleet and world quest supplies needed: calcified bones

#

Should i do any of those?

cobalt flint
#

The first one

tribal flare
#

Only?

cobalt flint
#

Out of those, yes. Then continue wherever that quest leads you

tribal flare
#

Ok

#

U sure thia ia the one?

#

@cobalt flint

cobalt flint
#

Do you have the Zandalar Forever achievement?

tribal flare
#

No

cobalt flint
#

Then there is also one more questline you need to do, but it's not on the list of quests that you have.

tribal flare
#

I think i get it now cuz when i click on someone it says (quest)

#

Next to 2 options

#

And its only 2 things right?

cobalt flint
#

Two independent achievements, with lots of quests that need to be done on the way (and some sub achievements).

tribal flare
#

Im currently in bridgeport

#

Is that right?

cobalt flint
#

Just look up those two on Wowhead, find a very high-rated comment explaining all the steps, and make sure you have everything completed from the start.

tribal flare
#

K but i dont need the quests the motherlode and send the fleet right?

cobalt flint
#

no

tribal flare
#

K

#

Im just gonna go do my thing and try fixing it

tribal flare
#

I HATE MY LIFE

#

I CANT FIQURE IT OUT

wary herald
#

hii, i decided that before i do something stupid i should ask others here, can you craft a shadowlands legendary on level 4 without buying the level 1-3 armor needed for it so just buying the ilvl 235 required armor

#

kekw

keen pewter
#

Yes

wary herald
#

aa perfect thank you

candid lynx
#

is leader of the group just get best items\ in farm ?

keen pewter
#

No

#

I wish xD

short frost
#

The game usually seem to give lead in random groups to the player that has done this dungeon most times.

keen pewter
#

Oh right I never managed to see if I got the leader with the check unchked xd forgot to test

tribal flare
#

Does anyone know if i have to have ready for war before i can do the stuff for zandalari trolls?

keen pewter
#

most likely you need to finish bfa for zandalari troll

tribal flare
#

Wdym?

#

I have been trying for 4 hours

#

I dont fucking get it

keen pewter
tribal flare
#

Im just doing quests at this point

toxic beacon
#

im currently 163ilvl and dont know what to do next

keen pewter
#

I mean, it's PVP but anything will help you at your point

swift root
scenic cloud
#

how can i check all my instances?

pure niche
#

how do i farm ancient mana?

#

i need 300 more to bribe a guy in the quest "if words dont work"

swift root
#

you just kill adds in suramar city

tribal flare
#

Can someone pls do the zandalari trolls with me

#

Cant fiqure out how to do it

native bay
#

Any advice on what would be a good profession.

#

for an undead warlock

short frost
#

tailoring probably

icy echo
#

Hey new to the game and discord. I'm a blood elf mage. I've Quested to lvl 18. Should I continue Questing or is there more too it?

fathom ingot
#

Quest until you're max level bro @icy echo

#

I mean you can always do pvp or dungeons whenevr they're available but you end up doing those near the end of the leveling push anyways

polar wasp
#

The ways to level are either quest or dungeon

fathom ingot
#

lvl18 is probably too early tho

#

so just stick with questing until your level allows you to queue for dungeons

icy echo
#

Perfect! Its all good so far anyway. Still getting used to it and double backing on myself for a few quests. I played runescape for years and finally took the leap

fathom ingot
#

Glad you're enjoying it

cobalt flint
#

You can start queuing from level 10 @fathom ingot

fathom ingot
#

lvl10, yeesh

cobalt flint
#

Used to be level 15 before the squish

fathom ingot
#

well do them both then

tight elbow
icy echo
#

Is there a way I can loose all my inventory? In RS if you die...its all gone but in WoW you seem to keep it. Am I missing something?

icy echo
#

Oh perfect! thanks

tight elbow
polar wasp
#

WoW back in 2004 was designed as a "less ruthless" version on the everquest and Runescape models

#

of mmos

short frost
#

less ruthless xD

cobalt flint
#

And with enough quests so that you don't have to grind too much while leveling.

polar wasp
#

but back in 2004 launch(before they added more quests during vanilla)

#

you had to grind mobs for the last 2 levelss

cobalt flint
#

Beats grinding for 60 levels.

icy echo
#

Thankfully you can be a mage in WoW without requiring to grind or to be rich. I used to grind hours and looking back...it wasnt fun.

#

Any advice for killing things that recommend 3 people... but doing it on my own?

cobalt flint
#

Get better gear?

#

The whole idea of recommending more than 1 person is that you just don't do it alone.

icy echo
#

Thats what I was thinking but thankfully on the 2 Quests I needed people for there, there was people around the area that just joined in

knotty bobcat
#

So, I am thinking about rolling a healer I am stuck between shamen or holy preist. I saw some yt vids saying that shamen is the meta healer, but I know metas change, so kinda looking for a long term healer that prob would not be touched too much by nerfs and what not or a healer spec that has good rep for having the least amount of changes done to it.

#

Well, you got a point there. Let me see I mainly join random pugs, so I guess it be better to look at what spec would be accepted?

#

in terms of healers.

#

I do not really have a guild to DG with

tight elbow
#

Why not join a guild?

copper rain
#

hi guys, earlier i got Mask of Multitudinous Eyes on my ally druid.. but when i login my to my horde DH, i cant mog my helm into that mask i got earlier.. i thought they are universal across my account? or did i miss something there?

short frost
#

nah - it just didnt show up

heady viper
#

so I've cleared HC CN once

#

which means my vault loot has a chance at giving me 220 loot

#

if it says 213 now, will it be 213 no matter what, or on the day I open it is there still a chance it could be 220?

polar wasp
#

noot HC

short frost
#

yep

worn wharf
short frost
#

disable the addon that generates it xD

polar wasp
#

its probably a weakaura from the looks of it

hidden pasture
#

Are there any items that transform you into a Worgen? Or, does it exist something that let you stay in combat in human form using a Worgen?

worn wharf
#

thanks

copper rain
short frost
#

just log out for a few minutes to make servers sync properly

tight elbow
#

You can not stay in Human Form as a Worgen when entering into combat.

#

You will always automatically turn into Worgen Form

neon cedar
pallid fulcrum
#

Can't do return lost souls quest

#

Won't show anything when i travel to the maw

fathom ingot
#

@pallid fulcrum Are you in a raid group?

#

Oh you got your thing solved in the other channel, nvm then

pallid fulcrum
ancient marlin
#

o/ has anyone reached lvl 34+ renown night fae with dreamweaver? wanted to know if Field of blossoms had a cooldown for abilities that had a lower than 1 min cd

ancient marlin
#

renown is capped at 32 for everyone? expac had been out for so long, thought something like that would be maxed for most people

pallid fulcrum
#

what is the highest item level

runic peak
#

226

tight elbow
#

You have to repair it

torpid stone
#

hey can anyone help me with dbm? i installed it and changed nothing but there are no audio alerts at all. do i have to enable them manually?

runic peak
#

dbm has only few audio cues when it comes to bosses oe maybe you have volume turned down ingame and that causes you not hearin addon stuff

runic peak
#

I personally prefer big wigs with tts ever since i found out about it but in the end its personal preference

tight elbow
#

Littlewigs is for Dungeons

runic peak
#

well yes the whole package x)

#

also DBM does have dungeons too

stuck swan
#

Anyone know how to stack the action bar on top?

polar wasp
#

that looks like bartender addon fucking up the bars

stuck swan
#

Haha so funny !

#

@polar wasp I think it probs is. Any suggestions?

polar wasp
#

either check the settings of bartender

#

or turn it off

stuck swan
#

What will happen if I turn it off, will I lose the bar?

polar wasp
#

no,the blizzard default UI

#

willl come into play

stuck swan
#

Ahh ok cheers

#

So the key binds of those in that bar will remain same?

polar wasp
#

that should be the case

stuck swan
#

Rip lost the bar 😂

#

Got it back without keybinds but that’s fine

runic peak
#

you dont see it because you don't have it enabled to be shown on default ui

polar wasp
#

@stuck swan you can enable it

#

click esc,interface,actionbars, "bottom left and bottom right"bar

stuck swan
#

It’s fine sorted it now thanks guys

#

Looks so much cleaner now

#

Do I get rewards from a heroic raid if I’ve done that boss this week on normal?

keen pewter
#

Yes

stuck swan
#

Nice

#

What ilvl do ppl expect for heroic?

polar wasp
#

pugs

#

220

keen pewter
#

Nah

stuck swan
#

Ok thanks

#

Pugs means?

keen pewter
#

Pick up games

half eagle
#

does anyone know why my buffs/debuffs look like this? i use Tukui and have aura module enabled.

polar wasp
#

pick up groups,aka random ppl

stuck swan
#

Ok nice one

polar wasp
half eagle
#

where would i find that setting?

polar wasp
#

i dont use Tukui so i wouldnt know

#

this channel is for the base game,so help with addons is finding someone that knows the addon

keen pewter
#

Not a lot of ppl use tukui

#

So maybe ask in the addon server

#

Also, tukui/elvui have a discord server so

half eagle
#

i though lots of ppl use it, or is tukui a dependency for elvui and everyone uses elvui?

keen pewter
#

Tukui and elvui are both standalone addons

#

Elvui being the easiest to setup

half eagle
stuck swan
#

@keen pewter what is elvui in brief terms?

#

2billion 😂that’s bs

half eagle
#

for some reason when i disabled the aura module they started showing again. i just needed the aura module to move them, but moveanything did the same trick, so it's fine now 🙂

fathom ingot
#

@stuck swan ElvUI is basically a complete overhaul of the blizzard ui, making it look more modern and offering more flexibility to editing your ui

stuck swan
#

@fathom ingot sounds sick tbf might give it a try

fathom ingot
#

Save for the unit frames, the actual party frames, and the cast bars, everything you see is ElvUI

#

oh obviously details is not included with ElvUI

#

You can see that the chat boxes, map, actions bars, and even the frames can be edited or straight up removed

polar wasp
#

personal opinion and all

stuck swan
#

That looks so confusing to me😂 looks more modern tho for sure

polar wasp
#

but i think your UI is kinda dogshit,panda

fathom ingot
#

Well you just edit what you want

polar wasp
#

but you can totally love it

fathom ingot
#

Cus?

polar wasp
#

nothing against that

fathom ingot
#

I'm just asking what you don't like about it lol

half eagle
fathom ingot
#

My UI isn't something you should copy, it's just showing how flexible you can be with the UI. Generally you couple ElvUI with some other UI addons anyways @stuck swan

polar wasp
#

it has no polish,nothing is refined,everything is blocky,all smashed together with no separation between things

#

etc ettc

#

i could go on

#

it looks like the default ElvUI setings

fathom ingot
#

You see I would like a UI like that but I'm a healer so I gotta have that big wonky space in the middle

stuck swan
#

Das mine

polar wasp
#

but definitely

#

too much shit on the screen

#

that you dont need to see

half eagle
#

yeah, some blends out when i'm in combat

#

also this is an alt char, haven't done max level ui overhaul yet

polar wasp
#

like having the same ability show up 3 times,in your bartender,weakaurass and actionbars

#

is definitely NOT good

#

and visual bloat that distracts

short frost
#

xD

fathom ingot
#

Regardless, UI addons only help if you feel you need more edits to your ui @stuck swan

polar wasp
#

from mechanics

fathom ingot
#

If it looks good for you already or you only need some minor edits, you can just grab more specific addons like bartender4 for action bars

stuck swan
#

@fathom ingot ye I feel ya. I really like mine tbh so won’t be changing for now at least

fathom ingot
#

Then keep it

stuck swan
#

Yep

fathom ingot
#

Sometimes I wish I wasnt a healer, UI wise

#

I occasionally tunnel vision on frames, which is pretty bad

polar wasp
#

i was using default UI until shadowlands,then out of very long story,i started making my Own UI

#

healthbars-partyframes enemy frames and all

polar wasp
fathom ingot
#

It looks great to me honestly

#

I only need to see CDs of everything except for like three spells whose positions I have locked in muscle memory

#

Most healer UIs will look more or less like that anyways since frames need to be smack center

polar wasp
#

but look nice and pretty

fathom ingot
#

I understand what UI is

polar wasp
#

while not losing usability

fathom ingot
#

it does the job for me

polar wasp
fathom ingot
#

It can't be improved lol

polar wasp
fathom ingot
#

You can edit whatever UI you want to do yourself, but that is the best UI for me so far

#

How?

#

It shows my primary CDs with lesser CDs at the bottom with enough space for party frames

polar wasp
#

a UI is not just "where things are on the screen" as you seem to imply

#

it's also about how they look,if they light up

#

how big they are

#

etc

fathom ingot
#

That's not what I'm implying

#

I have adjusted size and positioning accordingly already

#

so that I can quickly get the info I need with minimal eye movement or the need to refocus my eyes

polar wasp
#

my initial complaint was not about the placement of the cooldowns or abilities

#

but about their visual aestethic

fathom ingot
#

Visually it's good away

#

already

#

Idk why I said away

stuck swan
#

I think it’s personal preference tbh, whatever looks and feels good for u

polar wasp
#

i understand everyone has different tastes,but to me it looks incredibly plain and "default" settings

fathom ingot
#

That's the whole point of my design though

stuck swan
#

Exactly

fathom ingot
#

What does your UI look like anyways, Im curious @polar wasp

polar wasp
#

it is still work in progress as i do need new art for basically everything,but i'll dm you a few screnshots

#

in a few mins

fathom ingot
#

Sure

#

no rush

eternal atlas
#

i already have characters over level 10 but i can't post on the blizzard wow forums, or do they mean i need my forum account to be level 10?

keen pewter
#

wrong region

cobalt flint
edgy lark
#

there is something that make you get more loot from skinning

#

like enchants or anything ?

keen pewter
#

no

uneven fog
#

Can I enchant stuff as a level 33 mage?

keen pewter
#

mages aren't enchanters, but enchanters can enchant stuff yeah

cobalt flint
compact mural
#

anyone here play a monk as a main

solid knot
#

how to I get the legacy pvp cosmetics vendor on the horde side?

hidden pasture
#

To drop the orb of sin'dore I need to complete the Magisters' Terrace in heroic?

foggy coyote
#

Retail WoW question: is the Arcane Eye battlepet from Deadwind Pass no longer obtainable? It used to be that you could only interact with them on lower-level characters, because they're not in the Legion phase of the zone (and it's a zone that has NO bronze dragon NPC, so can't switch). Because of Chromie Time, everyone is now in the Legion phase all the time, so how am I supposed to get one?

cobalt flint
foggy coyote
#

I actually just ported to Org, picked "Cataclysm" for Chromie Time, and ported back. They spawn in Cata Chromie Time apparently!

#

I didn't know if it would work to try that, but I'm glad I did haha

cobalt flint
#

Cool. Although we have to keep in mind it still requires level lower than 50.

foggy coyote
#

True. With any luck I'll get a rare-quality one today and not have to come farm them again. XD

rare dawn
#

if I already did the shadowlands introduction with a character, can I skip it in future alts?

tight elbow
#

The Maw intro?

#

No

unborn garnet
#

What should I do if the game doesn’t allow me to select a reward to complete the mission?

#

Restart?

silk glade
#

Hi anyone know destruction is better than demonology for pve? Google isn't helping

#

Ah thankyou

runic peak
#

they are both in pretty bad state compared to affliction

silk glade
#

Was told affliction was only pvp, I'm new to wow so have no idea

stable sequoia
#

If your Just getting back into wow after a few years and have no idea wwhat to be doing at 50 where would be a good place to start learning again?? Or would it be better to just start all over lol\

fathom ingot
#

@stable sequoia I mean just reading some guides can help

#

If you only have BFA, level 50 endgame is mainly just dungeons, raiding, transmog runs, mount runs, pvp, or actually completing the small questlines

ripe star
#

I am leveling a alt and I just finished the quest where you need to go into torgast to find clues I turned that in to bulvar and now I dont have anymore convant campain quests... I am still on chapter 2 of the campain and bolvar does not have anything... anyone know where I am supposed to go?

jaunty tiger
#

Context: I have a Mythic Raid Lock out to that has killed Shriekwing, Huntsmen, and Hungering.

What happens to the rest of the group's lock out if I extend my lock out to the next week? Do they get a new lock out and I can carry on my merry way? Does it force their lockout to roll over?

ripe star
#

I turned it in... I have found bain though if that helps

#

I did not clear nathria on my main tho and I finished the covenant campain just fine...

#

And it was just one clue from a boss drop and the end of the run... I think it was a key

rare dawn
low oak
#

at lvl 48, after maw intro, a skip option is given, directly we can choose the covanent

#

then we can stop playing and create a new character 🙂

ripe star
#

I found out what I had to do thank you for you help

#

I did not get the memory for the runecarver so I need to do that before continuing in the covenant campain

tight elbow
#

xD

rare dawn
#

:P

#

so I do have to do it in every character...?

tight elbow
#

No

rare dawn
#

yeesh

#

oh?

tight elbow
#

After you have unlocked world quests on one toon, your other toons can choose Threads of Fate, which lets you choose a covenant and level through World Quests and side quests

rare dawn
#

huh, okay

#

is Threads of Fate a quest?

pallid fulcrum
#

World quests, side quests etc

mellow flower
#

So my wife and I went to stormwind, to pick up the quest from hero's call board for Deepholm. It shows up for me, but her call board shows 3 entirely different quests. we are both alliance. Does anyone know why?

low oak
#

that is how game is designed

#

RNG

#

keep accepting an abondoning until it comes

keen pewter
#

That's probably the stupidest thing you have ever said here to this day

last topaz
#

sorry guys im new, anyone know what mount is this one?

polar wasp
#

Its unobtainable, it was BFA prepatch mount

edgy lark
#

there is a buff or item that makes me sell things to the vendor for a bit more

#

like reputation anything

tribal flare
#

How am i supposed to do the raid to kill jaina?

#

I cant do it

#

Im trying to unlock zandalari trolls

#

Or is it not a part of unlocking it

#

Pls tell me

low oak
#

can horde join alliance guild

thorn compass
#

@tribal flare I don't think you have to kill Jaina to unlock the zandalari trolls

#

@low oak you can't

polar wasp
low oak
#

ok formed my own guild

#

🙂

tribal flare
#

Ok ty

#

Are u 100% sure u dont need to kill jaina tho?

tribal flare
#

K i will try doing the other quests asap

heady viper
stuck swan
#

How come in only getting 50-80 soul ash for layer 3. 4, and 5 when I got like couple hundred for the first few

cosmic glen
#

I need help, i used the support to get my character unstuck, and now im in a weird field with a graveyard

#

How do i get back to where i was?

#

I was on Kul Tiras and now im on eastern kingdom

polar wasp
#

which for alliance is westfall

#

as for getting back to kultiras

#

travel back to stormwind(which westfall is already very close to)

#

and find the portal room and get back to kultiras

#

i think you can ask guards to ask where the portal room is,but it is in the big tower in the mage district

#

@cosmic glen

cosmic glen
#

Thanks😅

#

Which portal is to kultiras?

#

What arrow?

#

Aah thanks

tribal flare
#

Im trying to unlock zandalari trolls, does anyone know if i have to do the quest where u have to kill jaina?

#

Just want to be 100% sure so i do the righr quests

polar wasp
#

you only need to do the leveling questliness and the warcampaign

mortal orchid
#

Hi guys can pls someone of you can help me i am a shaman but i dont know why i cant see the meteor skill pls help me i new here i lvl 51

tight elbow
#

[meteor]

forest lilyBOT
mortal orchid
#

Yes this one

polar wasp
#

that's a fire mage spell

#

not a shaman one

mortal orchid
#

Oh buy its say its for shaman

tight elbow
#

But, it doesn't

#

xD

mortal orchid
#

XD

tight elbow
#

It says very clearly "Requires Mage (Fire)"

polar wasp
#

says "requires mage(fire)" to me

mortal orchid
#

Here its say shaman

#

In class

polar wasp
#

probably was removed

#

why are you looking at wowhead spells in the first place

tight elbow
#

Was removed

mortal orchid
#

I new here i dont know where to look

tight elbow
#

X3

#

In your spellbook

polar wasp
tight elbow
#

@tribal flare Youve been told 4 times now that you dont

#

xD

mortal orchid
#

@polar wasp ty

last bough
#

yo i really need some help. i cannot get back to drustvar to complete my nightfae campaign

#

im trying on the boat in zuldazar, but nobody gives me the option to sail there

#

i heard you can accept a quest below deck to take you there, and i see the quest, but its locked because low level. any help?"

#

(the portal that initially took me there in ardenweald is gone, when i abandon the quest to try and restart, the earliest it will bring me back is accepting the quest from ulfar in drustvar. so i still need to get there

#

if anyone knows how to accept low level quests, that will enable me to accept this quest on the boat to sail to drustvar

lunar cargo
#

So, have over 40 runs on Upper Reaches layer 3, without a single spawn of Arch-Suppressor Laguas
Does anyone know what the requirements are to have him spawn?
Does it require a higher layer?

forest lilyBOT
lunar cargo
#

yes, i've read that extensively

#

what do you want me to see there?

#

DH memory

#

Hence layer 3 😄

lunar cargo
#

[memory of soul of fire]

forest lilyBOT
lunar cargo
#

What does the (15) and (4) mean on the Laguas page?

This NPC can be found in The Soulforges (15) and The Upper Reaches (4).

fathom ingot
#

I guess there's a map and the locations are numbered @lunar cargo

#

If you could link the page, it would help

lunar cargo
#

sorry, it's linked above

#

i'll re-link

#

[arch-suppressor laguas]

forest lilyBOT
fathom ingot
#

Oh that's number of possible locations I believe then @lunar cargo

#

So 15 in soulforges and 4 in upper reaches although based on the map, theyre basically all the same place

lunar cargo
#

he's supposed to be the end boss, right?

#

so i should see him in the level 3 hologram

#

I'm 50 runs in now, with no spawn

#

(keeping track of each run)

fathom ingot
#

I think it's a possible choice of end boss?

#

Im not sure how boss selection for torghast works

tight elbow
#

You wont get anything else from the last boss of your run for the week

lunar cargo
#

i haven't killed the last boss yet,

#

waiting until laguas spawn

tight elbow
#

You just said you're on your 50th run

lunar cargo
#

yea

#

i ran 50 times to the 3rd floor, see if he spawns, then reset

tight elbow
#

Have you... tried getting to the end?

#

xD

fathom ingot
#

3rd floor shows you the 6th floor boss

lunar cargo
#

this ☝️

fathom ingot
#

so Im assuming he's just looking at the holo to decide to finish or not

tight elbow
#

Lame

fathom ingot
#

I thought legendaries are just linked to the wing, not the actual boss

#

as in as long you finish soul forges you should get the memory

lunar cargo
#

it's boss linked

fathom ingot
#

Weird

#

I know holy pally leggo is only linked to the wing (coldheart) not a boss in coldheart

tight elbow
#

4 bosses drop it

#

@lunar cargo

fathom ingot
#

So I was right 😐

#

well at least you can finish the layer now and not have to reset another 50 times

#

¯_(ツ)_/¯

lunar cargo
#

line 2 of linked shows the upper reaches

#

you goto the upper reaches, and one of the bosses is laguas

fathom ingot
#

all four are from soul forges

lunar cargo
fathom ingot
#

and?

tight elbow
#

All bosses show up in TC as well

fathom ingot
#

That's just the boss appearing in two different wings if Im reading that right

lunar cargo
#

ah

fathom ingot
#

Neither part are in each other, they're two different wings and all the four are in soulforges so that's your best bet

tight elbow
#

The Upper Reaches is another wing, it doesnt mean the 6th floor of Soulforges

uneven fog
#

I have a heap of gear that says I'm yet to reach proficiency for. Is that a level thing or a skill type thing I'm lacking? It's lvl 38 gear

fathom ingot
#

Well probably level @uneven fog

#

The gear lists the minimum level need to wear

#

unless it's a weapon/shield then you might need to train in that weapon spec or your spec weapon/shield restrictions wont let you wear it

uneven fog
#

There are so many layers to this crazy game lol

stuck swan
#

Quickest way to farm gold?

fathom ingot
#

Professions probably @stuck swan

stuck swan
#

So like skin loads of dead stuff ? @fathom ingot

fathom ingot
#

¯_(ツ)_/¯

#

Skinning is good and so are a lot of the others I believe

stuck swan
#

Ok cheers

#

So basically skin as much as I can

magic junco
#

Okay, so I was running around Shadowlands. Just exploring, and I got glitched under the map. Every time I try to get back up or fall off the map, it logs me out saying I have lost connection to the server

cobalt flint
magic junco
#

Thank you

cerulean relic
#

my game is being slow i have a VERY good pc and a VERY good router but havent finished downloading the game yet would that cause problems?

#

well it has an update that isnt donee

cobalt flint
cerulean relic
#

ok thx

#

imma just keep my PC on overnight so it can download

keen pewter
#

You can have the best router on the market that if your isp isn't giving you more speed it's gonna a go at it XD

cerulean relic
#

also im getting KB ps is that a problem with battle.net?

foggy cedar
#

how do I link achivements on premade groups ?

cobalt flint
cerulean relic
#

about 600 average

#

it doesnt matter it should be done when i get back from where i need to go tmrw

fathom ingot
foggy cedar
#

and how do I do it ?

fathom ingot
#

well you need the achievement page open

#

and then open the chat as if to type

keen pewter
#

Shift click

foggy cedar
#

oh

fathom ingot
#

and shift click the achivement or item

foggy cedar
#

thx guys

cobalt flint
keen pewter
#

If you're getting KB speeds I do wonder what shitty isp is holding you down XD

high path
fathom ingot
#

It can take a while to come back

#

boat gets there, waits, leaves, and comes back after a while

keen pewter
#

You don't expect a boat to be waiting for you forever do you?

high path
#

hahaha ok thx

cobalt flint
fathom ingot
#

He wrote it with the capital B though?

keen pewter
#

Yeah, a crucial of the game is several times 1000 of 1000 of KB lol

#

Games what, 40GB?

#

That's 40*1000*1000=KB

fathom ingot
#

62 GB

#

apparently

keen pewter
#

Downloading at KB is not a good speed, nor an acceptable one

#

And if it's not blizzard, then the isp is fucking them up

#

It's pretty easy honestly, KB speed is DSL speed

cobalt flint
#

Trust me, I know that pain very well.

#

Sometimes you live in an area where faster speeds is not a very practical option.

quaint steeple
#

Hello! My details always shows way less dps/hps than other peoples details. I asked our DPS to post their details and everyone got the same data than my healer friend.
My details is left, my healer friends details is right.
Anyone know why there are two different data? I mean its like 2m more healing and 2.5m more dps..

pallid fulcrum
#

guys, hunter can use sword ?

pallid fulcrum
#

I believe so

balmy ibex
#

I spent the last 45 in my first Layer 1 Torghast run, got to floor 4 and couldn't kill the elite to get to the next floor. I went through all my deaths. I'm a rogue and really squishy. I play solo, is it meant to be in a group? Frustrated that I couldn't complete it.

snow pivot
#

It’s supposed to be tough. It can be done solo or in a group though. Some classes have it easier than others. I don’t know anything about rogue’s strength in torghast, but you def want to clear as much as you can and get as many powers possible

#

@balmy ibex

carmine rune
#

Is WoW playable without any help? I don't have any friends that play it, so I am planning on doing it by myself.

polar wasp
#

It definitely is

#

Just make sure to take your time leveling

#

Read what your skills do

true kettle
#

how do I get back to this quest ?

polar wasp
#

if you havent unlocked a flightpath

#

you just walk there

true kettle
#

gotcha, thanks

mystic bane
polar wasp
low oak
#

the class trainer does not offer more training ?

#

they simply has a list of specialisation that's all

cobalt flint
prisma schooner
#

where or how do i redeem a ''love token''?

lavish juniper
#

what is better ice or arcane

cobalt flint
prisma schooner
#

any vendor?

cobalt flint
#

There are specific vendors that sell stuff in exchange for tokens.

prisma schooner
#

where can i find one if i am on horde side?

cobalt flint
#

For example in Valley of Strength in Orgrimmar, near the auction house.

#

They built a small white wooden thingy like in gardens there

prisma schooner
#

now i see

#

thx

acoustic wave
#

hi got a question if i friend someone hat playes on us servers can i still play with them?

tight elbow
#

Are you EU?

pallid fulcrum
#

You have to make a separate North American account, or they have to make an account for your region

cobalt flint
#

And buy any game time or expansions again

analog crypt
#

so I have an old boosted frost mage that's now 40, been looking at the overview guide for frost mage, do I need to worry about any of the gearing steps before I'm 60?

pallid fulcrum
#

Nah. Focus on leveling to 60, replace old gear with the higher ilvl, and then worry about gearing afterwards

acoustic wave
tight elbow
acoustic wave
#

k thx

cedar nest
#

What weapons is best for Elemental Shaman? Doomhammer? The first of Ra-den? or Shara's dal Scepter of Tides

pallid fulcrum
#

Those are each artifact weapons for the different shaman specs. The Fist of Ra-den is the elemental one