Everything posted by NvD
-
Q: Unwelcome Visitors 42160 - part 1
Thanks Droidz, it worked :), here is how I did it (it will try multiple times to destroy the portals since its destroyed before i cast :) var path = new List<Vector3>() { new Vector3(721.8674, 5322.935, 57.19053, "None"), new Vector3(613.8378, 5530.022, 54.96337, "None"), new Vector3(587.8415, 5304.021, 45.30553, "None"), new Vector3(496.2509, 5307.273, 60.94893, "None"), }; for (int i = 0; i < path.Count; i++) { if (GoToTask.ToPosition(path)) { Logging.Write("reach point #" + i); Lua.LuaDoString("ExtraActionButton1:Click()"); ClickOnTerrain.Pulse(new Vector3(path)); Thread.Sleep(5000); } } return true;
-
How to Schedule Gatherer Profiles
If believe you want something like this, to set up in Schedule page: - gather - foxflower profile - 20 min - gather - starlight rose profile - 20 min - grinder - dreamleaf profile - 20 min I want also something like this. At the moment in Schedule.xml file we have only the product name and not the actual file that will be used: <Tasks> <Task> <ProductName>Grinder</ProductName> <MinTime>20</MinTime> <MaxTime>30</MaxTime> </Task> <Task> <ProductName>Gatherer</ProductName> <MinTime>20</MinTime> <MaxTime>30</MaxTime> </Task> <Task> <ProductName>Quester</ProductName> <MinTime>20</MinTime> <MaxTime>30</MaxTime> </Task> </Tasks> Dont think we can achieve this using relogger, any advice anyone?
- Q: Unwelcome Visitors 42160 - part 1
-
Use ExtraActionButton spell to kill NPC
i hae the same problem with quest i've asked also since he has fixed my issue, and i believe its the same issue. follow that forum also :) maybe we will get a reply :)
-
Q: Unwelcome Visitors 42160 - part 1
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
- Quick example: Gatherer and InteractWithNPC
- How to LUA program only to kill a specific number of mobs then possible log out / close game
-
How to LUA program only to kill a specific number of mobs then possible log out / close game
hey all, I want to create a customer profile to kill some mobs, but i want to kill only a specific number of mobs and for a limit time (if possible) then log out / exit bot or game. I have create a custom profile to kill the mobs, but i dont know how to update .cs file to kill only a specific number of mobs. Can anyone help please ? :) Regards, NvD TheCreepingMist.cs
-
INVASION Farm
you dont need to log out and re-log in, in ogrimar is working only if you go inside city and come back.
- Multi Pull
- Turn in quest from popup
-
Turn in quest from popup
Hey :), I have a quest http://www.wowhead.com/quest=27934/one-with-the-ground but i am not able to turn it in, its a popup quest. Saw this http://wrobot.eu/forums/topic/664-adding-ability-to-accept-pop-up-quests/ but this is not working. Did you add something new or any ideas on how to finish this? Regards, N
-
Zygor to quester profile help
I have imported quests from Zul'Drak and it's not working at all. If you guys know some areas that work, please share (or even if you have Zygor's files more updated, i have from 2014)
- UseItemOn lower than 4.5?
- UseItemOn lower than 4.5?
- Use Item (from quest) on target
- UseItemOn lower than 4.5?
-
Use Item (from quest) on target
also, i found out that i need to use gatherer since the item id http://www.wowhead.com/item=35123/microfilm is dropping and i have to loot them any suggestions on how to achieve this? quest: http://www.wowhead.com/quest=11728/lupus-pupus item from quest (that needs to be used 1st): http://www.wowhead.com/item=35121/wolf-bait item that needs to be garthere from mob (after few seconds): http://www.wowhead.com/object=187981/wolf-droppings (when you open this you get http://www.wowhead.com/item=35123/microfilm) and i need 8 of these :D so it needs to be something that repeats. never used If statements, any tutorials for this? :)
- Start a quest from object
- Use Item (from quest) on target
-
Use Item (from quest) on target
Hello All, Anyone can help me out with this: - problem: i am trying to make a quest and i need to use an item *from quest" but i have two problems: 1 - the below uses the item (from quest) but is not working all the time (i believe worked once after i have dismounted first) 2 - the below kills the target (and shouldn't) What i have used: RunCode: if (ObjectManager.Target.IsValid && !ObjectManager.Target.IsAlive) { ItemsManager.UseItem(itemId); } } Thread.Sleep(3000); Pulse: simple quest with InteractWithNPC Regards, N
- Start a quest from object
- Start a quest from object
-
Start a quest from object
Hey All, is there any possibility to create a profile quester for something like this: object that gives quest: http://www.wowhead.com/object=187565/elder-atkanok 1st quest: http://www.wowhead.com/quest=11605/the-honored-ancestors Basicly this is an object and i've tried to start this quest but doesn't work. Anyone can help me out? Regards, N
-
Spell Charges
can you help me out with this please: - as enh shaman, i want to cast only 1 Lava lash from 2, how can i achieve this? thanks