Addon Route + GM2

Yop tout le monde.

Je voulais savoir si des personnes utiliseraient l’addon : Routes . Si oui fonction t-il chez vous ? Perso rien ne fait même en regardant les tutos etc … Merci d’avance

Ouais ils marchent pas de base pour de nombreuses personnes il y a une petite manip a faire voila :slight_smile:

This will fix both Retail and Classic with this:

Step 1 : Close wow completely

Step 2 : Navigate to your routes addon folder:

Step 3 : Replace this code in Routes.lua (use Notepad ++)

Routes.lua:196

OLD

  local COSMIC_MAP_ID = 946
  processMapChildrenRecursive(COSMIC_MAP_ID)

NEW

local WORLD_MAP_ID = 947
local COSMIC_MAP_ID = 946
if select(4,GetBuildInfo()) < 20000 then
processMapChildrenRecursive(WORLD_MAP_ID)
else
processMapChildrenRecursive(COSMIC_MAP_ID)
end

Step 4 : Open folder called « modules » inside "routes addon folder, Now change this code in « autoshow.lua »

AutoShow.lua:10

OLD

  local have_prof = {
    Herbalism  = false,
    Mining     = false,
    Fishing    = false,
    ExtractGas = false, -- Engineering
    Archaeology= false,
  }
  local active_tracking = {}
  local profession_to_skill = {}
  profession_to_skill[GetSpellInfo(170691)] = "Herbalism"
  profession_to_skill[GetSpellInfo(2575)] = "Mining"
  profession_to_skill[GetSpellInfo(7620) or GetSpellInfo(131476)] = "Fishing"
  profession_to_skill[GetSpellInfo(4036)] = "ExtractGas"
  if GetSpellInfo(78670) then
    profession_to_skill[GetSpellInfo(78670)] = "Archaeology"
  end
  local tracking_spells = {}
  tracking_spells[(GetSpellInfo(2580))] = "Mining"
  tracking_spells[(GetSpellInfo(2383))] = "Herbalism"
  tracking_spells[(GetSpellInfo(43308))] = "Fishing"
  tracking_spells[(GetSpellInfo(2481))] = "Treasure"
  tracking_spells[(GetSpellInfo(167898))] = "Logging"

NEW

local have_prof
if select(4,GetBuildInfo()) < 20000 then
have_prof = {
Herbalism = false,
Mining = false,
Fishing = false,
}
else
have_prof = {
Herbalism = false,
Mining = false,
Fishing = false,
ExtractGas = false, – Engineering
Archaeology= false,
}
end
local active_tracking = {}
local profession_to_skill = {}
profession_to_skill[GetSpellInfo(2575)] = « Mining »
if (select(4,GetBuildInfo()) < 20000) then
profession_to_skill[GetSpellInfo(2366)] = « Herbalism »
profession_to_skill[GetSpellInfo(7620)] = « Fishing »
else
profession_to_skill[GetSpellInfo(170691)] = « Herbalism »
profession_to_skill[GetSpellInfo(7620) or GetSpellInfo(131476)] = « Fishing »
profession_to_skill[GetSpellInfo(4036)] = « ExtractGas »
if GetSpellInfo(78670) then
profession_to_skill[GetSpellInfo(78670)] = « Archaeology »
end
end
local tracking_spells = {}
tracking_spells[(GetSpellInfo(2580))] = « Mining »
tracking_spells[(GetSpellInfo(2383))] = « Herbalism »
tracking_spells[(GetSpellInfo(2481))] = « Treasure »
if select(4,GetBuildInfo()) >= 20000 then
tracking_spells[(GetSpellInfo(43308))] = « Fishing »
tracking_spells[(GetSpellInfo(167898))] = « Logging »
end

Last step but it can not be skipped or else this will not work:

Step 5 : Navigate to your saved variables folder:

Computer/local disk(C:)/Program Files (x86)/World of warcraft/retail/WTF/Account/6789770#1/Saved Variables

Now delete « routes.lua » and « routes.lua.bak »

J’ai déjà fait je vais réessayer, mais qu’elle version utilises tu ? 1.6 ?
merci de ton aide :slight_smile:

Et il sert à quoi cet add-on qui semble super compliqué à paramétrer ?

L’addon Gathermate t’indique tt les noeuds où peuvent pop la ressource que tu décides comme tte les pacifiques, ou tout les minerais, etc…

L’addon Routes prend tout ces noeuds et paramètre un chemin optimisé pour passer sur le plus de noeud possible dans la région où tu te trouves.

Bref ça permet d’optimiser ton Farm de plante/minerai :wink: J’avais aussi essayé de reparametrer Route chez moi mais il y avait un fichier qu’ils demandaient de modifier et que j’avais pas dans mon fichier Addon … :frowning:

1 mention « J’aime »

Je saurai pas te dire j’ai changé de pc y a 1mois et je m’en sers plus maintenant mais j’utilisais la derniere version dispo sur twitch il y a un mois et ça marchait trés bien en faisant la manip juste au dessus