[Bug] Combo Gatherer - Map Notes - Map Notes Gathering

Répondre
Partager Rechercher
Je voulais profiter des options de ces mobs ... Mais un bug assez génant est apparus chez moi !

http://kebero.free.fr/wow/UI_bug_map2.jpg

A chaque minage, un rond rouge apparait... Au final j'obtiens ca! Assez génant je trouve
Enfin je comptais désactiver l'affichage sur la minimap pour des raisons de faciliter de lecture mais a l'occasion je voulais activer cette options pour faciliter la recherche de composants précis ... Donc si vous avez une solution a me proposez, j'suis preneur !

Et pour pas recrer un post, je cherche une aide pour la configuration de Flexbar... Merci d'avance
Cela ne sert pas d'utiliser Map Note Gathering ET Gatherer vu qu'ils font la même chose.

Je ne connais pas vraiment Gatherer, mais je sais que dans Map Note Gathering tu peux choisir les types d'herbes à afficher.
Depuis les 2 dernières versions de Gatherer, celui-ci est devenu redondant avec MapNotesGathering.

Pour ma part je travaille sur la fusion de ces 2 mod mais je ne diffuserai pas le résultat car c'est un plagiat pur et simple (enfin simple c'est vite dit ).

L'avantage de MapNotesGathering est effectivement le filtre d'affichage sur la WorldMap des objets que tu souhaite chercher.
Une fois que tu t'en approche, Gatherer deviens utile
Citation :
Publié par Vandalero

L'avantage de MapNotesGathering est effectivement le filtre d'affichage sur la WorldMap des objets que tu souhaite chercher.
Depuis les dernières version Gatherer possède aussi cette fonctionnalité.
Citation :
Publié par Fredox
MapNotesGathering permet aussi l'affichage des ressources sur la mini-map ou alors ce n'est pas ça dont tu parles
MapNotesGathering n'affiche rien sur la minimap. C'est Gatherer qui fait ça.

Citation :
Publié par Khaled
Depuis les dernières version Gatherer possède aussi cette fonctionnalité.
Revérifié avec la version 1.92, a part avec les commandes /gather (que je n'ai pas vérifié), Gatherer ne permet de sélectionner un type ou un objet précis sur la WorldMap.
De plus les nom affichés sont tous en minuscule (c pas esthétique )

Bref je continue a faire mon mod pour intégrer le meilleur des 2

Et puis c'est mon choix
Bizare ... quand je désinstal Gatherer, MapNotesGathering n'affiche plus rien que ce soit sur la world map ou la mini map ... Avec aucun probleme, a part ce bug des cercle rouge :'( ... J'ai peut-etre pas la bonne version de MapNotesGathering, j'ai la 0.5.6 et je suis sous la version Française...
Oui c'est à cause du fichier localization.lua qui ne contient que les données pour la version anglaise pour le moment. Il semblerait qu'une localisation soit prévue mais pour l'instant, il n'y a rien et ça ne fonctionne pas avec la version FR du jeu. Tu peux modifier ce fichier en incluant les données de Gatherer (qui a déjà la localisation) pour que cela fonctionne.

Edite le fichier localization.lua et fais un copier de tout ce qu'il y a, copier que tu vas coller en début de fichier et que tu encadres par if ( GetLocale() == "frFR" ) then et else. Ce qui donne :

// début du fichier localization.lua
if ( GetLocale() == "frFR" ) then
... données copiées-collées ...
else
... données originales
// fin du fichier

Il ne te reste plus qu'à remplacer les données copiées-collées par leur correspondance en français, en t'aidant par exemple du fichier localization.lua de Gatherer Sauvegarde le fichier et relance le jeu, ça devrait être bon.
Code:
 
if ( GetLocale() == "frFR" ) then
MapNotesGathering_Names = {};
MapNotesGathering_Names[1] = { "veine de cuivre" };
MapNotesGathering_Names[2] = { "veine d'étain" };
MapNotesGathering_Names[3] = { "dépôt de fer" };
MapNotesGathering_Names[4] = { "veine d'argent" };
MapNotesGathering_Names[5] = { "dépôt d'argent véritable" };
MapNotesGathering_Names[6] = { "veine d'or", "Ooze Covered Gold Vein" 

};
MapNotesGathering_Names[7] = { "dépôt Mithril", "Ooze Covered Mithril 

Deposit" };
MapNotesGathering_Names[8] = { "petite veine de Thorium ", "Ooze 

Covered Thorium Vein" };
MapNotesGathering_Names[9] = { "veine de Thorium riche", "Ooze Covered 

Rich Thorium Vein" };
MapNotesGathering_Names[10] = { "feuillargent" };
MapNotesGathering_Names[11] = { "pacifique" };
MapNotesGathering_Names[12] = { "terrestrine" };
MapNotesGathering_Names[13] = { "mage royal" };
MapNotesGathering_Names[14] = { "eglantine" };
MapNotesGathering_Names[15] = { "etouffante" };
MapNotesGathering_Names[16] = { "doulourante" };
MapNotesGathering_Names[17] = { "aciérite sauvage" };
MapNotesGathering_Names[18] = { "tombeline" };
MapNotesGathering_Names[19] = { "sang-royal" };
MapNotesGathering_Names[20] = { "vietérule" };
MapNotesGathering_Names[21] = { "pâlerette" };
MapNotesGathering_Names[22] = { "dorépine" };
MapNotesGathering_Names[23] = { "moustache de khadgar" };
MapNotesGathering_Names[24] = { "hivernale" };
MapNotesGathering_Names[25] = { "fleur de feu" };
MapNotesGathering_Names[26] = { "lotus pourpre" };
MapNotesGathering_Names[27] = { "soleillette" };
MapNotesGathering_Names[28] = { "sauvageonne" };
MapNotesGathering_Names[29] = { "larmes d’arthas" };
MapNotesGathering_Names[30] = { "aveuglette" };
MapNotesGathering_Names[31] = { "champignon fantôme" };
MapNotesGathering_Names[32] = { "gromsang" };
MapNotesGathering_Names[33] = { "sansam doré" };
MapNotesGathering_Names[34] = { "sauge argentée des montagnes" };
MapNotesGathering_Names[35] = { "fleur de peste" };
MapNotesGathering_Names[36] = { "feuillerêve" };
MapNotesGathering_Names[37] = { "calot de glace" };
MapNotesGathering_Names[38] = { "lotus noir" };
MapNotesGathering_Names[39] = { "Alliance Chest", "Battered Chest", 

"Large Battered Chest", "Large Iron Bound Chest", "Large Solid Chest", 

"Solid Chest" };
MapNotesGathering_Names[40] = { "Giant Clam" };


MapNotesGathering_SearchHerb = "Vous exécutez Cueillette sur 

+([^>]*).";
MapNotesGathering_SearchOre = "Vous exécutez Minage sur +([^>]*).";
MapNotesGathering_SearchChest = "Vous exécutez Ouverture sur 

+([^>]*).";
MapNotesGathering_SearchHerb2 = "Herborisme";
MapNotesGathering_SearchOre2 = "Minage";
MapNotesGathering_SearchChest2 = "Ouverture";

MAPNOTESGATHERING_SHOWHERBS = "Afficher herbes";
MAPNOTESGATHERING_SHOWVEINS = "Afficher mines";
MAPNOTESGATHERING_SHOWCHESTS = "Afficher coffres";

MAPNOTESGATHERING_MENU = "Map Notes";
MAPNOTESGATHERING_MININOTE = "Set As MiniNote";

MAPNOTESGATHERING_NOTINLIST = "The herb/ore is not in the list, could 

not add it automatically. Please report what you tried to gather/mine 

in the forums (exact name).";

else

MapNotesGathering_Names = {};
MapNotesGathering_Names[1] = { "Copper Vein" };
MapNotesGathering_Names[2] = { "Tin Vein" };
MapNotesGathering_Names[3] = { "Iron Deposit" };
MapNotesGathering_Names[4] = { "Silver Vein" };
MapNotesGathering_Names[5] = { "Truesilver Deposit" };
MapNotesGathering_Names[6] = { "Gold Vein", "Ooze Covered Gold Vein" };
MapNotesGathering_Names[7] = { "Mithril Deposit", "Ooze Covered Mithril 

Deposit" };
MapNotesGathering_Names[8] = { "Small Thorium Vein", "Ooze Covered 

Thorium Vein" };
MapNotesGathering_Names[9] = { "Rich Thorium Vein", "Ooze Covered Rich 

Thorium Vein" };
MapNotesGathering_Names[10] = { "Silverleaf" };
MapNotesGathering_Names[11] = { "Peacebloom" };
MapNotesGathering_Names[12] = { "Earthroot" };
MapNotesGathering_Names[13] = { "Mageroyal" };
MapNotesGathering_Names[14] = { "Briarthorn" };
MapNotesGathering_Names[15] = { "Stranglekelp" };
MapNotesGathering_Names[16] = { "Bruiseweed" };
MapNotesGathering_Names[17] = { "Wild Steelbloom" };
MapNotesGathering_Names[18] = { "Grave Moss" };
MapNotesGathering_Names[19] = { "Kingsblood" };
MapNotesGathering_Names[20] = { "Liferoot" };
MapNotesGathering_Names[21] = { "Fadeleaf" };
MapNotesGathering_Names[22] = { "Goldthorn" };
MapNotesGathering_Names[23] = { "Khadgar's Whisker" };
MapNotesGathering_Names[24] = { "Wintersbite" };
MapNotesGathering_Names[25] = { "Firebloom" };
MapNotesGathering_Names[26] = { "Purple Lotus" };
MapNotesGathering_Names[27] = { "Sungrass" };
MapNotesGathering_Names[28] = { "Wildvine" };
MapNotesGathering_Names[29] = { "Arthas' Tears" };
MapNotesGathering_Names[30] = { "Blindweed" };
MapNotesGathering_Names[31] = { "Ghost Mushroom" };
MapNotesGathering_Names[32] = { "Gromsblood" };
MapNotesGathering_Names[33] = { "Golden Sansam" };
MapNotesGathering_Names[34] = { "Mountain Silversage" };
MapNotesGathering_Names[35] = { "Plaguebloom" };
MapNotesGathering_Names[36] = { "Dreamfoil" };
MapNotesGathering_Names[37] = { "Icecap" };
MapNotesGathering_Names[38] = { "Black Lotus" };
MapNotesGathering_Names[39] = { "Alliance Chest", "Battered Chest", 

"Large Battered Chest", "Large Iron Bound Chest", "Large Solid Chest", 

"Solid Chest" };
MapNotesGathering_Names[40] = { "Giant Clam" };


MapNotesGathering_SearchHerb = "You perform Herb Gathering on 

+([^>]*).";
MapNotesGathering_SearchOre = "You perform Mining on +([^>]*).";
MapNotesGathering_SearchChest = "You perform Opening on +([^>]*).";
MapNotesGathering_SearchHerb2 = "Herb Gathering";
MapNotesGathering_SearchOre2 = "Mining";
MapNotesGathering_SearchChest2 = "Opening";

MAPNOTESGATHERING_SHOWHERBS = "Show Herbs";
MAPNOTESGATHERING_SHOWVEINS = "Show Veins";
MAPNOTESGATHERING_SHOWCHESTS = "Show Chests";

MAPNOTESGATHERING_MENU = "Map Notes";
MAPNOTESGATHERING_MININOTE = "Set As MiniNote";

MAPNOTESGATHERING_NOTINLIST = "The herb/ore is not in the list, could 

not add it automatically. Please report what you tried to gather/mine 

in the forums (exact name).";

end
Voila, j'ai traduit ce que je pouvais ... Mais il me manque :
Ooze Covered <metal> Vein,
le nom francophone des coffres,
Giant Calm ( palourde géante, enfin c'est ce dont je me souviens de ma 1er instance ^^ )
Herb Gathering ( Herborisme ?)

Voila voila, vu l'heure je testerai demain matin ... Si il y a des erreurs, suffit de me signaler et j'éditerai mon message

Edit : Erf ca ne marche pas... Qq1 a pas une idée ? Je n'ai pas d'erreur mais rien ne s'affiche sur ma map :cry:

Edit2 : Correction des erreurs d'accents.
Citation :
Publié par Fredox
http://equinoxatiro.online.fr/wow/minimap_gathering.jpg

Non non, ça n'affiche rien en effet
Je suis désolé mais RIEN dans le code de MapNotesGathering n'affiche quoique ce soit sur la MiniMap.
Je viens de télécharger et de regarder la version 0.5.6.

Voici les bonnes traductions pour MapNotesGathering :

Fichier localization.lua complet :
Code:
if ( GetLocale() == "frFR" ) then -- French

  MapNotesGathering_Names = {};
  MapNotesGathering_Names[1] = { "Veine de cuivre" };
  MapNotesGathering_Names[2] = { "Veine d'étain" };
  MapNotesGathering_Names[3] = { "Dépôt de fer" };
  MapNotesGathering_Names[4] = { "Veine d'argent" };
  MapNotesGathering_Names[5] = { "Dépôt de vif-argent" };
  MapNotesGathering_Names[6] = { "Veine d'or", "Veine d'or couverte de vase" };
  MapNotesGathering_Names[7] = { "Dépôt de Mithril", "Gisement de mithril couvert de vase" };
  MapNotesGathering_Names[8] = { "Petite veine de Thorium", "Veine de Thorium couverte de Limon" };
  MapNotesGathering_Names[9] = { "Riche veine de Thorium", "Riche veine de Thorium couverte de Limon" };
  MapNotesGathering_Names[10] = { "Feuillargent" };
  MapNotesGathering_Names[11] = { "Pacifique" };
  MapNotesGathering_Names[12] = { "Terrestrine" };
  MapNotesGathering_Names[13] = { "Mage royal" };
  MapNotesGathering_Names[14] = { "Eglantine" };
  MapNotesGathering_Names[15] = { "Etouffante" };
  MapNotesGathering_Names[16] = { "Doulourante" };
  MapNotesGathering_Names[17] = { "Aciérite sauvage" };
  MapNotesGathering_Names[18] = { "Tombeline" };
  MapNotesGathering_Names[19] = { "Sang-royal" };
  MapNotesGathering_Names[20] = { "Vietérule" };
  MapNotesGathering_Names[21] = { "Pâlerette" };
  MapNotesGathering_Names[22] = { "Dorépine" };
  MapNotesGathering_Names[23] = { "Moustache de Khadgar" };
  MapNotesGathering_Names[24] = { "Hivernale" };
  MapNotesGathering_Names[25] = { "Fleur de feu" };
  MapNotesGathering_Names[26] = { "Lotus pourpre" };
  MapNotesGathering_Names[27] = { "Soleillette" };
  MapNotesGathering_Names[28] = { "Sauvageonne" };
  MapNotesGathering_Names[29] = { "Larme d'Arthas" };
  MapNotesGathering_Names[30] = { "Aveuglette" };
  MapNotesGathering_Names[31] = { "Champignon Fantôme" };
  MapNotesGathering_Names[32] = { "Gromsang" };
  MapNotesGathering_Names[33] = { "Sansam doré" };
  MapNotesGathering_Names[34] = { "Sauge argentée des montagnes" };
  MapNotesGathering_Names[35] = { "Fleur de peste" };
  MapNotesGathering_Names[36] = { "Feuillerève" };
  MapNotesGathering_Names[37] = { "Cap de glace" };
  MapNotesGathering_Names[38] = { "Lotus noir" };
  MapNotesGathering_Names[39] = { "Coffre d'alliance", "Coffre endommagé", "Large coffre endommagé", "Large coffre cerclé de fer", "Large coffre solide", "Coffre solide" };
  MapNotesGathering_Names[40] = { "Palourde géante" };
  
  MapNotesGathering_SearchHerb = "Vous exécutez Cueillette sur";
  MapNotesGathering_SearchHerb_Length = 31;
  MapNotesGathering_SearchOre = "Vous exécutez Minage sur";
  MapNotesGathering_SearchOre_Length = 27;
  MapNotesGathering_SearchChest = "Vous exécutez Ouverture sur";
  MapNotesGathering_SearchChest_Length = 30;
  MapNotesGathering_SearchHerb2 = "Cueillette";
  MapNotesGathering_SearchOre2 = "Minage";
  MapNotesGathering_SearchChest2 = "Ouverture";
  
  MAPNOTESGATHERING_SHOWHERBS = "Montrer herbes";
  MAPNOTESGATHERING_SHOWVEINS = "Montrer mines";
  MAPNOTESGATHERING_SHOWCHESTS = "Montrer coffres";
  
  MAPNOTESGATHERING_MENU = "Map Notes";
  MAPNOTESGATHERING_MININOTE = "Set As MiniNote";
  
  MAPNOTESGATHERING_NOTINLIST = "L'objet n'est pas dans la liste, ajout automatique impossible. Veuillez indiquer ce que vous cueilliez/miniez sur le Forum Officiel (avec le nom exact).";

else -- English

  MapNotesGathering_Names = {};
  MapNotesGathering_Names[1] = { "Copper Vein" };
  MapNotesGathering_Names[2] = { "Tin Vein" };
  MapNotesGathering_Names[3] = { "Iron Deposit" };
  MapNotesGathering_Names[4] = { "Silver Vein" };
  MapNotesGathering_Names[5] = { "Truesilver Deposit" };
  MapNotesGathering_Names[6] = { "Gold Vein", "Ooze Covered Gold Vein" };
  MapNotesGathering_Names[7] = { "Mithril Deposit", "Ooze Covered Mithril Deposit" };
  MapNotesGathering_Names[8] = { "Small Thorium Vein", "Ooze Covered Thorium Vein" };
  MapNotesGathering_Names[9] = { "Rich Thorium Vein", "Ooze Covered Rich Thorium Vein" };
  MapNotesGathering_Names[10] = { "Silverleaf" };
  MapNotesGathering_Names[11] = { "Peacebloom" };
  MapNotesGathering_Names[12] = { "Earthroot" };
  MapNotesGathering_Names[13] = { "Mageroyal" };
  MapNotesGathering_Names[14] = { "Briarthorn" };
  MapNotesGathering_Names[15] = { "Stranglekelp" };
  MapNotesGathering_Names[16] = { "Bruiseweed" };
  MapNotesGathering_Names[17] = { "Wild Steelbloom" };
  MapNotesGathering_Names[18] = { "Grave Moss" };
  MapNotesGathering_Names[19] = { "Kingsblood" };
  MapNotesGathering_Names[20] = { "Liferoot" };
  MapNotesGathering_Names[21] = { "Fadeleaf" };
  MapNotesGathering_Names[22] = { "Goldthorn" };
  MapNotesGathering_Names[23] = { "Khadgar's Whisker" };
  MapNotesGathering_Names[24] = { "Wintersbite" };
  MapNotesGathering_Names[25] = { "Firebloom" };
  MapNotesGathering_Names[26] = { "Purple Lotus" };
  MapNotesGathering_Names[27] = { "Sungrass" };
  MapNotesGathering_Names[28] = { "Wildvine" };
  MapNotesGathering_Names[29] = { "Arthas' Tears" };
  MapNotesGathering_Names[30] = { "Blindweed" };
  MapNotesGathering_Names[31] = { "Ghost Mushroom" };
  MapNotesGathering_Names[32] = { "Gromsblood" };
  MapNotesGathering_Names[33] = { "Golden Sansam" };
  MapNotesGathering_Names[34] = { "Mountain Silversage" };
  MapNotesGathering_Names[35] = { "Plaguebloom" };
  MapNotesGathering_Names[36] = { "Dreamfoil" };
  MapNotesGathering_Names[37] = { "Icecap" };
  MapNotesGathering_Names[38] = { "Black Lotus" };
  MapNotesGathering_Names[39] = { "Alliance Chest", "Battered Chest", "Large Battered Chest", "Large Iron Bound Chest", "Large Solid Chest", "Solid Chest" };
  MapNotesGathering_Names[40] = { "Giant Clam" };
    
  MapNotesGathering_SearchHerb = "You perform Herb Gathering on";
  MapNotesGathering_SearchHerb_Length = 31;
  MapNotesGathering_SearchOre = "You perform Mining on";
  MapNotesGathering_SearchOre_Length = 23;
  MapNotesGathering_SearchChest = "You perform Opening on";
  MapNotesGathering_SearchChest_Length = 24;
  MapNotesGathering_SearchHerb2 = "Herb Gathering";
  MapNotesGathering_SearchOre2 = "Mining";
  MapNotesGathering_SearchChest2 = "Opening";
  
  MAPNOTESGATHERING_SHOWHERBS = "Show Herbs";
  MAPNOTESGATHERING_SHOWVEINS = "Show Veins";
  MAPNOTESGATHERING_SHOWCHESTS = "Show Chests";
  
  MAPNOTESGATHERING_MENU = "Map Notes";
  MAPNOTESGATHERING_MININOTE = "Set As MiniNote";
  
  MAPNOTESGATHERING_NOTINLIST = "The herb/ore is not in the list, could not add it automatically. Please report what you tried to gather/mine in the forums (exact name).";

end;
Les caractères bizarres correspondent au codage en UTF-8 des accents et de l'apostrophe.
A sauvegarder tel-quel sinon les accents ne seront pas reconnus par WoW.
Ajout de 3 variables aussi pour que le test marche (cf ci-dessous).

Je n'ai apas pu tester (voir) les Riches veines de Thorium, la traduction de ces 2 veines est donc supposée et non vérifiée.

J'ai aussi modifié le MapNotesGathering.lua lignes 39 à 46 :
Code:
		if (strfind(arg1, MapNotesGathering_SearchHerb2)) then
			name = gsub(arg1, MapNotesGathering_SearchHerb, "%1", 1);
		elseif (strfind(arg1, MapNotesGathering_SearchOre2)) then
			name = gsub(arg1, MapNotesGathering_SearchOre, "%1", 1);
		elseif (strfind(arg1, MapNotesGathering_SearchChest2)) then
			name = gsub(arg1, MapNotesGathering_SearchChest, "%1", 1);
			typeofobject = "chest";
		end
Changées par :
Code:
		if (strfind(arg1, MapNotesGathering_SearchHerb2)) then
			name = strsub(arg1, MapNotesGathering_SearchHerb_Length, -2)
		elseif (strfind(arg1, MapNotesGathering_SearchOre2)) then
			name = strsub(arg1, MapNotesGathering_SearchOre_Length, -2)
		elseif (strfind(arg1, MapNotesGathering_SearchChest2)) then
			name = strsub(arg1, MapNotesGathering_SearchChest_Length, -2);
			typeofobject = "chest";
		end
[EDIT] mis à jour du fichier localization.lua qui a été posté à l'arrache
Citation :
Publié par Vandalero
Je suis désolé mais RIEN dans le code de MapNotesGathering n'affiche quoique ce soit sur la MiniMap.
Vu que ça fonctionne avec Map Notes, c'est sûrement lui qui s'en charge. En tout cas, on peut quand même afficher les ressources sur la mini-map et y a pas que Gatherer qui a cette option donc.
Dans le doute je viens de revérifier en jeu avec la dernière version de MapNotesGathering 0.5.6 et toujours rien sur ma minimap.

L'auteur de MapNotesGathering est aussi l'auteur de MapNotes.
Ce dernier est un mod qui permet de mettre des notes sur la WorldMap.

Citation :
Publié par Gros Calin // Garith
Map Notes permet d'afficher les notes sur la minimap sans probleme ^^ ( Set as mininote je crois )...
Je vais creuser ca ca pourrait m'interesser
En effet un clic droit sur l'icône de la grande map permet de faire apparaître un icône sur le minimap mais UN SEUL à la fois.
Chaque nouvel icône de la grande map mit en mininote enlève le précédent de la minimap.

L'inconvénient aussi c'est que quand tu arrive près de la fleur, par exemple, tu vois l'icône que tu a positionné mais tu ne sais pas (rien qu'en regardant la minimap) si il y a effectivement une fleur ou pas.
Gatherer de ce point de vue passe l'icône en cercle pour laisser apparaître le point jaune.

Bref, les 2 ne sont pas parfait (à mon sens) et y'a du bon a prendre des 2 cotés
J'ai essayé d'apporter ces modifs à MapNotesGathering, mais avec la dernière version il y a quelque chose qui bug : il me dit que la fonction MapNotes_RegisterDropDownButton n'existe pas.

C'est normal ?
Pour Gatherer:


Depuis le dernier patch, un changement de traduc a eu lieu, herborisme a été remplacé par botanique dans la liste des compétences. Pour que ça marche, il faut changer le fichier localization.lua dans le répertoire de l'add-on : remplacer le terme herborisme par botanique.

Les spots apparaissent à nouveau sur la carte.
Citation :
Publié par Solax
J'ai essayé d'apporter ces modifs à MapNotesGathering, mais avec la dernière version il y a quelque chose qui bug : il me dit que la fonction MapNotes_RegisterDropDownButton n'existe pas.

C'est normal ?
SI tu a remis cosmos, il faut que tu remette la dernière version de MapNotes par dessus, celle livrée avec cosmos n'est pas compatible avec mapnotesgathering.

J'ai aussi modifié le fichier localization.lua car les apostrophes ne sont plus a convertir en code UTF-8.
Voir : https://forums.jeuxonline.info/showt...03#post8422103 (première page de ce thread).
j'ai fait les modifs de Vandalero, mais ca n'affiche toujours pas les plantes sur la worldmap avec la version fr

j'utilise Map Notes 0.5.4
dl ici

et Map Notes Gathering 0.5.6
dl ici

ps : avec la version uk, pas de souci
rah, je comprends pas ca ne marche pas chez moi
j'ai map notes qui marche, mais map notes gathering veut pas

j'ai regarde dans savedvariables.lua, rien ne se sauvegarde dans celui de la fr, alors que dans celui de la uk, des lignes se remplissent dans MapNotesGathering_Data = {


ps : ca marche toujours aussi bien avec la uk
Citation :
Publié par Vandalero
J'ai fait un zip qui marche en français ca serait plus simple et j'aurai du faire ça dès le début :

MapNotesGathering_0.5.6_EN_FR.zip
Ton zip ne fonctionne pas chez moi !

de plus au démarrage ca me donne comme erreur:

Chaine:
Interface\AddOns\MapNotesGathering\Mapnotes...
Lingne:27
Nombre:1
Erreur : attempt to call global
'MapNotes_RegisterDropDownButton' (a nil value)

Tu l'as testé avant de le mettre en ligne?
Si quelqu'un avait un .zip qui fonctionne , je le remercie d'avance
Répondre

Connectés sur ce fil

 
1 connecté (0 membre et 1 invité) Afficher la liste détaillée des connectés