-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
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:
-
How can I find the time remaining on a buff/debuff?
Droidz replied to s7itch3s's topic in WRotation assistance
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 -
Hello, Sorry but I don't found this option in game. How do you sell items directly from your bag? Thank you.
-
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.
-
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.
-
Hello, Can you share log file of an bugged WRobot session (you can found it in folder "Logs").
-
@Seumas: Thank you. @flisin: I have fixed problem thank you.
-
Hello, Can you send me log file of bugged WRobot session (you can found it in "Logs" folder).
-
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.
-
Wait next wrobot update (coming in few minutes) and if you can tell me if reloger works. Thank you.
-
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.
-
Hello, I'll look this, I come back here after
-
Archaeology bot is just flying to the ground.
Droidz replied to Ohren's topic in Archaeologist assistance
(if it is not problem please send me also debug and error logs) -
Archaeology bot is just flying to the ground.
Droidz replied to Ohren's topic in Archaeologist assistance
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? -
Hello, To add task, you need to double click on white textbox (I'll add button "Add" to avoid this problem).
-
Hello, Private messages is in top/right of page
-
Hello, I have add this, wait next update (in a few hours).
-
Arcane mage fight class will not attack.
Droidz replied to Koala590's topic in Fight Classes assistance
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 -
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.
-
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).
-
The LUA loop to figure out shared spell ID's
Droidz replied to Ohren's topic in Fight Classes assistance
Hello, Do you speak about this script: ? If yes I have updated script here: -
Hello, I have noted your suggestions, to avoid to reset the current running time you can pause WRobot (instead to stop it).
-
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.
-
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
-
Hello, You can share here useful lua scripts