-
Posts
12581 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
Hello, Close WRobot and in the folder "WRobot\Settings\" remove all file which start with "Auction-****.xml". If this don't resolve your profile, please share your log file: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Hello, Can you share your log file please: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ And the name of used profiles.
-
Horde 90 to 100 profile request all I'm seeing is ally
Droidz replied to Infantry8990's topic in Profiles and Requests
Hello, You can found profiles for 90-100 here: http://wrobot.eu/files/category/36-90-100/ . Seem complete for horde (and some alliance profile works with horde character). If you don't found profiles, you can use "Automaton" bot, or create your own profile (it is easy and quickly). -
Hello, What is the error message? Can you give me your log file please: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Not Gathering
Droidz replied to catalin87's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, You get an error message in game? -
Salut. 1: D'après WowHead ça fait apparaître ce NPC: http://www.wowhead.com/npc=47649/wild-mushroom ce qui donnerais un code de ce style pour savoir si on est dans à portée: var list = wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitByEntry(47649); foreach (var woWUnit in list) { if (woWUnit.IsValid && woWUnit.GetDistance < 7) // && woWUnit.SummonedBy == wManager.Wow.ObjectManager.ObjectManager.Me.Guid) { // DANS LA ZONE } } (vérifie si quand tu est à portée tu n'as pas un buff ( comme http://www.wowhead.com/spell=160382/defense ???), c'est plus simple a vérifier) 2: Oui avec lua par exemple tu peux utiliser http://wow.gamepedia.com/API_IsInInstance et http://wow.gamepedia.com/API_IsInArenaTeam . Tu peux également vérifier le ContinentId ou AreaId (si tu veux plus de précision): wManager.Wow.Helpers.Usefuls.ContinentId et wManager.Wow.Helpers.Usefuls.AreaId 3,4,5: Je vais regarder ca, je reviens ici après. 6: Oui, avec wManager.Wow.ObjectManager.ObjectManager.Target.WowClass
-
Hello, Can you try to install SlimDX . If your problem is not resolved, can you share your log file please: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
- 6 replies
-
- battlegrounds
- battleground
-
(and 3 more)
Tagged with:
-
Wrobot changes equipped epic items on gray item on char
Droidz replied to odd_hippo's topic in Quester assistance
Hello, This problem is very strange, I think that is caused when wrobot try to sell bag items at the vendor. Can you tell me if items are equiped when WRobot go to the vendor please? (to force WRobot to go to the vendor you can click on the bouton "Go to town..." tab "Tools".) -
skipping pools with self made profile [fisherbot]
Droidz replied to schlompf's topic in Fisherbot assistance
ello, Can you share your profile please. Your profile path is close to the water where it you can find fishes? -
Hello, try with full namespace: wManager.wManagerSetting.CurrentSetting.BlackListTrainingDummy = false; wManager.BlackListSerializable.AddBlackListToWRobotSession(); If this don't works can you send me your profile.
-
Hello, Try to install SlimDX . Can you check if you have file 'MemoryRobot.dll' in the folder '\WRobot\Bin\' (if you cannot found this file, check if your antivirus not delete it).
-
Not Looting
Droidz replied to catalin87's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, Sorry, I made an error on the server, the problem should be resolved and the bot work much better. -
Bonjour, Vous avez ce problème depuis quand? Avez vous essayé de désactiver votre antivirus/firewall?
-
97-100 Nagrand (with repeatable Turn In XP Quest Items)
Droidz commented on Droidz's file in 90-100 - Legion
-
Hello, Look in the pack: http://wrobot.eu/files/category/28-packs/
-
Trouble with profle creator for entrance to a dungeon
Droidz replied to odd_hippo's topic in Grinder assistance
In Grinder "Product Settings" do you have activate option "Back to last profile position"? -
Ok, wait next update and tell me if problem is resolved (or not).
-
I have found this: http://wowwiki.wikia.com/wiki/Wait Result: local waitTable = {}; local waitFrame = nil; function WaitToCall(delay, func, ...) if(type(delay)~="number" or type(func)~="function") then return false; end if(waitFrame == nil) then waitFrame = CreateFrame("Frame","WaitFrame", UIParent); waitFrame:SetScript("onUpdate",function (self,elapse) local count = #waitTable; local i = 1; while(i<=count) do local waitRecord = tremove(waitTable,i); local d = tremove(waitRecord,1); local f = tremove(waitRecord,1); local p = tremove(waitRecord,1); if(d>elapse) then tinsert(waitTable,i,{d-elapse,f,p}); i = i + 1; else count = count - 1; f(unpack(p)); end end end); end tinsert(waitTable,{delay,func,{...}}); return true; end local name = GetSpellInfo(108920); RunMacroText("/cast " .. name); MoveBackwardStart() WaitToCall(2, function() MoveBackwardStop() end) This seem to work on MoP.
-
Hello, Do you get error message in wow when regen start (like "Cannot use when m...")?
-
Calls function 'callback' after 'duration' seconds http://wow.gamepedia.com/API_C_Timer.After C_Timer.After(3, function() YOURCODEHERE end) SAMPLE: Moving backward during 2 secondes: MoveBackwardStart() C_Timer.After(2, function() MoveBackwardStop() end) Sample of use: http://wrobot.eu/forums/topic/2482-shadow-priest-void-tendrils-help/?do=findComment&comment=11415
-
Hello, You can use this lua code (put it in spell name and activate spell option "Not spell, is lua script"): local name = GetSpellInfo(108920); RunMacroText("/cast " .. name); MoveBackwardStart() C_Timer.After(2, function() MoveBackwardStop() end) API: http://wow.gamepedia.com/API_C_Timer.After (replace 2 by the number of second), http://wow.gamepedia.com/API_MoveBackwardStart, http://wow.gamepedia.com/API_MoveBackwardStop, http://wrobot.eu/forums/topic/1688-lua-and-multi-language-support/
-
Trouble with profle creator for entrance to a dungeon
Droidz replied to odd_hippo's topic in Grinder assistance
Hello, Can you share your profile please. -
Hello, I come back here to ask you if you still have this problem (if you find the cause, or if you think that the problem is caused by WRobot)?
-
Bonjour, (Re)Installer SlimDX . Si le problème n'ait pas résolu, merci de créer un nouveau sujet sur le forum avec votre fichier journal.
-
Hello, Sincerely it is not easy to implement. I'll look it, I come back here after.