Skip to content
View in the app

A better way to browse. Learn more.

WRobot

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Droidz

Administrators
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, You character is in combat in game? The mob causing damages at your character?
  2. Checking time left on buffs (on target) LuaScript: local name = GetSpellInfo(1079); _, _, _, _, _, _, expirationTime = UnitDebuff("target", name); timeRemaining = expirationTime - GetTime(); if (timeRemaining <= 7) then retV = "1"; else retV = "0"; end Research: 1 Var: retV Replace 1079 by your spell id and "timeRemaining <= 7" by your condition (timeRemaining contain time left). ps: to get buff/aura spell id you can use this script:
  3. Hello, Look this code: In you case (for spell http://wod.wowhead.com/spell=1079 (id:1079)), to check in your target if remaining time has less than 7 secondes add this lua condition: LuaScript: local name = GetSpellInfo(1079); _, _, _, _, _, _, expirationTime = UnitDebuff("target", name); timeRemaining = expirationTime - GetTime(); if (timeRemaining <= 7) then retV = "1"; else retV = "0"; end Research: 1 Var: result
  4. Droidz replied to flisin's topic in General assistance
    Hello, Sorry but I don't found this option in game. How do you sell items directly from your bag? Thank you.
  5. Hello, WRobot support now World of Warcraft 6.0.3 (19102). You need only to accept WRobot update. More info about WRobot update: here More info about Wow 6.0.3: here ps: If you play on European server, don't update today WRobot, wait tomorrow, if you have update WRobot today you can download WRobot for wow 6.0.2 here.
  6. Droidz posted a article in News
    Hello, WRobot support now World of Warcraft 6.0.3 (19102). You need only to accept WRobot update. More info about WRobot update: here More info about Wow 6.0.3: here ps: If you play on European server, don't update today WRobot, wait tomorrow, if you have update WRobot today you can download WRobot for wow 6.0.2 here.
  7. Droidz replied to fye's topic in General assistance
    Hello, Can you share log file of an bugged WRobot session (you can found it in folder "Logs").
  8. Droidz commented on Droidz's article in News
    @Seumas: Thank you. @flisin: I have fixed problem thank you.
  9. Hello, Can you send me log file of bugged WRobot session (you can found it in "Logs" folder).
  10. Hello, add object entry id in: Tab "General settings" Advanced general settings... Tab "Looting and Farming options" Add entry id in textbox "Harvest object (one id by line)" If you want id you can use wowhead or "dev tools" (tab "Tools"). If you need help to found id, give me complete object name.
  11. Wait next wrobot update (coming in few minutes) and if you can tell me if reloger works. Thank you.
  12. Droidz replied to icecrime's topic in Français
    Bonjour, Vous devez mettre le nom dans la langue de votre client wow (donc en français si vous jouez en français). Pour que ça fonctionne, il faut faire attention aux majuscules/minuscules et accents (le mieux est de faire un copier/coller de wowhead). Pouvez-vous copier ici la liste d'objets que je vérifie ? Merci.
  13. Hello, I'll look this, I come back here after
  14. (if it is not problem please send me also debug and error logs)
  15. Hello, do you are near an dig site zone? If yes I cannot detect exactly if character is in zone, for detect if in zone, WRobot try to launch Survey spell 3 time, if he cannot launch spell WRobot go to dig site. Do you have try to wait?
  16. Hello, To add task, you need to double click on white textbox (I'll add button "Add" to avoid this problem).
  17. Droidz commented on Droidz's article in News
    Hello, Private messages is in top/right of page
  18. Hello, I have add this, wait next update (in a few hours).
  19. Hello, In the last update, normally you can now use in the fight classes the spell name like he appear in game. Tell me if you get problem with an spell
  20. I have increment the number max of try to selling (8 to 12), can your tell me if this allows your character to sell all items.
  21. Try with new update. If you problem is not resolved use base (parent) spell name (to get base spell name use this script: ). I get this with my character: [D] 19:14:48 - Children spell found: Dark Soul: Instability (113858) (parent spell: Dark Soul (77801)) [D] 19:14:48 - Children spell found: Immolate (348) (parent spell: Corruption (172)) [D] 19:14:48 - Children spell found: Incinerate (29722) (parent spell: Shadow Bolt (686)) [D] 19:14:48 - Children spell found: Mortal Coil (6789) (parent spell: Crippling Shadows (175707)) [D] 19:14:48 - Children spell found: Rain of Fire (104232) (parent spell: Rain of Fire (5740)) Tell me if this works with normal spell name (Incinerate and Immolate).
  22. Hello, Do you speak about this script: ? If yes I have updated script here:
  23. Hello, I have noted your suggestions, to avoid to reset the current running time you can pause WRobot (instead to stop it).
  24. Get base (parent) spell name and the id: Launch this script (in tab "Tools" > "Development Tools" > copy script in textbox and click on button "Lua (return value in 'ret')). for i=1,1000 do local spellName = GetSpellBookItemName(i, BOOKTYPE_SPELL); if not spellName then break; end local _, tid = GetSpellBookItemInfo(i, "player"); local spellNameReal = GetSpellInfo(tid); if spellNameReal and spellName ~= spellNameReal then print(spellName .. " > " .. "\124cFF4FF763" .. spellNameReal .. " (id: " .. tid .. ")"); else print(spellName .. " (id: " .. tid .. ")"); end end This write in wow chat list of spells of your spellbook and if exist (in green) the parent spell name. (By sample, http://www.wowhead.com/spell=12294/mortal-strike is the parent of http://www.wowhead.com/spell=78/heroic-strike ) ps: Now normally WRobot found automatically the childrens/parents spells.
  25. Get wow bouton/window name: /run print(GetMouseFocus():GetName()) or /run DEFAULT_CHAT_FRAME:AddMessage(GetMouseFocus():GetName()) Copy this script in wow chat, put your mouse over an button and press enter key. In wow chat appear button name (you can use this like "/click TheButtonName" or "TheButtonName:Click()" or "RunMacroText("/click TheButtonName")" if you use it in fightclass). You can also use macro: /framestack More info: http://wow.gamepedia.com/Framestack

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.