-
Posts
12519 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
You are sure that this folder is empty: "WRobot\Logs\"? Do you run Wow in 64bit and on the administrator Windows session? You can try to change directx version in game (look in wow settings).
-
Converting KICK's draenor pathfinder profiles?
Droidz replied to Linette's topic in Profiles and Requests
Hello, sorry it is quests profiles, It is not quicly at convert. But, you can use this profile for "treasure hunter": http://wrobot.eu/files/file/503-achievements-treasure-hunter-draenor/ And for "draenor explorer" to help you, you can use WRotation, and go to tab "Map", double clicks on the map to go position. -
Yes of course, use quest type "InteractWithNpc", in hotspot add Npc position, in target entry add npc entry id and you need to complete the "Objective count..." associated with this task (if you don't know objective number, you can put "True" at all the "Auto detect objective count..." in quest "Base settings").
-
Hello, Can you share your log file please (http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/). You can try to install SlimDX.
-
Hello, Sorry for the delay. 1: The easy way it to add step type "RunMacroLua" and put you code ( /reload ) (you can add after step type wait if reload UI cause problem). Or, you can add step type "RunCode" and use this C# code: wManager.Wow.Helpers.Lua.RunMacroText("/reload"); System.Threading.Thread.Sleep(1000 * 15); // Wait 15 sec 2: Do you have try to use quest type "FollowPath" with option "Current quest completed when at the latest position"? 3: You can use this script to get bouton (taxi node) name: http://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447 , after you can use lua macro "/click TaxiButton11" (replace TaxiButton11 by taxi node name). For use this macro look answer 1. Thank you for your help and the interest you have for WRobot
- 1 reply
-
- 1-100 questing
- quests
-
(and 1 more)
Tagged with:
-
Hello, It is main forum, you can found tutorials/guides here: http://wrobot.eu/forums/forum/7-tutorials-wrobot/ and profile here: http://wrobot.eu/files/, he missing some guides/tutorials/profiles, do not hesitate to share your knowledge.
-
Salut, 1/ IsSpellUsable utilises: http://wow.gamepedia.com/API_IsUsableSpell et http://wow.gamepedia.com/API_GetSpellCooldown (Quand le GCD est activé IsSpellUsable r'envoi "false"). 2/ Avec un code de ce genre: var spell1 = new Spell("spell1"); // sort qui canalise var spell2 = new Spell("Spell2"); // sort a lancer pendant que sort1 canalise spell1.Launch(false, false); // stopMove = false, waitIsCast = false spell2.Launch(true, true, true); // stopMove = true, waitIsCast = true, ignoreIfCast = true
-
Hello, To attack only "Grimtotem..." you can put "Off" at "Kill Mobs" option (list of Npc override the rules). Try to increment number in tab "General Settings" option "Max units near target". If your problem is not resolved, if you can share your log file please: http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
-
Hello, You need to use "Grinder" product (or "Automaton" if you don't have profile, you can also found some quests profiles to farm gold)
-
If you try again, if you can give me log of session of WRobot where you get this problem.
-
botting on BC Private Server or classic possible?
Droidz replied to TurboGolom's topic in General discussion
Hello, No sorry, and I don't think add support of this wow versions. -
Hello, The fight class manage the spells rotation. Without fight class your character don't use spell.
-
Hello, Do you get errors in your log?
-
Hello, The best and quick way is to use "Level 90 Character Boost", and leveling 90-100 with "Quester" bot (if you don't found profile for your level, you can use "Grinder" or "Automaton" profile).
-
Il est possible dans les options de Wow de mettre le jeu en Anglais, ca peut aider lors de la création de Fight classes
-
Bonjour Pour le bon fonctionnement, il faut mettre les noms des sorts en Anglais (dans certain cas mettre les noms en français fonctionnera mais que sur les clients français).
-
Question from a potential customer. (Involving Buying)
Droidz replied to invisionthis's topic in General discussion
Hello, Yes, you don't have to buy again. -
I understand, but you cannot will found bot with 64 bit support. And the difference between Wow 32 and 64 bit is very important, which explains why I didn't put the two versions. And 64 bit is usefuls when software use a lot of memory (this increment max memory size autorized by process), and the max ram supported by windows, but for wow with bot it is not usefuls (64 bit version increment usage of the memory, it is not good for botting, and how I said, some computer use yet windows 32 bit).
-
if (wManager.Wow.ObjectManager.ObjectManager.Target.IsValid && wManager.Wow.ObjectManager.ObjectManager.Target.IsCast) { int spellId = wManager.Wow.ObjectManager.ObjectManager.Target.CastingSpellId; wManager.Wow.Class.Spell spell = wManager.Wow.ObjectManager.ObjectManager.Target.CastingSpell; } Sans lua tu peux utiliser ce code, si une fonction lua t'intéresse dit moi laquel je te montrerais comment l'utiliser avec WRobot.
-
Hello, For the moment, you cannot found quests profiles for all zones/levels. You need to use "Grinder" or "Automaton" bot if you don't found quests profiles for your current zone.
-
string instanceType = wManager.Wow.Helpers.Lua.LuaDoString<string>("local inInstance, instanceType = IsInInstance(); return instanceType;"); instanceType = instanceType.ToLower(); // En minuscule if (instanceType == "pvp") { } else if (instanceType == "arena") { } else if (instanceType == "party") { } else if (instanceType == "raid") { } else if (instanceType == "scenario") { } else { // Pas en instance } J'ai pas testé le code, mais ça devrait donner quelque chose de ce genre
-
Hello, I have reply here: http://wrobot.eu/forums/topic/2544-64-bit-win-10/#comment-11622