Hunt for Gersahl Greens in Uldum along the river. They are small. If you dont have herbalism to track plants, you can use this macro which will send an alert if you mouseover one.
/run local kokolums=herbyy or CreateFrame(“Frame”,“herbyy”,UIParent) kokolums:SetScript(“OnUpdate”,function() local mebbeherby = UnitName(“mouseover”);if (mebbeherby == “Gersahl Shrub”) then print(“Gersahl Greens”)PlaySoundFile(1410435) end end)
You can replace kokolums with k and mebbeherby with m since you’ve declared them local, and that would save macro space in case you later decide you need to add something else to it or want to make a different macro that needs to do more things.