• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [Request] /reload

    Discussion in 'Requests' started by Dizzle_, Mar 1, 2012.

    1. Dizzle_

      Dizzle_ Banned

      Joined:
      Dec 5, 2011
      Messages:
      139
      Likes Received:
      0
      Trophy Points:
      0
      I'm looking for a simple plugin that will do /reload every x minutes to get past the black screen, since the devs are either unable or unwilling to fix this issue. Thanks.
       
    2. FreeZe

      FreeZe Active Member

      Joined:
      Dec 4, 2011
      Messages:
      1,049
      Likes Received:
      5
      Trophy Points:
      38
      What black screen?
       
    3. Dizzle_

      Dizzle_ Banned

      Joined:
      Dec 5, 2011
      Messages:
      139
      Likes Received:
      0
      Trophy Points:
      0
    4. FreeZe

      FreeZe Active Member

      Joined:
      Dec 4, 2011
      Messages:
      1,049
      Likes Received:
      5
      Trophy Points:
      38
      Please answer my question first.
      And where / when do you get the black screen?
      Otherwise i cant help you.
       
    5. Dizzle_

      Dizzle_ Banned

      Joined:
      Dec 5, 2011
      Messages:
      139
      Likes Received:
      0
      Trophy Points:
      0
      It happens randomly when farming in all zones (uldum, deepholm, vash....). The screen goes black with just the UI being visible. Doing /reload ingame fixes the problem.
       
    6. buzzerbeater

      buzzerbeater Well-Known Member

      Joined:
      Mar 21, 2011
      Messages:
      5,419
      Likes Received:
      28
      Trophy Points:
      48
      The Devs are not unwilling to fix this. Its a fault in wow, which can only be fixed there.

      But such a plugin could be the only fix atm.

      I would like to see that too. ;)
       
    7. Dizzle_

      Dizzle_ Banned

      Joined:
      Dec 5, 2011
      Messages:
      139
      Likes Received:
      0
      Trophy Points:
      0
      It's not a fault with wow if it only occurs while botting.
       
    8. reoxftw

      reoxftw New Member

      Joined:
      Aug 11, 2011
      Messages:
      316
      Likes Received:
      1
      Trophy Points:
      0
      Ah and that makes HB cause it? Its caused by injections most likely, and not the program itself. Stop blaming everything. If you don't like it, ask for a refund and get a new bot. Have fun.
       
    9. FreeZe

      FreeZe Active Member

      Joined:
      Dec 4, 2011
      Messages:
      1,049
      Likes Received:
      5
      Trophy Points:
      38
      There ear a few spots in Vashir and Deepholm you will get a black scrren.
      This is a WoW porblem and can only be fixed by Blizzards devs.
       
    10. Dizzle_

      Dizzle_ Banned

      Joined:
      Dec 5, 2011
      Messages:
      139
      Likes Received:
      0
      Trophy Points:
      0
      Back on topic, this thread is not meant to be a discussion of the issue, but rather a request for a plugin that can do a simple macro.
       
    11. reoxftw

      reoxftw New Member

      Joined:
      Aug 11, 2011
      Messages:
      316
      Likes Received:
      1
      Trophy Points:
      0
      Doing /reload's will cause your WoW to crash sooner or later, just saying. If thats what you're looking for, HF.
      I don't think anyone has done such a plugin yet, and I doubt anyone actually cares. Look into guides and do it on your own, or keep waiting until someone does it fro you.
       
    12. laria

      laria Well-Known Member

      Joined:
      Jan 15, 2010
      Messages:
      5,386
      Likes Received:
      36
      Trophy Points:
      48
      Is the gui gone too or is just the worldframe black?
       
    13. Dizzle_

      Dizzle_ Banned

      Joined:
      Dec 5, 2011
      Messages:
      139
      Likes Received:
      0
      Trophy Points:
      0
      The gui is still visible, everything else is black.
       
    14. geeekzor

      geeekzor Member

      Joined:
      Jan 15, 2010
      Messages:
      213
      Likes Received:
      3
      Trophy Points:
      18
      Not tested, no support, use it at your own risk.

      Code:
      using System;
      using System.Diagnostics;
      using System.Drawing;
      using Styx.Helpers;
      using Styx.Plugins.PluginClass;
      using Styx.WoWInternals;
      
      namespace Reload
      {
          internal class Class1 : HBPlugin
          {
              #region Overrides of HBPlugin
      
              private string _author = "No one";
              private string _name = "ReloadUI";
              private Version _version = new Version(1, 0);
      
              public override string Name { get { return _name; } }
              public override string Author { get { return _author; } }
              public override Version Version { get { return _version; } }
      
              public override void Pulse()
              {
                  Stopwatch sw = new Stopwatch();
      
                  if (!sw.IsRunning)
                      sw.Start();
                  if (sw.IsRunning)
                      return;
                  if (sw.Elapsed.Seconds < 900)
                      return;
                  if (sw.Elapsed.Seconds > 900)
                  {
                      Lua.DoString("ReloadUI()");
                      sw.Restart();
                      Logging.Write(Color.Gold, "Reloading UI");
                  }
              }
      
              #endregion
          }
      }
       
    15. noglory

      noglory New Member

      Joined:
      Jan 31, 2011
      Messages:
      137
      Likes Received:
      0
      Trophy Points:
      0
      Does it work?
      I only have to create a .cs file with this syntax and activate in Plugins?

      thx
       
    16. trollp

      trollp New Member

      Joined:
      Dec 11, 2011
      Messages:
      219
      Likes Received:
      0
      Trophy Points:
      0
      i don't think it will work....

      the marked code will always return, or?


      Code:
      Stopwatch sw = new Stopwatch();
      
      public override void Pulse()
              {
                 if (!sw.IsRunning)
                      sw.Start();
                  
                  if (sw.Elapsed.Seconds > 900)
                  {
                      Lua.DoString("ReloadUI()");
                      sw.Restart();
                      Logging.Write(Color.Gold, "Reloading UI");
                  }
              }
       
      Last edited: May 8, 2012
    17. nate8282

      nate8282 Member Legendary

      Joined:
      Dec 4, 2011
      Messages:
      737
      Likes Received:
      23
      Trophy Points:
      18

    Share This Page