Jump to content

Droidz

Administrators
  • Posts

    12508
  • Joined

  • Last visited

Everything posted by Droidz

  1. yes tab "Tools" you have blacklist editor
  2. Hello, GetSpellBookItemInfo seem added in Wow 4.0.1. Try: local id = 6673; local nSearch = GetSpellInfo(id); if nSearch then local i = 1 while true do local spellName, spellRank = GetSpellName(i, BOOKTYPE_SPELL) if not spellName then break end if nSearch == spellName then return true; end i = i + 1 end end return false;
  3. Hello, I think it is more easy to use " MiniMapGenerator.PathImage", sample: void RefreshMap(object objs) { try { var prm =(List<double>) objs; double zoom = prm[0]; double actualWidth = prm[1]; double actualHeight = prm[2]; lock (_lockShowMap) { var landmarksMiniMapCache = GenerateLandmarks(zoom); var image = new MiniMapGenerator.PathImage(Usefuls.ContinentNameMpq, ObjectManager.ObjectManager.Me.Position, landmarksMiniMapCache, (float)zoom); image.Generate(actualWidth, actualHeight); if (image.Result != null) { // Save img: if (!string.IsNullOrWhiteSpace(_saveTo)) { try { image.Result.Save(_saveTo, ImageFormat.Jpeg); } catch { } _saveTo = ""; } // Show img: var hbmp = image.Result.GetHbitmap(); try { var ret = Imaging.CreateBitmapSourceFromHBitmap(hbmp, IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions()); ret.Freeze(); Dispatcher.Invoke(DispatcherPriority.Background, new Action(() => MapImage.Source = ret)); //Dispatcher.BeginInvoke( // DispatcherPriority.Send, // new Action(() => MapImage.Source = null)); //Dispatcher.BeginInvoke( // DispatcherPriority.Send, // new Action(() => MapImage.Source = ret)); } finally { DeleteObject(hbmp); } } image.Dispose(); } } catch { } }
  4. Hello, do you have error in your log?
  5. not tested but try this plugin: Dismount cancelaura.cs (I'll try to resolve this problem in next updates)
  6. On your screenshot the font does not seem to be the default Wow font. After some software can cause problem like malwarebyte or some antivirus try to disable all
  7. Hello, you can resolve this problem if you blacklist water or record good road (https://wrobot.eu/forums/topic/11007-add-waterroads-myself/?do=findComment&comment=52395)
  8. Hello, you need to attack this type of mobs? if not you can blacklist these
  9. Can you tell me when he don't leave ghost wolf please?
  10. Hello, sorry you cannot do that
  11. Hello, if (System.DateTime.Now.TimeOfDay.Hours == 20 && System.DateTime.Now.TimeOfDay.Minutes == 0) robotManager.Products.Products.ProductStop(); (not tested)
  12. Droidz

    ObjectManager.Me.Race

    Try to use ObjectManager.Me.WowRace instead (or lua)
  13. Hello, (when you don't use lock frame) Lua is slow because WRobot need to inject code in wow (that run in next frame refresh). If you call 5 times lua (on 1 thread) you need to wait ~5 wow frames, ~80ms with 60 fps. You can: - lockframe (it is a easier way, and in some case better) - avoid to use lua (but a lot of wrobot api methods use lua it is hard to know what methods you can use or not) - try to avoid useless lua call (by sample if you use "if (lua.do("is ok") && me.health < 10 && me.havetarget)" replace it by "if (me.havetarget && me.health < 10 && lua.do("is ok"))" - combine your lua scripts (if you use several lua calls in one condition try to combine it to one call)
  14. I really think it's not the default client, try to re upload wow to another site Try also to install Slimdx and vc++: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
  15. Run in windowed mode (not maximized, minimized or full screen)
  16. Hello, wait next update and use this: wManager.Wow.ObjectManager.WoWUnit.MaxInteractDistance = 50.0f; wManager.Wow.ObjectManager.WoWUnit.MinInteractDistance = 4.3f;
  17. It is what you said but I need to see it, if you want help share log of session without addons and plugin enabled please, if you don't want do it I cannot help you
  18. [E] 14:12:33.628 - Warning: It is recommended to disable all wow AddOns. Disable wow addons and share your log of session without addon please
  19. Hello, do you use window mode (and not maximized and not minimized)? Do you have error in your log?
  20. sorry, step 7: https://wrobot.eu/forums/topic/1381-repairinstall-wrobot/?tab=comments#comment-966
  21. Hello, can you read this: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ install "Slimdx" and "vc++ 2010"
×
×
  • Create New...