movement speed plugin pls? menu

User Tag List

Results 1 to 9 of 9
  1. #1
    nkyp's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    17
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    movement speed plugin pls?

    someone to have movement speed plugin?

    movement speed plugin pls?
  2. #2
    User5981's Avatar First Dev On The Internet
    Reputation
    379
    Join Date
    Aug 2017
    Posts
    765
    Thanks G/R
    30/358
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There's a speed indicator in that one :
    Resu/README.md at master . User5981/Resu . GitHub
    Supported version for all Resu plugins

  3. #3
    nkyp's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    17
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i want something to show movement speed % if

  4. #4
    Romanmas's Avatar Member
    Reputation
    11
    Join Date
    Mar 2017
    Posts
    187
    Thanks G/R
    9/9
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nkyp View Post
    i want something to show movement speed % if
    //################################################################################
    //# ..:: created with TCT Version 4.5 for THUD v7.1 (17.2.19.0) ::.. by RealGsus #
    //################################################################################

    using Turbo.Plugins.Default;

    namespace Turbo.Plugins.User
    {

    public class TCTAttributLabelListPlugin : BasePlugin, ICustomizer
    {

    public TCTAttributLabelListPlugin()
    {
    Enabled = true;
    }

    public override void Load(IController hud)
    {
    base.Load(hud);
    }

    public void Customize()
    {
    //##### AttributLabeList Position: 10 #####
    Hud.RunOnPlugin<AttributeLabelListPlugin>(plugin =>
    {
    var index = 9;
    if (index < plugin.LabelList.LabelDecorators.Count && index >= 0) {
    plugin.LabelList.LabelDecorators[index].TextFont = Hud.Render.CreateFont("tahoma", 7, 191, 255, 255, 255, true, false, true);
    plugin.LabelList.LabelDecorators[index].BackgroundTexture1 = Hud.Texture.ButtonTextureBlue;
    plugin.LabelList.LabelDecorators[index].BackgroundTexture2 = Hud.Texture.BackgroundTextureGreen;
    plugin.LabelList.LabelDecorators[index].BackgroundTextureOpacity2 = 0.7f;
    plugin.LabelList.LabelDecorators[index].TextFunc = () => (Hud.Game.Me.Stats.MoveSpeed).ToString("F0") + "%";
    plugin.LabelList.LabelDecorators[index].HintFunc = () => "—корость";
    }
    });
    }

    }

    }

  5. Thanks RNN (1 members gave Thanks to Romanmas for this useful post)
  6. #5
    nkyp's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    17
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx works gg
    Last edited by nkyp; 10-22-2019 at 10:23 AM.

  7. #6
    Romanmas's Avatar Member
    Reputation
    11
    Join Date
    Mar 2017
    Posts
    187
    Thanks G/R
    9/9
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nkyp View Post
    where to save this?
    TurboHUD 19.9.25.0\plugins\User\

  8. #7
    RNN's Avatar Legendary
    Reputation
    801
    Join Date
    Sep 2018
    Posts
    1,041
    Thanks G/R
    102/764
    Trade Feedback
    0 (0%)
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)
    I like the idea of ​​showing the speed of movement in that place.
    The above code overwrites the "experience per hour today" label. In order not to lose information I have an alternative: join "EHP current" and "EHP Max" and then insert the Speed ​​Label (penultimate position, although it could be added at the end)



    Insert in Plugins\User\PluginEnablerOrDisablerPlugin.cs:

    Code:
    	Hud.RunOnPlugin<AttributeLabelListPlugin>(plugin =>
    	{	
    		plugin.LabelList.LabelDecorators.RemoveAt(0);
    		plugin.LabelList.LabelDecorators[0].TextFunc = () => ValueToString(Hud.Game.Me.Defense.EhpCur, ValueFormat.ShortNumber);
    		plugin.LabelList.LabelDecorators[0].HintFunc = () => "EHP current";
    		plugin.LabelList.LabelDecorators[0].BackgroundTextureOpacity2 = 0.7f;
    		plugin.LabelList.LabelDecorators[0].ExpandUpLabels.Insert(0, new TopLabelDecorator(Hud)
    		{
    			TextFont = Hud.Render.CreateFont("tahoma", 7, 180, 255, 255, 255, true, false, true),
    			ExpandedHintFont = Hud.Render.CreateFont("tahoma", 7, 255, 200, 200, 200, false, false, true),
    			ExpandedHintWidthMultiplier = 3,				
    			BackgroundTexture1 = Hud.Texture.ButtonTextureGray,
    			BackgroundTexture2 = Hud.Texture.BackgroundTextureGreen,
    			BackgroundTextureOpacity2 = 0.7f,
    			TextFunc = () => ValueToString(Hud.Game.Me.Defense.EhpMax, ValueFormat.ShortNumber),
    			HintFunc = () => "EHP max",					
    		} );				
    		plugin.LabelList.LabelDecorators.Insert(8, new TopLabelDecorator(Hud)
    		{
    			TextFont = Hud.Render.CreateFont("tahoma", 7, 191, 255, 255, 255, true, false, true),
    			BackgroundTexture1 = Hud.Texture.ButtonTextureBlue,
    			BackgroundTexture2 = Hud.Texture.BackgroundTextureGreen,
    			BackgroundTextureOpacity2 = 0.7f,
    			TextFunc = () => (Hud.Game.Me.Stats.MoveSpeed).ToString("F0") + "%",
    			HintFunc = () => "movement speed",
    		} );						
    	}  );

  9. Thanks Buzzy62 (1 members gave Thanks to RNN for this useful post)
  10. #8
    n1com's Avatar Member
    Reputation
    2
    Join Date
    May 2017
    Posts
    39
    Thanks G/R
    45/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would you be so kind and tell me, where i can find other stats to add some like this myself? for example resource cost reduction and stuff. i cant seem to find the directory

  11. #9
    Glex's Avatar Member
    Reputation
    4
    Join Date
    Apr 2017
    Posts
    37
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RNN View Post
    I like the idea of ​​showing the speed of movement in that place.

    Thx

Similar Threads

  1. A speed hack(kinda)
    By XxKajxX in forum World of Warcraft Bots and Programs
    Replies: 30
    Last Post: 11-27-2006, 10:50 PM
  2. Need Cheat Engine Speed Hack
    By Avianar47 in forum World of Warcraft General
    Replies: 0
    Last Post: 07-25-2006, 01:21 AM
  3. Speed Hack-Syndrome
    By eom[dark_lord] in forum World of Warcraft General
    Replies: 6
    Last Post: 07-09-2006, 10:00 PM
  4. Run with mount speed in BG's
    By Matt in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 05-13-2006, 06:59 PM
  5. Epic Mount Speed in a BG
    By Muryllis in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 04-25-2006, 12:45 AM
All times are GMT -5. The time now is 04:11 PM. 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