Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, try to pick the quest manually with quest type interactwithnpc (and use lua code to only select your quest)
  2. Hello, To click on crystal you can add object in object to harvest list (in advanced general settings), if you just to to interact with npc you can add it to npc to attack, but in your case it is better to use Quester profile
  3. Hello, some plugins have not settings, but you can open it with notepad to change code (where you have found this plugin?)
  4. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  5. Hello, it's depend of your profile, https://wrobot.eu/forums/topic/1925-sample-dungeon-profile/
  6. I tried with automaton and grinder profile several hours each without plugin/fightclass and I cannot reproduce your problem. You get this problem without plugin but you have try without fightclass? He seems than WRobot press key (jump or forward I don't know) but never release it (I checked code several time and seem not in WRobot)
  7. Hello, sorry I cannot add it to tab tools, editor is in 'Quester.dll' product.
  8. If you can launch all time WRobot with shortcut "WRobot No Edit Memory" (and check if you use default wow client, no client of Tauri) and tell me if you get ban again. But seem to be manual ban
  9. You confirm that "W" is to move Forward ?
  10. I confirm than fly mount management on TBC is horrible (especially the sliding before dismounting, I'll try to resolve it) But I cannot reproduce the problem of this post after several hours, someone have profile to help me to reproduce it please.
  11. Hello, It is connection problem with auth server, if this don't close WRobot you can ignore it.
  12. Hello, do you have errors in wow or wrobot log? do you have try to disable wow addons ?
  13. Hi, I reactived your key
  14. ty, If you can please active radar3d next time than you have this problem (to check where wrobot want to go)
  15. Hello, like https://wrobot.eu/forums/topic/8668-workaround-for-stutter-flying/?tab=comments#comment-53730 ?
  16. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  17. I think it is problem with "new ThreadStart" but you don't need to create new thread you can call "GoToFarm()" directly
  18. don't put code in loop, you need to call this code only one time
  19. Hello, try to add log to check if he try to use item or not (before "ItemsM anage r.UseItem (itemId);") You can also try to use lower "Thread.Sleep" if loot is very fast on your server. Or you can try this code (not tested): wManager.Events.LootingEvents.OnLootSuccessful += delegate(WoWUnit unit) { uint itemId = 42480; int questId = 12995; if (Quest.HasQuest(questId)) { ItemsManager.UseItem(itemId); Thread.Sleep(50); Usefuls.WaitIsCastingAndLooting(); } };
  20. It is same problem like here: https://wrobot.eu/bugtracker/battleground-debuff-r1251/?do=findComment&comment=5834 Your plugin run code not on the same thread that your current product thread, in your code at the same time you do 2 tasks
  21. Hello, do you use option "Run tasks in loop" (in relogger profile option)? Do you check if you can found more info in wrobot log?
  22. you are sure that you haven't errors or debugs info in you log file? You have try to reinstall WRobot in new folder? Install required softwares (slimdx and vc++) ?
  23. yes tab "Tools" you have blacklist editor
  24. 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;
  25. 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 { } }
×
×
  • Create New...