Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. 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/
  2. 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.
  3. 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).
  4. 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/
  5. Hello, You get an error message in game?
  6. 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
  7. 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/
  8. 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".)
  9. ello, Can you share your profile please. Your profile path is close to the water where it you can find fishes?
  10. Hello, try with full namespace: wManager.wManagerSetting.CurrentSetting.BlackListTrainingDummy = false; wManager.BlackListSerializable.AddBlackListToWRobotSession(); If this don't works can you send me your profile.
  11. Droidz

    Cannot launch WRobot

    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).
  12. Hello, Sorry, I made an error on the server, the problem should be resolved and the bot work much better.
  13. Bonjour, Vous avez ce problème depuis quand? Avez vous essayé de désactiver votre antivirus/firewall?
  14. Hello, It is not fake profile... Try to use this profile (with "Quester" product (not grinder): http://wrobot.eu/files/file/409-98-100-meatgut-needs-bones-repeatable-quest-nagrand/
  15. Hello, Look in the pack: http://wrobot.eu/files/category/28-packs/
  16. In Grinder "Product Settings" do you have activate option "Back to last profile position"?
  17. Ok, wait next update and tell me if problem is resolved (or not).
  18. 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.
  19. Hello, Do you get error message in wow when regen start (like "Cannot use when m...")?
  20. 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
  21. 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/
  22. Hello, Can you share your profile please.
  23. 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)?
  24. 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.
  25. Hello, Sincerely it is not easy to implement. I'll look it, I come back here after.
×
×
  • Create New...