Jump to content

camelot10

Elite user
  • Posts

    838
  • Joined

  • Last visited

Everything posted by camelot10

  1. квестером всё что угодно делается. но надо быть семи пядей во лбу что бы чтото сделать
  2. you can start demon hunter on server when you have any level 70 character on that server
  3. im hesitate to ask again, but im kinda must :) @Droidz
  4. im developing and tuning world quests profiles since september (with some breaks). this take 1-6 hours each day. mostly to fix wrobot clumsiness and test and tune everything. at this moment i run two account permanenly on world quests and regular legion quests. have like 30 demonhunters and tons of other characters on many eu realms. and millions of order hall resources also working on stormheim and suramar profiles whole summer. most problem come from wrobot navigation stupidity. hundreds of blackspots/navmesh links/manual paths/checks and routes. sometimes hb profile 1 line equal to complex few days of C# scripting and testing in wrobot. but im ok with that. coz small community - no attention from blizzard. everything else is managable
  5. Version 12.14

    1382 downloads

    Base on http://www.wowhead.com/feral-druid-rotation-guide Tryed to cover all spells/talents/artifact powers. Maybe its required a bit of tuning. I will post update after some testing My profiles
  6. next question: what best profile gph for vannila? how about to make few clicks?
  7. what i remebered from vanila: in middle of vanilla ages - most of chineese farmers was rogues, they constantly begg for food in orgrimmar near bc release most of them was hunters and they farm instances ~50lvl silently
  8. wrobot work on ptr?
  9. 5 bans coz of greed. not bot related
  10. its fixed, but its not helped too much. i reported this bug already
  11. Version 12.14

    1108 downloads

    Base on http://www.wowhead.com/retribution-paladin-rotation-guide Tryed to cover all spells/talents/artifact powers/racials. Maybe its required a bit of tuning. I will post update after some testing My profiles
  12. robotManager.Helpful.Var.SetVar("Test", true); if (robotManager.Helpful.Var.Exist("Test")) Logging.Write("GETVAR " + robotManager.Helpful.Var.GetVar<bool>("Test"));
  13. using System; using robotManager.Helpful; using wManager.Wow.Helpers; using robotManager.Products; using wManager.Wow.ObjectManager; using System.Threading; #if VISUAL_STUDIO namespace CastFixWrobotPlugin { #endif public class Main : wManager.Plugin.IPlugin { bool _isLaunched = false; int _timer = 5; public void Initialize() { _isLaunched = true; Log("started"); while (_isLaunched && Products.IsStarted) { try { //warlock souldrain, cast 6 secs, need to interrupted before end of cast if (ObjectManager.Me.IsValid && ObjectManager.Me.IsAlive && ObjectManager.Me.IsCast && ObjectManager.Me.CastingSpellId == 198590 && ObjectManager.Me.CastingTimeLeft <= 0) { Log("success=198590"); Lua.LuaDoString("SpellStopCasting()"); } } catch (Exception e) { Log("Error: " + e.Message); } Thread.Sleep(_timer * 1000); } } public void Dispose() { _isLaunched = false; Log("stopped"); } public void Settings() { } public static void Log(string text) { Logging.Write("[Cast Fix] " + text); } } #if VISUAL_STUDIO } #endif fix cast its a dirty way to avoid this bug, its still happens for Drain Soul, especialy if character start cast and mob die during cast (happend alot with affli warlock). if you dont stopspell in next 10 seconds then everything stopped and even macro SpellStopCasting() doesnt help. and about that bug: i think its not matter what character/profile do before death. stuck resolver should stop running if character dead. in this case character was on questing/gathering pulse to wowgameobject (collecting ancient mana). and there pvp abusers near entrance to shal'aran
  14. was on questing. attacked by player from opposite faction. got feared and killed in fear (have low itemlevel). stuck resolver initiated in fear and keep unstucking while dead. pause questbot coz this will lead to wrobot close. log attached 29 июл 2017 01H21.log.html
  15. mop is outdated. all grind nerefed. all what peoples need its a mounts/pets and ore/herbs. most of alt fans already have 90+ alt (or maybe 100-110). this mean demand of mop profiles very low and nobody need it.
  16. var _deathKnightDeathGate = new Spell("Death Gate"); var _deathKnightDeathGateExitPosition = new Vector3(2359.64, -5662.41, 382.2605, "None"); if (me.WowClass == WoWClass.DeathKnight && _deathKnightDeathGate.KnownSpell)// && _deathKnightDeathGate.IsSpellUsable) { //akerus if (Usefuls.AreaId == 139) { var myPos = ObjectManager.Me.Position; if (myPos.DistanceTo(_deathKnightDeathGateExitPosition) < 5) { myPos = robotManager.Helpful.Math.GetRandomPointInCircle(myPos, 10); GoToTask.ToPosition(myPos); return true; } } SpellManager.CastSpellByNameLUA(_deathKnightDeathGate.NameInGame); Usefuls.WaitIsCasting(); Thread.Sleep(Others.Random(1000, 2000)); var gate = ObjectManager.GetNearestWoWGameObject(ObjectManager.GetWoWGameObjectByEntry(190942)); if (gate != null && gate.IsValid && gate.CreatedBy == ObjectManager.Me.Guid) { GoToTask.ToPositionAndIntecractWithGameObject(gate.Position, gate.Entry); //Death Gate } } if you dont understand this code, then leave it
×
×
  • Create New...