[INTERNATIONAL] [Xenthalon] SweepingWindStackWarningPlugin menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    Xenthalon's Avatar Active Member
    Reputation
    18
    Join Date
    Mar 2017
    Posts
    22
    Thanks G/R
    1/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [INTERNATIONAL] [Xenthalon] SweepingWindStackWarningPlugin

    Supported TurboHUD version: 7.6

    This plugin shows a red warning circle around your character (monk only) if Sweeping Wind is inactive or a blue circle if it has only one stack and has to recharge before your next cast.

    Very useful for Wave of Light/Lashing Tail Kick builds using the Sunwoko set where each cast drains one stack of Sweeping Wind, with regeneration provided through Kyoshiros Soul.
    Careless fast casting can lead to complete draining of stacks, resulting in far less damage and protection. This can happen quite a lot in the heat of battle.

    If the warning circle is visible stop casting until more stacks regenerated, or recast Sweeping Wind if fully drained.



    Code: pastebin
    Place in: \plugins\Xenthalon\SweepingWindStackWarningPlugin.cs

    Example to change settings in your own Customize Plugin:
    Code:
    Hud.RunOnPlugin<SweepingWindStackWarningPlugin>(plugin =>
    {
        plugin.EnableInTown = true; // also shows warnings when in town
        plugin.PlayerWarningLabel.Enabled = true;
        plugin.PlayerWarningLabelText = "MY WARNING TEXT";
        plugin.RechargeWarningCircle = new WorldDecoratorCollection(
            new GroundCircleDecorator(Hud)
            {
                Brush = Hud.Render.CreateBrush(255, 0, 0, 255, 2.0f),
                Radius = 3,
                RadiusTransformator = new StandardPingRadiusTransformator(Hud, 400)
            }
        );
        plugin.DrainedWarningCircle = new WorldDecoratorCollection(
            new GroundCircleDecorator(Hud)
            {
                Brush = Hud.Render.CreateBrush(255, 255, 0, 0, 2.0f),
                Radius = 3,
                RadiusTransformator = new StandardPingRadiusTransformator(Hud, 400)
            }
        );
    });
    Attached Thumbnails Attached Thumbnails [INTERNATIONAL] [Xenthalon] SweepingWindStackWarningPlugin-hzhsfut-jpg  
    Last edited by Xenthalon; 11-21-2017 at 05:08 AM.

    [INTERNATIONAL] [Xenthalon] SweepingWindStackWarningPlugin
  2. Thanks jweavis (1 members gave Thanks to Xenthalon for this useful post)
  3. #2
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Remove the [Release] tag please, if it's the review zone, it's obviously not released.
    Hide the Rum! --> Default theme customization 101 <--

  4. #3
    Xenthalon's Avatar Active Member
    Reputation
    18
    Join Date
    Mar 2017
    Posts
    22
    Thanks G/R
    1/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Creating a thread requires a tag now. It obviously didn't before because of the threads without tags.

    If you tell me which of these tags fits best, I will gladly do so:

    Release
    Bot
    Hack
    Tool
    Auto-Clicker
    PQR

    I personally don't think that any of those fit, so either the Tag-Requirement needs to be removed again or a new Tag [Plugin] should exist.

  5. #4
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, i was not aware of that.
    Let it this way till KJ check it.
    Hide the Rum! --> Default theme customization 101 <--

  6. #5
    JollyTex's Avatar Member
    Reputation
    6
    Join Date
    Mar 2017
    Posts
    68
    Thanks G/R
    44/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    A complete NOOB (pure novice), I like this plugin, don't anything about plugins, and what and where does this get pasted. I know where user plugin folders are located but cannot make this work and get exceptions

    2017.03.31 09:38:18.507 namespace mismatch in plugin file: 'C:\Salsa Directions\Plugins\User\SweepingWindStackWarningPlugin.cs': namespace should be this: 'Turbo.Plugins.User
    2017.03.31 09:38:18.749 error while initializing plugins
    2017.03.31 09:38:18.750 c:\Salsa Directions\plugins\User\PluginEnablerOrDisablerPlugin.cs(55,2) : error CS1525: Invalid expression term ')'

    would appreciate some help and thanks a bunch

  7. #6
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Same code, same badge ;p
    Hide the Rum! --> Default theme customization 101 <--

  8. #7
    JollyTex's Avatar Member
    Reputation
    6
    Join Date
    Mar 2017
    Posts
    68
    Thanks G/R
    44/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    thanks for your response, not trying to say its wrong, I obviously don't have any idea how and where to put it,

  9. #8
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JollyTex View Post
    thanks for your response, not trying to say its wrong, I obviously don't have any idea how and where to put it,
    My bad, i missed your question in fact..
    The badge was to validate the plugin, but i can understand your confusion ^^

    Answer to your question :
    \plugins\Xenthalon\SweepingWindStackWarningPlugin.cs NOT \plugins\user\SweepingWindStackWarningPlugin.cs
    Hide the Rum! --> Default theme customization 101 <--

  10. Thanks JollyTex (1 members gave Thanks to JackCeparou for this useful post)
  11. #9
    JollyTex's Avatar Member
    Reputation
    6
    Join Date
    Mar 2017
    Posts
    68
    Thanks G/R
    44/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    appreciate your help.
    here's what I did
    made a new file under plugin/users named
    \plugins\Xenthalon\SweepingWindStackWarningPlugin.cs

    and inserted your code from above
    Hud.RunOnPlugin<SweepingWindStackWarningPlugin>(plugin =>
    {
    plugin.EnableInTown = true; // also shows warnings when in town
    plugin.PlayerWarningLabel.Enabled = true;
    plugin.PlayerWarningLabelText = "MY WARNING TEXT";
    plugin.RechargeWarningCircle = new WorldDecoratorCollection(
    new GroundCircleDecorator(Hud)
    {
    Brush = Hud.Render.CreateBrush(255, 0, 0, 255, 2.0f),
    Radius = 3,
    RadiusTransformator = new StandardPingRadiusTransformator(Hud, 400)
    }
    );
    plugin.DrainedWarningCircle = new WorldDecoratorCollection(
    new GroundCircleDecorator(Hud)
    {
    Brush = Hud.Render.CreateBrush(255, 255, 0, 0, 2.0f),
    Radius = 3,
    RadiusTransformator = new StandardPingRadiusTransformator(Hud, 400)
    }
    );
    });

    received an exception
    2017.03.31 15:23:02.167 namespace mismatch in plugin file: 'C:\Salsa Directions\Plugins\User\pluginsXenthalonSweepingWindStackWarningPlugin.cs': namespace should be this: 'Turbo.Plugins.User

    Please have patience, I really don't know what I am doing. And I'm not a kid, just a non-programmer old adult (LOL)
    JollyTex

  12. #10
    JollyTex's Avatar Member
    Reputation
    6
    Join Date
    Mar 2017
    Posts
    68
    Thanks G/R
    44/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Jack, can you point me to a tutorial on using plugin for D3, Maybe I can quit wasting your time

  13. #11
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JollyTex View Post
    Please have patience, I really don't know what I am doing. And I'm not a kid, just a non-programmer old adult (LOL)
    np ;p

    The code you copied is just an example of how to customize the plugin, not the plugin itself.

    You need to paste the content of this --> pastebin <-- inside 'C:\Salsa Directions\Plugins\Xenthalon\SweepingWindStackWarningPlugin.cs'
    Last edited by JackCeparou; 04-01-2017 at 10:33 AM. Reason: typo
    Hide the Rum! --> Default theme customization 101 <--

  14. #12
    FullmetalEnvy's Avatar Member CoreCoins Purchaser
    Reputation
    8
    Join Date
    Mar 2017
    Posts
    21
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would love to use your plugin for my One Shot Monk Build but I'm getting following exception:

    "plugins\Xenthalon\SweepingWindStackWarningPlugin.cs(51,30) : error CS0115: 'Turbo.Plugins.Xenthalon.SweepingWindStackWarningPlugin.PaintWorld(Turbo.Plugins .WorldLayer)': No suitable method for overwriting was found.

    Thx in Advance

  15. #13
    JackCeparou's Avatar Savvy ? 🐒
    Reputation
    534
    Join Date
    Mar 2017
    Posts
    588
    Thanks G/R
    51/490
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PsironiX View Post
    Would love to use your plugin for my One Shot Monk Build but I'm getting following exception:

    "plugins\Xenthalon\SweepingWindStackWarningPlugin.cs(51,30) : error CS0115: 'Turbo.Plugins.Xenthalon.SweepingWindStackWarningPlugin.PaintWorld(Turbo.Plugins .WorldLayer)': No suitable method for overwriting was found.

    Thx in Advance
    God, how i haven't see it...
    Use this one : [C#] SweepingWindStackWarningPlugin (Xenthalon) - Pastebin.com

    @Xenthalon, fix please.
    Hide the Rum! --> Default theme customization 101 <--

  16. Thanks FullmetalEnvy, jweavis (2 members gave Thanks to JackCeparou for this useful post)
  17. #14
    FullmetalEnvy's Avatar Member CoreCoins Purchaser
    Reputation
    8
    Join Date
    Mar 2017
    Posts
    21
    Thanks G/R
    16/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works like a charm now. Thanks Jack
    Last edited by FullmetalEnvy; 04-03-2017 at 05:53 AM.

  18. #15
    Xenthalon's Avatar Active Member
    Reputation
    18
    Join Date
    Mar 2017
    Posts
    22
    Thanks G/R
    1/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh man, I'm terribly sorry, seems I copied a too old version of the post from google cache. Locally I had the working newer version that Jack also posted. Thanks for the info, original post updated.

Page 1 of 2 12 LastLast

Similar Threads

  1. Internal Mail Error
    By delldude1989 in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 05-05-2008, 04:35 PM
  2. International Talk Like a Pirate Day!
    By Loveshock in forum Community Chat
    Replies: 13
    Last Post: 09-20-2007, 12:11 PM
  3. International Rules to Calling Shotgun
    By matswurld in forum Community Chat
    Replies: 1
    Last Post: 05-18-2007, 08:37 PM
  4. President Bush, CAUGHT SWEARING at international meeting
    By mantalcore in forum Community Chat
    Replies: 15
    Last Post: 08-14-2006, 09:41 AM
All times are GMT -5. The time now is 07:21 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search