Everything posted by camelot10
-
Фарм в пещере
квестером всё что угодно делается. но надо быть семи пядей во лбу что бы чтото сделать
-
Objects inside vehicle
you can start demon hunter on server when you have any level 70 character on that server
-
Objects inside vehicle
im hesitate to ask again, but im kinda must :) @Droidz
-
What Is The Status Of World Quests and Quest Chains (Unpaid or One-time Payment)
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
- Druid Feral
-
[Solved] Bot mark quest as complete when failed.
put complete condition check for objective
- complte quest info by id
-
best grindclass for botting in vanilla ?
next question: what best profile gph for vannila? how about to make few clicks?
-
best grindclass for botting in vanilla ?
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
-
best grindclass for botting in vanilla ?
hunter
- ARgus?
- ARgus?
-
Wrobot is safe?
5 bans coz of greed. not bot related
-
Wrobot stopping but only with warlock
its fixed, but its not helped too much. i reported this bug already
-
No 'Plugins' Tab in Advanced Settings
- Paladin Retribution
- 1158 downloads
- Version 12.14
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- 2 comments
- 1 review
- Change variable in plugin from quest profile
robotManager.Helpful.Var.SetVar("Test", true); if (robotManager.Helpful.Var.Exist("Test")) Logging.Write("GETVAR " + robotManager.Helpful.Var.GetVar<bool>("Test"));- Objects inside vehicle
any updates?- lag Quest.GetQuestCompleted(questID)
any news ?- Change variable in plugin from quest profile
Var.SetVar Var.GetVar- PVP death and stuck resolver
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- Shaman Enhancement
- PVP death and stuck resolver
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- Why there is no pandaria profile
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.- Death Gate of DK
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 - Paladin Retribution