Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, do you run wow in "Window mode" (not full screen) (and never minimize wow when wrobot running)?
  2. Hello, look this post: http://wrobot.eu/forums/topic/2301-garrison-starting-work-orders/#comment-10704
  3. 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();
  4. Can you share your log file please (just after than WRobot are pause).
  5. Droidz

    Go to inn button

    Hello, thank you for the suggestion, but I'll not add it.
  6. 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")
  7. 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).
  8. 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.
  9. Hello, are you sure that this problem was not caused by your addon or server (or an wow settings)? Message is deleted for moi.
  10. Hello, At the last step, can you try to replace "GoToStep" by "LoadProfile" (put in parameter your profile name [Dungeon] Mana Tomb.xml)
  11. Hello, for the moment is not possible, I'll add it (but I ignore when). I comeback here when is done
  12. Hello, Sorry, current quest creator interface cannot support it, but if one day I change the interface I would.
  13. Hello, look this: DontKilltheFatOne.xml (works for me)
  14. 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).
  15. 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.
  16. 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.
  17. 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
  18. 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";
  19. Hello, can you send me the used profiles please (and tell me where is start).
  20. Hello, sorry but I don't think release WRobot for The Burning Crusade (too many change)
  21. Hello, you can try to use Wotlk or MoP profiles (and some WoD profiles).
  22. Hello, if you get again this problem you can try to remove folder "WRobot\Data\Meshes\" (or just "WRobot\Data\Meshes\Draenor\ " if you get problem in draenor). This problem can happen when WRobot fail to download a complete mesh file.
  23. http://wrobot.eu/forums/topic/2825-draenor-arch-crashing-immediately-or-after-a-few/
  24. Si vous voulez pouvoir lancer WRobot normalement, vous devez installer SlimDX, si le problème n'ai pas résolu, vous pouvez essayer de changer de version de directx (dans les options de wow, sélectionner la version 9). Mais utiliser "Wrobot No DX" ne pose pas de problème.
  25. No sorry, for it you can use "Relogger" program.
×
×
  • Create New...