Everything posted by Droidz
-
4228- Game Version Incorrect
Hello, I start to works on new update, sorry for the delay I do not think there would be updates to this hour. (WRobot required update when new wow patch)
- Help pls
-
Interrupts
Hello, sample code (fightclass in c#, save this file in *.cs): using System; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager.Wow.Class; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : ICustomClass { public float Range { get { return 4.5f; } } // Fight Range private bool _isLaunched; private const string FightClassName = "Interrupts"; #region ListSpells private Spell _mightyBash; #endregion ListSpells public void Initialize() { Logging.Write("Loading FightClass: " + FightClassName); // Init spells: _mightyBash = new Spell("Mighty Bash"); Logging.Write("FightClass Loaded: " + FightClassName); // Launch loop in new thread: _isLaunched = true; var threadLoop = new Thread(Loop); threadLoop.Start(); Logging.Write("FightClass Launched: " + FightClassName); } private void Loop() { while (_isLaunched) { try { if (Fight.InFight && ObjectManager.Target.IsValid) { // Spell Mighty Bash: if (ObjectManager.Target.IsCast && _mightyBash.IsSpellUsable && _mightyBash.IsDistanceGood) { var resultLua = Lua.LuaDoString( "ret = \"false\"; spell, rank, displayName, icon, startTime, endTime, isTradeSkill, castID, interrupt = UnitCastingInfo(\"target\"); if interrupt then ret = \"true\" end", "ret"); if (resultLua == "true") { _mightyBash.Launch(); } } } } catch (Exception e) { Logging.Write("Error in FightClass " + FightClassName + ": " + e); } Thread.Sleep(35); // Wait for UC usage } } public void Dispose() { _isLaunched = false; Logging.Write("FightClass Disposed: " + FightClassName); } public void ShowConfiguration() { MessageBox.Show("No setting for this Fight Class: " + FightClassName); } }
- Help pls
-
Possibly New User - Feedback?
Hello, There is a trial version (put "trial" when wrobot request license key) to give you an idea and see if the bot is suitable for your needs. I works hard to propose a quality bot and up to date.
- Help pls
-
Bot crashes when i open it
Ok, can you send me your skype by private message please.
- Products not loading
- Evade
-
Using Spells
Hello, You need to use FightClass, look this video for install/settings FightClass: http://youtu.be/Z3Nej3dxQKY?t=1m25s
-
Bot crashes when i open it
Bot crash directly or you can view wrobot window? Do you have log create (in "Log" folder) if yes can you send me it please.
-
Bot crashes when i open it
Hello, Do you have installed this programs: If this don't works try also to reinstall wrobot. Tell me if your problem is solved.
-
Nice question here!
Hello, WRotation help you manage the rotation during the fight (wrotation does not take control of your character out of combat).
- Unknown Error when using Bot
-
Arms Warrior - Overpower
Hello, read this topic about spell base : Tell me if your problem is solved.
-
Heart Strike DK broken?
I ignore raison, but in spellbook, only base spell id appears (you can found list of spells id of your spellbook in log).
-
Heart Strike DK broken?
Hello, Can you share your log please. Read this topic: Try this macro: /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end (this macro displays spells list and base spell name).
-
Dismount when stuck
Hello, I'll look how I can improve unstuck, but it is hard to find best way (by moment, dismount direct is the best way to unstuck character quickly).
-
How to queue 2 bots for the same BG ?
Hello, I'll look how I can fix this problem and add options in battlegrounder product if necessary.
-
Won't re-equip Gun
Hello, I fix it during next updates. Thanks for report.
-
Druid Herbalism Problem
This option "Ignore Fight if in Ground Mount" is active?
-
Druid Herbalism Problem
With the new dll have you activate option "Ignore Fight if in Ground Mount" (in mount tab) (When you hit the ground, even with a flying mount you are considered on a ground mount).
-
PVP Pet Battle Profile?
Hello, I don't understand exactly what you want say but pet battle product works only with mobs (no fight with others players (no pet battle pvp))
-
Gatherer level 72 problems
Hello, Do you use gatherer product? Do you have correctly setting your fly mount in general settings (name of mount in the langue of your wow client, case sensitive)? Profiles is delivered with the bot ([1-65] Durotar [No City].xml or [1-75] ElwynForest [No City]).
-
Druid Herbalism Problem
I works on it today. I come to you in the day.