Everything posted by Droidz
-
WoW Addons for 3.3.5
Hello, thank you for the addons, do not hesitate to post it in download category: http://wrobot.eu/files/category/129-wow-addons-wotlk/
- Plugins Help
-
up mascotte
Bonjour, utiliser ce code dans "Product settings" dans "Lua hook...": http://wrobot.eu/forums/topic/734-request-power-leveling-battle-pets-bug-found/?do=findComment&comment=4173
-
(General) Russian names and settings not saving
Hello, I'll fix it, i comeback here when is done.
-
[Gatherer Bug] Not landing on veins
Hello, can you try to activate "Use lua to move" in advanced general settings.
-
version d'essai
Bonjour, je suis désolé mais le site français n'a pas était mise à jour. La version d'essai n'existe plus sur WRobot pour serveur officiel de Wow (mais elle est diponible sur WRobot pour serveur privée). ps: http://wrobot.eu/articles/news/some-changes-r99
-
(possibly bug) Auctioner not deleting Sale Pending messages from mailbox
Sorry, I have fixed my first post: http://wrobot.eu/bugtracker/possibly-bug-auctioner-not-deleting-sale-pending-messages-from-mailbox-r386/?do=findComment&comment=2794
-
mutuation/umlaut in name is resetting config
You get message in your log about teamviewer (check if you have process named "TeamViewer.exe" or "TeamViewer_Service.exe")
-
mutuation/umlaut in name is resetting config
Are you sure that this problem is not caused by your antivirus?You have try to kill all teamviewer process and service?
-
Party Buffing
Hello, in you spell activate option "For friends (party)". When you use "For friends (party)", you need to use spell condition "Target..." (replace condition "Buff" by "Target Buff"), and check manually target distance (put spell range) with conditon "Target Distance". This option works only on product "WRotation" and "Party".
-
On the fly editing of settings
Hello, sorry I'll not add possibility to edit settings when WRobot running (to avoid bug). Regards.
- Hunter's not using auto shoot
- Hunter's not using auto shoot
-
mutuation/umlaut in name is resetting config
Hello, do you get error on your log?
-
problems with the yellow circle, took the bot, but still continues to yellow belt tightening when right mouse button.
Hello, http://wrobot.eu/forums/topic/2566-agreed-click-to-move/?do=findComment&comment=11708
-
(Auction) doesn't detect mails if mailbox already open
Hello, thank you if you can wait next update.
-
Wotlk auction bot has no idea what to do if a mail has more than 1 item
Hello, wait next update and tell me if problem is resolved.
-
(possibly bug) Auctioner not deleting Sale Pending messages from mailbox
I am sorry but I cannot add code to remove mail (I cannot test if user want keep or not mail). To remove quickly mails, you can run this lua code in tab "Tools" > "Development Tools" > paste code and click on button "Lua (return value in 'ret')": for i = 1, GetInboxNumItems() do local packageIcon, stationeryIcon, sender, subject, money, CODAmount, daysLeft, hasItem, wasRead, wasReturned, textCreated, canReply, isGM = GetInboxHeaderInfo(i); if hasItem == nil or hasItem == 0 or not hasItem then if money == 0 or not money then DeleteInboxItem(i); end end end (this code remove all mails without money/item)
-
Profil pour woltk 3.3.5
Le produit "Automaton" restera dans la même zone (vous devez changement de zone manuellement). Avec le produit "Grinder", il est possible que le profil contienne plusieurs zone (WRobot change de zone quand le niveau de la zone actuelle est dépassé). Il est possible de vendre/réparer automatiquement avec les deux produits, il vous suffit d'ajouter le vendeur/réparateur a votre profil (ou dans la "NPC DB" onglet "Tools") et de configurer la vente/réparation dans les paramètre avancé (Advanced general settings).
-
Won't attack certain targets?
Hello, can you share your log file (after get this problem). Do you have activate option "start fighting with elite" and increment "max unit near" (in advanced general settings)?
- TBC
-
Profil pour woltk 3.3.5
Bonjour, Oui les profils des autres extensions peuvent fonctionner (le mieu et de tester). Vous avez également le produit "Grinder" et "Automaton" pour monter de niveau.
-
Product key
Hello, you can buy license key here: http://wrobot.eu/store/category/2-wrobot/
-
Add "MeHasDebuff" to Fight Class Manager
Hello, I don't think add this in wrobot API, but you can use lua condition: http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/?do=findComment&comment=13302
-
Snippets of LUA codes (for FightClass)
Get type of buff/debuff LuaScript: local name = GetSpellInfo(53817); local name, rank, icon, count, debuffAuraType = UnitAura("player", name); - you can replace player by UnitId - Replace 53817 by your spell id. Research: Magic or Disease or Poison or Curse Var: debuffAuraType ps: to get buff/aura spell id you can use this script: http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment%3Fcomment%3D8832