Everything posted by Droidz
-
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
- How to cancel the current cast?
- How to cancel the current cast?
- Bug au bout de 10 ou 15 min
-
Auto sell Vendor?
Do you have added the name of cut gems in "Force sell list" (in advanced settings)?
- How to cancel the current cast?
-
Bot is drinking twice or more
http://wrobot.eu/bugtracker/335-using-infinite-food-german-client-r399/?do=findComment&comment=2784
-
3.3.5 Using infinite Food - German Client
Do you have this buff when you use food? http://de.wowhead.com/spell=1129/essen ps: if you can wait next update and tell me if your problem is resolved.
-
Unhuman movement
Droidz replied to Worst HandJob Ever's topic in WRobot for Wow Wrath of the Lich King - Help and supportHello, can you share your log file please.
-
Auto Facing Mobs
I am sorry, but you cannot turn off mobs facing during combat in grinder/quester products.
-
[Wotlk] [Keyboard Hook] Couldn’t register the hot key.
Hello, You get this message (Couldn...) all the time? Even at the first WRobot start (after compturer (re)start?) If yes, this keybinding is used by another software. If this works only the first time, it is because you don't dispose it, add this code before the end of your code: this._hookKeybindings.Dispose();
-
Auto sell Vendor?
Hello, What product do you use? Put good setting in advanced general settings (tab vendor...) , at your profile add totown action and add vendor in your profile (or in "NPC Database").
- Bug au bout de 10 ou 15 min
-
How do po ?
Bonjour, Penser à changer votre pseudo (certaine personne pourrait utiliser votre adresse mail avec de mauvaises intentions): http://wrobot.eu/settings/username/ Pour gagner des PO, le plus simple et d'utiliser le produit "Gatherer" et de ramasser les mines/herbes de WoD et de les vendre aux enchères (ça dépend également de ce qui manque sur votre serveur, le mieux et de trouver ce qui manque le sur votre serveur).
-
TargetBuffCastedByMe 3.3.5 Servers (Anyone who uses this please look at)
If in next update, you can tell me if "TargetBuffCastedByMe" is fixed.
-
Checking if Spell is Launched
Hello, this code is not 100% reliable but you can try: Spell Corruption = new Spell("Corruption"); //... var errorCount = wManager.Wow.Helpers.EventsLua.UsedCountByLuaEventsId(wManager.Wow.Enums.LuaEventsId.UI_ERROR_MESSAGE); Corruption.Launch(); bool failled = wManager.Wow.Helpers.EventsLua.UsedCountByLuaEventsId(wManager.Wow.Enums.LuaEventsId.UI_ERROR_MESSAGE) > errorCount;
-
Lua drink function (request)
Ok, wait next update, problem is probably caused by your server (in official wow server, this item use buff http://www.wowhead.com/spell=167152/refreshment , private server seem use http://www.wowhead.com/spell=434/food and http://www.wowhead.com/spell=430/drink )