Jump to content

Droidz

Administrators
  • Posts

    12510
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, I keep note of your suggestion. I come back here when revival is improved (I'll do my best, but it's not easy to find the best revival position).
  2. Hello, thank you. I comeback here when is done.
  3. Bonjour, j'ai noté le problème, je reviendrais sur ce sujet quand ce sera corriger. Pour le moment essaye d'éviter ce type de zone.
  4. Droidz

    Go to inn button

    Go to nearest vendor (Go to town) is an task of the bot used on all products. Go to inn task don't exist in WRobot (making it difficult to integrated). But, you can make profile with the position of inn to go quickly to inn
  5. when you click on red cross message is deleted? If yes, can you give me button name please.
  6. Hello, do you run wow in "Window mode" (not full screen) (and never minimize wow when wrobot running)?
  7. Hello, look this post: http://wrobot.eu/forums/topic/2301-garrison-starting-work-orders/#comment-10704
  8. Droidz

    Stop bot at #

    Hello, you can edit this plugin: http://wrobot.eu/files/file/512-loot-statistics/ , to stop product, use this C# code: Products.ProductStop();
  9. Can you share your log file please (just after than WRobot are pause).
  10. Droidz

    Go to inn button

    Hello, thank you for the suggestion, but I'll not add it.
  11. Hello, put all codes in one step. Use step type "While" and in param put: if (ObjectManager.Me.WowClass == WoWClass.Paladin) { if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(9517.421f, -6871.368f, 18.61072f), 16275, -1, false)) { Thread.Sleep(5000); wManager.Wow.Helpers.Lua.RunMacroText("/script SelectGossipOption(1)"); wManager.Wow.Helpers.Lua.LuaDoString("LoadAddOn'Blizzard_TrainerUI' f=ClassTrainerTrainButton f.e = 0 if f:GetScript'OnUpdate' then f:SetScript('OnUpdate', nil)else f:SetScript('OnUpdate', function(f,e) f.e=f.e+e if f.e>.01 then f.e=0 f:Click() end end)end"); Thread.Sleep(5000); return false; // return false, finish can exit While step } return true; // return true, not finish, need to run again While step } else { return false; // return false, finish because not paladin, not need to run again While step } (don't forget to add the "EndWhile")
  12. Bonjour, 1: Ça ne va pas être possible de changer le produit dans la fenêtre principale (visuellement). Pour charger un produit, le code est: Products.DisposeProduct(); Products.LoadProducts("productName"); // sans le .dll Pour modifier les configurations, il y a plusieurs possibilités, mais aucune de vraiment propre: - Il est possible de modifier le fichier XML directement (c'est le plus simple) (pour le fichier config du quester par exemple, code pas testé): var fileName = Application.StartupPath + @"\Settings\Quester-" + Others.DelSpecialChar(ObjectManager.Me.Name + "." + Usefuls.RealmName) + ".xml"; if (File.Exists(fileName)) { var txt = File.ReadAllText(fileName); var currentProfile = Others.StringBetween(txt, "<ProfileName>", "</ProfileName>"); txt = txt.Replace(currentProfile, "nouveau nom de profil.xml"); File.WriteAllText(fileName, txt); } - La il va falloir rajouter en référence les dll des produits (donc compiler le plugin en DLL), puis utiliser ce code (pour le quester par exemple): Quester.Bot.QuesterSetting.Load(); if (Quester.Bot.QuesterSetting.CurrentSetting != null) { Quester.Bot.QuesterSetting.CurrentSetting.ProfileName = "nouveau nom de profil"; Quester.Bot.QuesterSetting.CurrentSetting.Save(); } Dans les deux cas, il faudra (re)charger le produit après avoir modifié les config (généralement, les produits chargent le fichier de configuration au chargement). 2: Le bot fonctionnera mal en Pause, il est possible que quelques API de WRobot ne fonctionnent pas correctement. Dans votre code, pendant la pause vous pouvez vérifier si le personnage est attaqué avec le code "Conditions.IsAttackedAndCannotIgnore", si ça retourne "true" désactivé la pause (et wrobot ce défendra). ______ Si c'est juste pour changer de profile, il est possible de: Products.DisposeProduct(); ArgsParser.Product = "Quester"; ArgsParser.Profile = "nouveau nom de profil.xml"; Products.LoadProducts("Quester"); (ca utilise l'api que le relogger utilise). Un plugin n'ai pas vraiment fait pour faire cela (un produit est plus adapté (comme "Schedule") pour ce genre de tache).
  13. Hello, when you say never end, when mana is at 100% wrobot continue to regen? I'll try to fix problem to avoid to regen in water.
  14. Hello, are you sure that this problem was not caused by your addon or server (or an wow settings)? Message is deleted for moi.
  15. Hello, At the last step, can you try to replace "GoToStep" by "LoadProfile" (put in parameter your profile name [Dungeon] Mana Tomb.xml)
  16. Hello, for the moment is not possible, I'll add it (but I ignore when). I comeback here when is done
  17. Hello, Sorry, current quest creator interface cannot support it, but if one day I change the interface I would.
  18. Hello, look this: DontKilltheFatOne.xml (works for me)
  19. Hello, do you use the lastest WRobot version? For install plugin: - Download it. - Move downloaded file in folder "WRobot\Plugins\". - If downloaded file is zipped unzip it (in folder plugins). - (Re)Launch WRobot. - Go to tab "Plugins" and activate plugin (you need to reactivate plugin when you change character).
  20. Can you try to use this plugin: Auto Accept BG.cs (move downloaded file in folder "WRobot\Plugins\", (re)launch WRobot, go to tab "Plugins" and activate it. ps: Your problem is probably caused because you play on private server, I'll not edit WRobot code.
  21. Can you try to use this plugin please: http://wrobot.eu/files/file/411-auto-accept-wow-popup-window/ Can you send me screenshot of the popup.
  22. Hello, I am not sure to understand. But, "EndIf" and "EndWhile" does not use condition (condition is in "If" and "While"). And the "End..." return to the "While" or "If" of the same color. While While If EndIf EndWhile EndWhile
  23. Hello, No feature for it. But, with quester profile you can force it. Add step type runcode with this c# code: wManagerSetting.CurrentSetting.FoodName = "New food name"; for water use: wManagerSetting.CurrentSetting.DrinkName = "New water name";
  24. Hello, can you send me the used profiles please (and tell me where is start).
  25. Hello, sorry but I don't think release WRobot for The Burning Crusade (too many change)
×
×
  • Create New...