Jump to content

Droidz

Administrators
  • Posts

    12581
  • Joined

  • Last visited

Everything posted by Droidz

  1. Hello, use this plugin: using System.ComponentModel; using System.Threading; using System.Windows.Forms; using robotManager.Helpful; using wManager; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { const int HearthstoneItemID = 6948; const int MaxStuckCount = 3; public void Initialize() { wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEventsOnOnPulseStuckResolver; Logging.Write("[HearthstoneWhenStuck] Loadded."); } public void Dispose() { Logging.Write("[HearthstoneWhenStuck] Disposed."); } public void Settings() { MessageBox.Show("[HearthstoneWhenStuck] No settings for this plugin."); } private void MovementEventsOnOnPulseStuckResolver(CancelEventArgs cancelable) { if (Statistics.Stucks >= MaxStuckCount) { Logging.WriteDebug("[HearthstoneWhenStuck] Use Hearthstone."); var o = wManagerSetting.CurrentSetting.CloseIfPlayerTeleported; wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; MovementManager.StopMove(); Thread.Sleep(Usefuls.Latency + 150); Lua.LuaDoString("local itemName, _, _, _, _, _, _, _ = GetItemInfo("+ HearthstoneItemID + "); RunMacroText('/use ' .. itemName);"); Thread.Sleep(Usefuls.Latency + 500); if (ObjectManager.Me.IsCast) { Usefuls.WaitIsCasting(); Thread.Sleep(Usefuls.Latency + 10000); // wait load screen } wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = o; Statistics.Stucks = 0; cancelable.Cancel = true; } } } You can change item id and stucks count lines 11 and 12 HearthstoneWhenStuck.cs
  2. I tried and I can attach WRobot to renamed Wow.exe without problem. Try to disable your antivirus, install required software (slimdx, vc++,...) http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 . Why do you need to rename Wow.exe?
  3. Yes, only change is before WoD, wow GUID in int64 (or long, ulong, uint64), since WoD wow GUID is Int128
  4. Hello, In advanced general settings try to activate "Use lua to move" and increment min/max latency.
  5. Droidz

    druid bear form

    Essayer de mettre le sort dans votre bar d'action, ou dans l'éditeur de fightclass, dans "Spell Settings" de "Bear Form", mettez false à "Check if spell is usable".
  6. Hello, wait next update
  7. Hello, you don't need to know language to create fightclasses or profiles. But if you want programming you need to know C#.
  8. Tested and works fine, WRobot wait to resurrect
  9. Strange, can you try to install WRobot in a new folder (to reset settings) and only add your fightclass and profile to test with default WRobot settings if you get this problem.
  10. Send me your wowx.Exe
  11. can you read this: http://wrobot.eu/forums/topic/1381-repairinstall-wrobot/#comment-966 try to install required software and disable antivirus
  12. Droidz

    druid bear form

    Pour les haut niveau il faut utiliser "Dire Bear Form" (Forme d’ours redoutable) Druid clem FIX.xml
  13. Hello, you play on what server? Do you use default UI? WRobot bypass this popup? http://www.aspectofthehare.net/wp-content/uploads/2009/10/WoW_Snoeken5.jpg
  14. Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  15. Can you send me screenshot of you current vendor settings
  16. Hello, put in your ground mount settings the name "Sky Golem".
  17. If you run same file renamed in " wow.exe" this works?
  18. Bonjour, Activez l'option "Use Traveler's Tundra Mammoth" qui ce trouve dans "General Settings > Enter advanced settings... > Vendor 'Selleting or Buying".
  19. Hello, WRobot accept renamed Wow.exe, are you sure than renamed files has not modified (than it is official Wow client)?
  20. Hello, Can you share your log file please ( http://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
  21. For "Auto Shot" look this: http://wrobot.eu/forums/topic/4893-autoshot-broken-vanilla-hunter/?do=findComment&comment=23120 (this topic is for Wanding and Shoot) Hunter [Marksman] [Leveling 1-80] [WotLK] - Dreamful FIX.xml
  22. Droidz

    druid bear form

    Bonjour, pouvez vous partager le fightclass que vous utilisez
  23. Hello, RunMacroText is not implemented in Vanilla wow. Run lua code: StaticPopup1Button1:Click()
  24. Hello, try to disable option "Use Click To Move..." in advanced general settings.
×
×
  • Create New...