Everything posted by Droidz
-
Artillery Strike
ps: try to run this code in wow chat to check if the result is good: /run local currentCharges, maxCharges, cooldownStart, cooldownDuration = GetSpellCharges(162077); print(currentCharges);
-
Artillery Strike
Strange spell. Can you try to replace GetItemCount by GetSpellCharges
-
Wait for resurrection while in party - plugin
Try this plugin: Wait for Resurrection.cs (not tested), replace line 15 Player name by the name of player at wait. ps: You need to disable option "Resurrect when dead"
-
Garrison (Farm mines/herbs)
Hello, @trekker9876: Do you use this profile with "Quester" bot? Can you give me error message. @pattiepiies: I have updated profile, can you download it again and tell me if problem is resolved.
- 15 comments
- 3 reviews
-
[Sample] Dungeon profile
Hello, You can try to add it in NPC at kill. I have edited the first post, I added more easy tips to create dungeon profile.
-
Language of this Bot
Hello, Mainly in C#.net, for path finding and wow memory management, I use C++ and assembly language.
-
MMORobot marche t'il en arène ?
Bonjour, Non, WRobot ne supporte pas officiellement les arènes (il existe ce profile pour gagner des points: ) Et non vous ne pouvez pas utiliser votre Fightclass (Vitalic elite rogue pvp profile) avec WRobot (les classes de combat hb ne sont pas compatible avec WRobot ou d'autre bot, il existe un produit pour convertir les profile (grinder, gatherer) hb à WRobot). Désolé de ne pas avoir de réponse positive, vous pouvez tester WRobot gratuitement avec la version d'essai afin de vous faire une idée des fonctionnalités.
-
spinning bot
Hello, In general settings try to activate option "Use lua to move". You can try also to increment your fightclass range.
-
Attaque cible
Bonjour, Comme vous l'avez dit, WRotation permet de faire cela. Télécharger une bonne Fightclass sur le site et vous obtiendrez un bon résultat. (vous pouvez désactiver l'option "Manage..." pour garder le control de votre personnage pendant les combats).
-
Paypal/visa ?
Bonjour, Vous pouvez utiliser votre Mastercard avec Paypal.
-
Bot not recognizing that it is connected to game?
Hello, problem resolved, relaunch WRobot and accept update: http://wrobot.eu/page/articles.html/_/news/wrobot-for-wow-620-build-20253-r86
-
Hotfix 20253 Launcher Issue
Hello, this is caused to Wow hotfix, the problem is resolved, relaunch WRobot and accept update: http://wrobot.eu/page/articles.html/_/news/wrobot-for-wow-620-build-20253-r86
-
WRobot for Wow 6.2.0 build 20253
Hello, WRobot support now Wow 6.2.0 (20253). If your Wow server is not updated to build 20253, don't update WRobot (if you have update WRobot, you can download old version here).
-
WRobot for Wow 6.2.0 build 20253
Hello, WRobot support now Wow 6.2.0 (20253). If your Wow server is not updated to build 20253, don't update WRobot (if you have update WRobot, you can download old version here).
-
Bot is crashing after latest updates.
Hello, Can you try to remove folder "WRobot\Data\Meshes\" If you problem is not resolved, can you give me used profile or the log files.
-
WRobot 1.5.1 for Wow 6.2.0 bugs reports
Hello, What do you have asked?
-
reset Blockade counter after x min.
Hello, I have added this in new update.
-
Wait for resurrection while in party - plugin
Hello, Do you have try to disable option "Resurrect when dead" in Party product settings?
-
Rotation Bot needs updating (my suggestion)
You can put in "Lua script": phaseActive = BurningPhase == 1 or CooldownPhase == 1 or ConversePhase == 1; (this condition return true if is in burning or cooldown or converse phase)
- Auto Accept (Wow Popup window)
-
wow and bot freezing when healing
Hello, In "http://www.wowhead.com/spell=17/power-word-shield" spell, in the condition "Buff" can you try use upper and lower cases (replace "power word: shield" by "Power Word: Shield")
-
Artillery Strike
Hello, http://www.wowhead.com/spell=162077/artillery-strike is an spell (not an item) Remove condition lua with code GetItemCount(162077) and remplace RunMacroText("/use Artillery Strike") by RunMacroText("/cast Artillery Strike"). But why you use this spell with RunMacroText (this spell don't works with normal way)?
-
Rotation Bot needs updating (my suggestion)
1 - In game, create macros: Name: OpeningPhase /run if OpeningPhase == 1 then OpeningPhase = 0; print("Opening phase desactivated") else OpeningPhase = 1; print("Opening phase activated") end Name: ConservePhase /run if ConservePhase == 1 then ConservePhase = 0; print("Conserve phase desactivated") else ConservePhase = 1; print("Conserve phase activated") end Name: BurningPhase /run if BurningPhase == 1 then BurningPhase = 0; print("Burning phase desactivated") else BurningPhase = 1; print("Burning phase activated") end Name: CooldownPhase /run if CooldownPhase == 1 then CooldownPhase = 0; print("Cooldown phase desactivated") else CooldownPhase = 1; print("Cooldown phase activated") end Name: DisableAll /run OpeningPhase = 0; ConservePhase = 0; BurningPhase = 0; CooldownPhase = 0; print("All phases desactivated"); Name: ActiveAll /run OpeningPhase = 1; ConservePhase = 1; BurningPhase = 1; CooldownPhase = 1; print("All phases activated"); and put is in your action bar like this: 2 - In your fightclass, add condition "Lua Script" by spell: In "Return value research" put: true In "Return value var" put: phaseActive In "Lua script" put: - For spells Opening phase: phaseActive = OpeningPhase == 1; - For spells Conserve phase: phaseActive = ConservePhase == 1; - For spells Burning phase: phaseActive = BurningPhase == 1; - For spells Cooldown phase: phaseActive = CooldownPhase == 1; 3 - Sample: testtest.xml
-
Evangelisme ne marche pas avec le createur de fight classe
Utiliser ce code: (wManager.Wow.ObjectManager.ObjectManager.Me.BuffStack(81661) >= 5) 81661 est l'id du sort, 5 le nombre de la pile requis. (en condition type C Sharp)
-
Problem with dual spec.
Hello, I cannot add this,for performance, WRobot put in cache an lot of information (it is for this raison that you need to restart WRobot when you change character, or in your case, when you change spe).