March 6, 20188 yr Hi Guy's I seem to have got into a snag here, i am creating a Horde profile ( Undead Zone) Doing the quest http://www.wowhead.com/quest=6395/marlas-last-wish it is a 2 part quest. I created 2 quest 1 to go kill Samuel and it work I got his remain. The 2nd quest doesn't work I tried useitemon with Id 16333 ( Samuel's remain) Also tried Gatherer and putting the id and it doesnt work :( if anyone can just make a file with the quest completed I would appreciate and share the file please so I can see what I am doing wrong.. Thanks.
March 6, 20188 yr Step RunCode. Add the position of the grave, but not the exact position, use a position that is a few yards away instead: wManager.wManagerSetting.ClearBlacklistOfCurrentProductSession(); wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(XXX.xxx, YYY.yyy, ZZZ.zzz), 178090);
March 6, 20188 yr Author 30 minutes ago, FNV316 said: Step RunCode. Add the position of the grave, but not the exact position, use a position that is a few yards away instead: wManager.wManagerSetting.ClearBlacklistOfCurrentProductSession(); wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(new Vector3(XXX.xxx, YYY.yyy, ZZZ.zzz), 178090); Thank you FNV316, How would i learn to do this. I am not big on asking for help every little snag I get is there a way to have a full tutorial on playing with Quester ?
March 6, 20188 yr This posting is pretty helpful: There is no actual tutorial. It's more learning by doing + basic coding knowledge
September 8, 20187 yr How you going to grave? i use kill and loot in quester, and after kill he stay and wait respawn again. Kill Samuel again and again and go to grave
September 8, 20187 yr You have to split the quest up. First part is to kill and loot the NPC. After that has been completed, make a follow path quest to the grave and execute the RunCode step. You might need a custom complete condition for the kill & loot quest like this: return Quest.IsObjectiveComplete(1, 6395) || ItemsManager.GetItemCountById(16333) > 0; Returns true, if the quest objective has been completed or your bot has Samuel's Remains in his inventory
September 9, 20187 yr 7 hours ago, FNV316 said: You have to split the quest up. First part is to kill and loot the NPC. After that has been completed, make a follow path quest to the grave and execute the RunCode step. You might need a custom complete condition for the kill & loot quest like this: return Quest.IsObjectiveComplete(1, 6395) || ItemsManager.GetItemCountById(16333) > 0; Returns true, if the quest objective has been completed or your bot has Samuel's Remains in his inventory wow, awesome. Big thanks!
Create an account or sign in to comment