Everything posted by Droidz
-
Loot only one Mob/boss ?
Try to add this step (just after kill step): Action type: RunCode Parameter: var _units = new List<wManager.Wow.ObjectManager.WoWUnit>(); var tUnit = wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitLootable(); foreach (var woWUnit in tUnit) { if (!wManager.wManagerSetting.IsBlackListedAllConditions(woWUnit) && woWUnit.Entry == 12345) _units.Add(woWUnit); } if (_units.Count > 0) wManager.Wow.Bot.Tasks.LootingTask.Pulse(_units); Replace 12345 by npc id.
-
Quester (dont) Wait condition
Hello, You need to use "If" like this:
-
apprentissage du quester bot quête (corruption)
Bonjour, Essaye dans ton profile de désactiver l'option qui ce trouve dans général settings pour blacklist les "Taining..." (mannequin). Pour désactiver cette option dans ton profil dans quest order ajouter en début de profil une action de type RunCode avec ce code: wManager.wManagerSetting.CurrentSetting.BlackListTrainingDummy = false;
-
quête journalière assault
Bonjour: 1: Si le donneur de quête est une table, dans "NPC quest giver editor" coche la case "Is Game Object" sur ton NPC (pour obtenir l'ID d'un gameobject utilise l'outil "Development Tools" qui se trouve dans l'onglet "Tools" de la fenêtre principale de WRobot (cliquer sur le bouton "Dump all informations"). 2: Pour utiliser la pierre foyer dans quests order utiliser une action de type "RunCode" avec le code: wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; if (Quest.HasQuest(33814) && !Quest.GetLogQuestIsComplete(33814)) ItemsManager.UseItem(110560); La ligne 1 désactive la fermeture du bot si le joueur est téléporté. La ligne 2 lance le code que si le joueur à la quête id 33814 et que la quête 33814 n'est pas complétée (cette ligne doit êtres modifié ou supprimé). La ligne 3 utilise la pierre de foyer.
-
Quester niveau 27 help svp
Bonjour, Désolé j'ai du retard au niveau du support sur le forum, je viens de répondre:
-
Déplacer un personnage sur un parcours trés précis
Bonjour, Si je chemin ne que vous voulez prendre ne comporte pas de risque (pnj hostile ou autre) vous pouvez essayer dans quests order d'ajouter une action de type "RunCode" avec param: if (wManager.Wow.Helpers.Quest.HasQuest(1234)) { //wManager.wManagerSetting.CurrentSetting.UsePathsFinder = false; wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(1000, 2000, 50)); wManager.Wow.Bot.Tasks.GoToTask.ToPosition(new Vector3(1000, 2000, 50)); wManager.wManagerSetting.CurrentSetting.UsePathsFinder = true; } Dans ce code: Il faut remplacer 1234 (ligne 1) par l'id de la quête Vous pouvez enlever // (ligne 3) pour désactiver le pathfinder pendant le trajet. Remplacer 1000, 2000, 50 (lignes 4 et 5) par la position x,y,z numero 1, puis la position x,y,z numero 2 (vous pouvez ajouter des positions).
-
Quester Interact with NPC (much to near)
Hello, I'll look this. For bypass this problem, you can pickup/turnin quest with quest type "InteractWithNpc" (you can choose interact range) look in the sample sent by private message (quest id 8870).
-
fief (garrison )
Si vous suivez toutes les étapes, cela fonctionne.
-
Need older version 1.1.3 for private server
Try to download http://download.wrobot.eu/wrobot/WRobot_for_5.4.1_17538.zip and extract http://download.wrobot.eu/wrobot/wManager_5.4.2_17688.zip in folder "WRobot/Bin".
- Looting multiple mobs
- Bot stops responding?
-
Need older version 1.1.3 for private server
Hello, Go here:
-
fief (garrison )
Bonjour, Regarder ce post:
-
WRobot for Wow 6.1 PTR server
Hello, WRobot is ready for World of Warcraft PTR server 6.1.0. You can download WRobot for Wow 6.1 here: Best regards.
-
WRobot for Wow 6.1 PTR server
Hello, WRobot is ready for World of Warcraft PTR server 6.1.0. You can download WRobot for Wow 6.1 here: Best regards.
-
Wow 6.1 live next week (February 24th)
World of Warcraft patch 6.1 goes live on February 24th! Source and more info here.
-
Wow 6.1 live next week (February 24th)
-
dungeon profiles- an idea
Hello,
-
can you make a bot to farm WC or other dungeon/ raids
Hello,
-
wrobot shuts down a lot p2
Ok, I put this bug fixed, do not hesitate to tell me if WRobot crash again with similar error message.
-
Ashran (Artifact Fragments + Bonus Objective Brute's Rise)
Sorry, I misread. These profiles ( and ) are normals grinder profiles (move downloaded file in folder "WRobot\Profiles\Grinder\"). These profiles just kills mobs in the profile zone (these mobs complete the quests objectives of http://www.wowhead.com/quest=37477and http://www.wowhead.com/quest=37475 (you need to turn-in the quests manually)) The plugin useful if you don't launch bot in Ashran (to accept popup message).
- farming bois ?
-
Ashran (Artifact Fragments + Bonus Objective Brute's Rise)
Hello, For this profile: Download it. Move downloaded file (98-100 Meatgut Needs Bones [Auto repeat quest].xml) to folder "WRobot\Profiles\Quester\". Launch WRobot Select "Quester" product. Go to tab "Product Settings". Select the profile (98-100 Meatgut Needs Bones [Auto repeat quest].xml). In game go to draenor. Launch bot.
-
Can't lauch Wrobot
Hello, Can you access at this page: http://download.wrobot.eu/wrobot/isOnline.php(this page show "true"). Can you share your please. You can try to reinstall Framework 4.0, Redistributable Visual C + + 2010 (X86) and SlimDX (4.0 X86).
-
pierre de soin comment l'inclure dans un first class
Tu as mis : au lieux de ;. Copie/colle exactement ce code: local name = GetItemInfo(5512); RunMacroText("/use " .. name)