Quester assistance
644 topics in this forum
-
after few days of working, wrobot disable alot of flightmaster in taxi database. is there any possibility to enable all flightmaster thru c# ?
-
- 1 reply
- 1.7k views
-
-
Hi, Do you know if we can use the honobuddy profile with wrobot? or can you make it compatible? A lots more choice
-
- 4 replies
- 2.5k views
-
-
Hi, I'm looking for a standard questing profile 1-110 not a paid one !! store is so messed up Thx
- 12 replies
- 4k views
-
Ive found some Honnorbuddy questing profiles 1-80 aswell as cata stuff, but i cant convert the questing profiles nor can i import it, could someone please explain how to do it. ill upload it all. from clasic - cata profiles , questing grinding rep farming etc. but i need help converting them. kicks-scripts.zip
-
- 7 replies
- 6.5k views
-
-
Hi, I'm having a problem getting to click the button 1 on the vehicle menu on the quest "Stink Bomb Away" I tried to use the code that droidz provided but it did not really work... var nearHostile = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitHostile()); if (nearHostile.IsValid) { wManager.Wow.Helpers.ClickOnTerrain.Spell(96026, new Vector3(nearHostile.Position)); Thread.Sleep(1000); } it was displayed in the log but nothing was actually cast. [F] 00:38:28 - [Spell] Cast Tos…
-
- 9 replies
- 4.1k views
-
-
example if (ObjectManager.Me.Blacksmithing > 600) or if (ObjectManager.Me.Fishing > 0) @Droidz
- 2 replies
- 1.9k views
-
Hallo evrybody; today I tried to creat a questprofile with the quest "Disrupt Their Reinforcements (10208). In this one I should disrupt two portals. I need for each portal 4 "Demonic Rune Stones (28513)", which drops from specifc mobs. 1.) So I creat a Quest without Quest-ID to gather the 8 "Demonic Rune Stones (28513)", named "Quest without Quest ID": -> Optional Settings: Is complete condition: return ItemsManager.GetItemCountById(28513) >=8; -> Quest-Type: KillAndLoot 2.) Also I creat two Quests with Quest-ID (10208): named "Quest Gatherer 1" and "Quest Gatherer 2" -> Quest-Type: Gatherer The …
-
- 1 reply
- 2.1k views
-
-
Hey all, Anyone have a solution on how to make this quest work. Unwelcome Visitors 42160 - part 1? http://www.wowhead.com/quest=42160/unwelcome-visitors Felblaze Portals destroyed (4) I have tried to use the below, but its not working Lua.DoString("ExtraActionButton1:Click();"); SpellManager.ClickRemoteLocation(new WoWPoint(724.7518, 5318.563, 57.52559)); The main issue is the even when the ExtraActionButton1 is pressed, is not used on portal (portal cannot be selected in game), but the green circle is showed on screen
- 4 replies
- 2.2k views
-
Can someone please make a quester file that will cover ALL of draenor quests and achiewements please
-
- 1 reply
- 1.4k views
-
-
Hi, I'd like to fish certain fish like Mimic Octopus for daily quest. I've also searched the forum, and found some example overriding pulse, but incompleted. ----- Vector3 pos1 = new Vector3(-1444.624, -253.5518, 0.9669148, "Flying"); float fishRotation = 3.0f; if (!FishingTask.IsLaunched) { if (GoToTask.ToPosition(pos1, 1.5f)) { ObjectManager.Me.Rotation = fishRotation; FishingTask.LoopFish(); } } return true; ----- Is there any method for fishing repeatedly until getting certain fish?
-
- 1 reply
- 1.6k views
-
-
So I'm creating a quester profile for DH and on the first quest, you have to kill 15 demons and place the banner. Demon part no problem. The banner, I have the id code, but what do I set it up in the profile. Would it be another Pulse?
-
- 2 replies
- 1.3k views
-
-
I'd like to want to wait for a while using c# code in OverridePulseCSharpCode. My code is ... Vector3 pos1 = new Vector3(-1475.103, -226.9858, 4.822745, "Flying"); float fishRotation = 5.77f; uint itemId = 211160; if (!FishingTask.IsLaunched) { if (GoToTask.ToPosition(pos1, 1.5f)) { ObjectManager.Me.Rotation = fishRotation; ItemsManager.UseItem(itemId); FishingTask.LoopFish(); } } return true; and I want to wait for a while before using the item in my bag.
-
- 2 replies
- 2k views
-
-
So any addons or tools I could use along with making quest profiles? Ive seen comments people mentioning that using wowhead for IDs takes to long that there is a tool but i havent seen anyone mention it. Any help would be greatly appreciated. Thanks in advance.
- 2 replies
- 1.6k views
-
Hi there, While creating the profile quest for Tanaris faced with the problem, namely the quest http://www.wowhead.com/quest=25050/rocket-rescue On the quest you need to go on a balloon and use ability an area in which there are certain NPC. Each NPC has its own ability (75560, 73257) After completing the quest use another's ability to descend from a balloon Can anyone suggest how to realize it?
-
- 1 reply
- 1.1k views
-
-
Tried to do a profile on the candy bucket but can't seems to complete the quest.. can advise what am I doing wrong? Tested a lot of variation by bot doesn't seems to complete the quest.. Any help? CandyBucketv1.xml
-
- 1 reply
- 1.2k views
-
-
Hi, So, I'm trying to make a quest-setup, that will accept whatever dailies are available for rep with The Anglers - but somehow I cant figure out how to skip an NPC if he hasnt got any quests - I always end up stuck there, cuz it's trying to find a specific quest. Any ideas? /nobot
-
- 1 reply
- 1.4k views
-
-
Hi there, I'm new to WRobot and wanted to make a quester profile. First of all I used the search in this forum and it helps me a lot. I'm nearly done with the Region Val'Shara but now there is one quest I really don't know to handle. Its name is: Softening the target. you have to ride a bat and bomb 50 enemy with the vehicle spell. I tried with UseSpellOn: It targets but don't use any spell (there are only 2 Ids ( 218592, 218594 ) tried both) I tried to Interact with NPC and wrote Lua: CastSpellById(218594); ( same effect ) would be nice if you can help me on this to end the Val'Shara MSQ.
-
- 2 replies
- 1.9k views
-
-
I'm trying to find a way to use the ExtraActionButton1 to cast an AoE spell to kill NPC's. I've tried several variations including InteractWithNpc with "ExtraActionButton1:Click()" in the macro. This will give me the AoE green circle to put down, but it never clicks or uses it. I've also tried the code from Use item on hostile "weakened" mob but I am not good enough with coding to change it from an item to a spell. Any suggestions?
-
- 6 replies
- 2.8k views
-
-
Hello again. Got another problem... I am on quest 37467 The Walk of Shame where you accecpt the quest from Prince Farondis, then talk to him to start the escort quest. The problem I am having is that when you talk to him, the objectives do not change. If I set an Objective count as a 1, it will interact with the NPC, the escort part will proceede and the NPC will run off but I will just stand there as the objective is not complete. If i set all objective counts to 0, it does not the action InteractWithNpc step and immediately tries to follow. I've been looking at all other profiles that have InteractWithNpc, and it seems th…
- 2 replies
- 2.1k views
-
Hey evrybody, sorry that I disturb again :D I'm trying to create some Quest-Profiles with the easy-Quest-creater and I have a Problem by the quest: 24760 - The Arts of a Shaman In this quest, I have to do the following Things: 1.) Talk with Darkspear Jailor 2.) -> Klick on spechbubble 3.) Kill Mob, which comes after the klick, out of his cell Point 3 is not a problem for me, but 1 and 2. Can somebody help me please :) Or is that nat possible with the easy-Quest-creater? greetings Montimas21 :)
-
- 2 replies
- 1.5k views
-
-
Hi there: I try to script this quest: Id: 25905 - Objective count: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - Time: 1474106788 - http://www.wowhead.com/quest=25905 (Rams on the Lam) where you have to whistle at some Rams with the emote /whistle Stolen Ram: 41539 ID how do i do that ?
- 1 reply
- 1.3k views
-
Quest: http://www.wowhead.com/quest=38331 You have to click on 3 items and throw them into the pot. No idea what-so-ever how to make quester do this. I would imagine I would need 3 gather lines, one at a time, to pick up each item, then throw it by pushing number 4 when the targeting thingy is over the pot. Any suggestions? I don't know if it is even possible for WRobot to it. Info: Havi's Test - Quest ID: 38331 Basket of Root Vegetables: Object ID: 252074 Barrel of Crabs Object ID: 252076 Hearty Vrykul Grains Object ID: 252080 Pot of Stew Object ID: 244480
-
- 1 reply
- 2k views
-
-
Is there a way to attack or be attacked by an NPC, then when NPC is beaten at 1%, then interact with the same NPC? I found the following, but not sure how to adapt it to what I need.
-
- 2 replies
- 1.8k views
-
-
Is there a way to make it re-use an item if I loose a buff? For example, running in Suramar, if a patrol see's me and pops my illusion, is there a way to make it reuse the disguise then continue on with the quest? I could probably fit this into a fightclass, but I really don't want to do that to all my fightclasses. I am hoping there is some code or something I could add?
- 4 replies
- 1.7k views
-
Hello evrybody, Today I tried to create a Mulgore-Quest-Profile. I´m working with the Easy-Quest-Creater and have one or two problems. The quests are: 749 - The Ravaged Caravan 751 - The Ravaged Caravan First problem: The same name - Is it possible to change the name without further problems? Second problem: The questgiver of 751 - The Ravaged Caravan is a game object. The editor recognizes the ID and the position as soosn as I type the name in the NPC quest giver editor. But as soon as I test the program, nothing happens. Can somebody help me please :) Sry for my bad englisch... :D Best regards Montimas21
-
- 2 replies
- 1.4k views
-