Jump to content

Droidz

Administrators
  • Posts

    12444
  • Joined

  • Last visited

Everything posted by Droidz

  1. 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); } }
  2. Thank, I have fixed problem, wait next update.
  3. 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.
  4. Hello, Can you share full log file please. I'll watch it. Thank.
  5. Ok, can you send me your skype by private message please.
  6. Hello, Can you share your log file please. Do you have tried to reinstall/Repair framework 4.0 and vc++ 2010 ?
  7. Hello, Can you share your log file and tell me what profile do you use. Thank.
  8. Hello, You need to use FightClass, look this video for install/settings FightClass: http://youtu.be/Z3Nej3dxQKY?t=1m25s
  9. 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.
  10. Hello, Do you have installed this programs: If this don't works try also to reinstall wrobot. Tell me if your problem is solved.
  11. Hello, WRotation help you manage the rotation during the fight (wrotation does not take control of your character out of combat).
  12. Hello, Bot is closed because you have received 1 private message. You can increase number of max whisper in "general settings" > tab "Security". Have you received a private message before this message? If not try to disable your wow addons.
  13. Hello, read this topic about spell base : Tell me if your problem is solved.
  14. I ignore raison, but in spellbook, only base spell id appears (you can found list of spells id of your spellbook in log).
  15. 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).
  16. 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).
  17. Hello, I'll look how I can fix this problem and add options in battlegrounder product if necessary.
  18. Hello, I fix it during next updates. Thanks for report.
  19. This option "Ignore Fight if in Ground Mount" is active?
  20. 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).
  21. 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))
  22. 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]).
  23. I works on it today. I come to you in the day.
  24. Hello, Try also to reset your wow keybindings "Sit / Stand" (key X by default). More info
  25. If you want help please create new topic in this forum.
×
×
  • Create New...