Change circle from inner sanctuary to the old size menu

User Tag List

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

    Change circle from inner sanctuary to the old size

    heyho guys,

    as notice some updates before (i think it was the big necro update), the size of the inner sanctuary circle was changed and imo its to small now...
    if u stay outside of the circle u still have the bonus as tested many times..
    the old size was that big like the small edged from the inner sanctuary and not the inner circle radius.

    i cant find where i can change it to the old size , can any1 help me or write me a code that i can confg it my self in the "PluginEnablerOrDisablerPlugin.cs"


    thx in advance guys brgds papy

    Change circle from inner sanctuary to the old size
  2. #2
    Litespeed0's Avatar Member
    Reputation
    30
    Join Date
    Mar 2017
    Posts
    62
    Thanks G/R
    47/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    InnerSanctuaryCustomizePlugin.cs

    Here is the plugin I use/wrote with some help from Psycho.
    It uses the same decorator for all runes.

    <-pastebin link->

    Create a folder "<thud folder>\plugins\Ls" and download the file from pastebin to that location, saving it as "InnerSanctuaryCustomizePlugin.cs"

  3. Thanks PapYruS, (Sarge) (2 members gave Thanks to Litespeed0 for this useful post)
  4. #3
    PapYruS's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    25
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Litespeed0 View Post
    Here is the plugin I use/wrote with some help from Psycho.
    It uses the same decorator for all runes.

    <-pastebin link->

    Create a folder "<thud folder>\plugins\Ls" and download the file from pastebin to that location, saving it as "InnerSanctuaryCustomizePlugin.cs"
    big thx for reply now i can work with that

  5. #4
    PapYruS's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    25
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sry problem solved
    Last edited by PapYruS; 12-16-2018 at 06:19 PM.

  6. #5
    kirkiant's Avatar Member
    Reputation
    1
    Join Date
    May 2016
    Posts
    12
    Thanks G/R
    16/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi PapYruS ,
    plz can share the pastebin?
    i dont know how to do that,no idea with coding..
    cant change the size of sanc circle
    ty in advance sir
    Last edited by kirkiant; 12-17-2018 at 02:11 PM.

  7. #6
    PapYruS's Avatar Member
    Reputation
    1
    Join Date
    Mar 2017
    Posts
    25
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kirkiant View Post
    hi PapYruS ,
    plz can share the pastebin?
    i dont know how to do that,no idea with coding..
    cant change the size of sanc circle
    ty in advance sir
    its not my plugin ofc but i can give u the settings what me and friends use.
    if u wana change the circle its just line: 22 for the outta green circle and line: 27 for the inner white circle. Radius = xx the yards u want then

    hope it helps ya, greetz papy

    PHP Code:
    namespace Turbo.Plugins.Ls
    {
        
    using Turbo.Plugins.Default;
     
           public class 
    InnerSanctuaryCustomizePlugin BasePluginICustomizer
        
    {
            public 
    WorldDecoratorCollection InnerSanctuaryDecorator {getset;}
     
            public 
    InnerSanctuaryCustomizePlugin()
            {
                
    Enabled true;
     
            }
            public 
    override void Load(IController hud)
            {
                
    base.Load(hud);
     
                
    InnerSanctuaryDecorator = new WorldDecoratorCollection(
                    new 
    GroundCircleDecorator(Hud)
                    {
                        
    Brush Hud.Render.CreateBrush(2451002551507f),
                        
    Radius 15.0f,
                    },
                    new 
    GroundCircleDecorator(Hud)
                    {
                        
    Brush Hud.Render.CreateBrush(2452552552552),
                        
    Radius 13.0f,
                    },
                    new 
    GroundLabelDecorator(Hud)
                    {
                        
    CountDownFrom 6,
                        
    TextFont Hud.Render.CreateFont("tahoma"1425502550truefalse128000true),
                    },
                    new 
    GroundTimerDecorator(Hud)
                    {
                        
    CountDownFrom 6,
                        
    BackgroundBrushEmpty Hud.Render.CreateBrush(1280000),
                        
    BackgroundBrushFill Hud.Render.CreateBrush(245255000),
                        
    Radius 35,
                    }
                );
     
            }
            public 
    void Customize()
            {
                
    Hud.RunOnPlugin<PlayerSkillPlugin>(plugin =>
                {
                    
    plugin.InnerSanctuaryDefaultDecorator InnerSanctuaryDecorator;
                    
    plugin.InnerSanctuarySafeHavenDecorator InnerSanctuaryDecorator;
                    
    plugin.InnerSanctuarySanctifiedGroundDecorator InnerSanctuaryDecorator;
                    
    plugin.InnerSanctuaryTempleOfProtecteionDecorator InnerSanctuaryDecorator;
                });
            }
        }


Similar Threads

  1. wrong section sry
    By PapYruS in forum TurboHUD Discussions
    Replies: 0
    Last Post: 09-28-2017, 04:28 PM
  2. [Request] item change Gavel of Naaruu blessings to The Hungering Cold
    By d3na in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 04-19-2008, 09:36 PM
  3. How do I tranfer a mall from 1 db to the other???
    By PRIMO12 in forum World of Warcraft Emulator Servers
    Replies: 10
    Last Post: 01-01-2008, 05:57 PM
  4. Magically go from under Stormwind to the Mage tower in Stormwind.
    By Lahtin3n in forum World of Warcraft Exploration
    Replies: 9
    Last Post: 12-20-2007, 02:52 PM
  5. Windfury to the old one..
    By Wiseguy in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 09-26-2007, 03:22 PM
All times are GMT -5. The time now is 04:38 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