Jump to content

Droidz

Administrators
  • Posts

    12587
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, problem resovled by private message
  2. Update done
  3. Update in progress
  4. "Logs" folder in Wrobot folder
  5. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  6. Bonjour, je pense que ce problème est causé par votre serveur, j'ai jamais vu ce probleme sur officiel
  7. Hello, use event "robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState" like: https://wrobot.eu/forums/topic/5078-plugin-for-attacking-specific-mobs/?do=findComment&comment=23616
  8. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  9. You have launched battlenet launcher to check if Wow is updated?
  10. Hello, try to replace line 4 by var n = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitByEntry(mobID), false); Try also to active radar3d to check if is blacklisted
  11. Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  12. Hello, it is not a bug, items names are server side, you need to have item in your bag (or request item info like when you "GetNameById) for that Wow request the item name at the server ( http://wowwiki.wikia.com/wiki/API_GetItemInfo )
  13. Hello, you need to call wManager.Wow.Helpers.PathFinder.GetZPosition(new Vector3(1, 2, 3));
  14. Hello, in vanilla like this: var error = wManager.Wow.Memory.WowMemory.Memory.ReadStringUTF8(0xB4DA40);
  15. Use plugin like using wManager; using wManager.Wow.Enums; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { EventsLua.AttachEventLua(LuaEventsId.PLAYER_LEVEL_UP, delegate { if (ObjectManager.Me.Level >= 20 && !wManager.wManagerSetting.CurrentSetting.UseMammoth) { wManagerSetting.CurrentSetting.UseMammoth = true; wManagerSetting.CurrentSetting.Save(); } }); } public void Dispose() { } public void Settings() { } }
  16. Hello, no with default features
  17. Hello, if you can wait next update
  18. Hello, yes and you have free trial verison to test if WRobot works on your private server
  19. Sorry, I read your post to quickly, use code like: wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { var me = wManager.Wow.ObjectManager.ObjectManager.Me; if (wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && unit.IsValid && !me.IsCast && unit.IsGoodInteractDistance) // put here your conditions to running backwards { var p = robotManager.Helpful.Math.GetPosition2DOfAngleAndDistance(me.Position, robotManager.Helpful.Math.GetAngle(unit.Position, me.Position), wManager.Wow.Helpers.CustomClass.GetRange - unit.GetDistance - 3); var z = wManager.Wow.Helpers.PathFinder.GetZPosition(p); if (z != 0) { p.Z = z; wManager.Wow.Bot.Tasks.GoToTask.ToPosition(p, 3.5f, true, context => (wManager.Wow.Helpers.Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)); } } };
  20. Hello, try lua code like: local name = GetSpellInfo(12345); RunMacroText("/cancelaura " .. name) (replace 12345 by your spell id)
  21. Droidz

    pet battle

    Hello, Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  22. Hello, do you use last version of WRobot, I have try to resovled this problem
  23. Hello, you can increment npc seearch distance in general settings
  24. Hello, you use last WRobot verison? Can you share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
×
×
  • Create New...