Solutions
-
eeny's post in Attack NPC then interact? was marked as the answerThis will stop the bot atacking- works like the above
Thread t = new Thread(() =>
{
int questId = 9889;
while (robotManager.Products.Products.IsStarted)
{
if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
{
if (!Quest.HasQuest(questId))
break;
if (ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 30)
{
wManager.Wow.Helpers.Fight.StopFight();
}
}
Thread.Sleep(500);
}
});
t.Start();
Create a quest pulse to interact with NPC... run this code before- profit!
-
eeny's post in Is dungeon boss dead was marked as the answerDroidz made a dungeon sample-
check this <iscomplete> condition
return (wManager.Wow.Helpers.Lua.LuaDoString("local _, _, numCriteria = C_Scenario.GetStepInfo(); if not numCriteria or numCriteria == 0 then completedObj = 'true'; return; end; local critID; _, _, completedObj,_,_,_,_,_,critID = C_Scenario.GetCriteriaInfo(1); ", "completedObj").ToLower() == "true");
C_Scenario.GetCriteriaInfo(1) <<< change the number depending on what number the boss is on the list. I'M surprised you got botanica to work without that string...
-
eeny's post in Wont Pulse Quest was marked as the answerWelcome to the world of quest profiles.. muhahahahah
The quest beating them back is actually a clsss quest- check you the NPC thats hands the quest out- http://www.wowhead.com/npc=197/marshal-mcbride see there are 10 quests that are the same objective wise... just have different ID's based on what class picks them up... this particular zone is a Pain in the @ss because of this
Now sine you have glypic letter handing into Khelden Bremen im going to assume you a mage.. if thats the case- change the quest ID of beating them back to 28757 and it should work.
The human starting zone is a pain- once you hit goldshire it class independant. It may be worth grinding 1-6 in northshire, then hit some quests up in golshire.
il test the profile just to make sure im correct about ^^ tho
-
eeny's post in [Solved] Wrobot Crash - Teldrassil? (2.4.3) was marked as the answermy guess is one of two things:
1. the profile you using may be written for WoD ( WoW v6.x) which will have locations based on a different mesh from BC WoW v2.x. it may try to load up a profile and crash because the first quest givers location is non existent in your game version.
2. could be a corrupt or bad mesh- to fix: delete/ rename / remove that mesh its complaining about the Wrobot should download a new one when you start the profile again.
-