Default theme customization 101 menu

User Tag List

Page 2 of 5 FirstFirst 12345 LastLast
Results 16 to 30 of 67
  1. #16
    Buzzy62's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    105
    Thanks G/R
    18/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This, most DEFINITELY, needs to be a sticky! Awesome work, Jack!

    Default theme customization 101
  2. #17
    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 Buzzy62 View Post
    This, most DEFINITELY, needs to be a sticky! Awesome work, Jack!
    Well, it's a sticky since age now but thanks for the compliment ;p

    Originally Posted by Shisha16 View Post
    Can someone help me. I cant find the folder or data to change the "greyed" leg items in my inventory. I can open config folder and then there are some ui folder. How can i create this with txt. into xml.
    This is no more an xml configuration.

    I'm not sure what you want to accomplish, I see two cases :

    1) disable the greyed items completly :
    PHP Code:
                Hud.RunOnPlugin<InventoryAndStashPlugin>(plugin =>
                {
                    
    // disable sell darkening
                    
    plugin.NotGoodDisplayEnabled false;
                }); 
    (see OP for instructions on how to use it ;p)

    2) configure the pickit
    the configuration file is /config/pickit_sc_70.ini (and I can't help more as I don't master this file format ;p)
    Hide the Rum! --> Default theme customization 101 <--

  3. Thanks Megalodon84 (1 members gave Thanks to JackCeparou for this useful post)
  4. #18
    Buzzy62's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    105
    Thanks G/R
    18/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OK, having some difficulty doing something that I don't even know is possible.

    I normally just edit the ItemsPlugin.cs and GoblinPlugin.cs files manually and decided t try making the changes in my PluginEnablerOrDisablerPlugin.cs instead.

    What I am getting is exceptions:
    (33,30) : error CS1513: } expected
    (34,16) : error CS1520: Method must have a return type
    (47,4) : error CS1519: Invalid token ')' in class, struct, or interface member declaration
    (48,2) : error CS0116: A namespace cannot directly contain members such as fields or methods
    (51,17) : error CS1518: Expected class, delegate, enum, interface, or struct
    (52,16) : error CS1518: Expected class, delegate, enum, interface, or struct
    (55,30) : error CS1518: Expected class, delegate, enum, interface, or struct
    (57,10) : error CS0116: A namespace cannot directly contain members such as fields or methods
    (58,1) : error CS1022: Type or namespace definition, or end-of-file expected



    This is the snippet I inserted for the GoblinPlugin change:

    PHP Code:
    Hud.RunOnPlugin<GoblinPlugin>(plugin => {
            
    plugin.public GoblinPlugin()
            public 
    GoblinPlugin()
            {
                
    Enabled true;
                
    SnoMapping = new Dictionary<uintWorldDecoratorCollection>();
                
    EnableSpeak true;
            });
    }; 

    This is the snippet I inserted for the ItemsPlugin change:

    PHP Code:
    Hud.RunOnPlugin<ItemsPlugin>(plugin => {
            
    plugin.public ItemsPlugin()
            public 
    ItemsPlugin()
            {
                
    Enabled true;

                
    EnableSpeakLegendary true;
                
    EnableSpeakAncient true;
                
    EnableSpeakPrimal true;
                
    EnableSpeakSet true;
                
    EnableSpeakAncientSet true;
                
    EnableSpeakPrimalSet true;

                
    EnableCustomSpeak false;
                
    CustomSpeakTable = new Dictionary<ISnoItemstring>();
            });
    }; 
    What am I doing wrong?
    Last edited by Buzzy62; 11-03-2017 at 01:46 PM.

  5. #19
    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 Buzzy62 View Post
    What am I doing wrong?
    Many things ;p

    A complete file with both of your snippets look like this : /plugins/User/PluginEnablerOrDisablerPlugin2.cs
    PHP Code:
    using Turbo.Plugins.Default;

    namespace 
    Turbo.Plugins.User
    {
        public class 
    PluginEnablerOrDisablerPlugin2 BasePluginICustomizer
        
    {
            public 
    PluginEnablerOrDisablerPlugin2()
            {
                
    Enabled true;
            }

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

            public 
    void Customize()
            {
                
    Hud.RunOnPlugin<GoblinPlugin>(plugin =>
                {
                    
    plugin.Enabled true;
                    
    plugin.SnoMapping.Clear();
                    
    plugin.EnableSpeak true;
                });

                
    Hud.RunOnPlugin<ItemsPlugin>(plugin =>
                {
                    
    plugin.Enabled true;

                    
    plugin.EnableSpeakLegendary true;
                    
    plugin.EnableSpeakAncient true;
                    
    plugin.EnableSpeakPrimal true;
                    
    plugin.EnableSpeakSet true;
                    
    plugin.EnableSpeakAncientSet true;
                    
    plugin.EnableSpeakPrimalSet true;

                    
    plugin.EnableCustomSpeak false;
                    
    plugin.CustomSpeakTable.Clear();
                });
            }
        }

    Last edited by JackCeparou; 11-03-2017 at 03:03 PM.
    Hide the Rum! --> Default theme customization 101 <--

  6. Thanks Buzzy62, Megalodon84 (2 members gave Thanks to JackCeparou for this useful post)
  7. #20
    Buzzy62's Avatar Member
    Reputation
    10
    Join Date
    Mar 2017
    Posts
    105
    Thanks G/R
    18/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Many things ;p
    Yeah, I guess my dreams of becoming a programmer are done! LOL

    Originally Posted by JackCeparou View Post
    A complete file with both of your snippets look like this : /plugins/User/PluginEnablerOrDisablerPlugin2.cs
    PHP Code:
    ...bunch of gobblty-gook... 
    Geez, Jack. You make it look SO easy. -sigh-

  8. #21
    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 Buzzy62 View Post
    Yeah, I guess my dreams of becoming a programmer are done!
    Learning programming without prior knowledge can be a tough (and very long) process, don't give up, take a break and retry later ; )

    Originally Posted by Buzzy62 View Post
    Geez, Jack. You make it look SO easy. -sigh-
    Well, I wrote my 1st 'software', alone with just a book, 1/4 century ago.. So I have some practice ^^'
    Hide the Rum! --> Default theme customization 101 <--

  9. #22
    KillerJohn's Avatar TurboHUD HUDmaster CoreCoins Purchaser Authenticator enabled
    Reputation
    3693
    Join Date
    Jul 2012
    Posts
    2,532
    Thanks G/R
    46/3335
    Trade Feedback
    0 (0%)
    Mentioned
    16 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JackCeparou View Post
    Learning programming without prior knowledge can be a tough (and very long) process, don't give up, take a break and retry later ; )


    Well, I wrote my 1st 'software', alone with just a book, 1/4 century ago.. So I have some practice ^^'
    haha, just like me, when I was 8 yo, in 1991
    I had only an english C64 book and I didn't understood anything of it
    Do not send me private messages unless it is absolutely necessary or the content is sensitive or when I ask you to do that...

  10. #23
    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)
    lol ^^

    You started younger than me ;p

    It was around 12 when I got my first computer : copy/pasting complete game listing from a book by hand..
    A bit later I wrote a MasterMind game from what I learned with other listings and the language manual, this took weeks..
    All of this on an Amiga500 + 2nd floppy + the 512Ko ram extension (woohoo 1Mo ram!!) with persistent clock xD

    Today's beginners don't know the chance they have ;p
    Last edited by JackCeparou; 11-03-2017 at 05:36 PM.
    Hide the Rum! --> Default theme customization 101 <--

  11. #24
    Vern1701's Avatar Active Member
    Reputation
    52
    Join Date
    Mar 2017
    Posts
    316
    Thanks G/R
    12/49
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I started in 1981, when I was 5! Basic, then HTML, a little C, C+, and C++. My major hurdle was and is my disability. TI 99 4a, Commodore VIC 20 and 64, and an Apple IIc.
    Last edited by Vern1701; 11-03-2017 at 11:30 PM.

  12. #25
    SillySi's Avatar Member
    Reputation
    1
    Join Date
    Nov 2017
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my god you guys are really making me feel like an old timer, I first started learning how to program in college but I learned COBOL and if even its forerunner if anyone remembers FLOW-MATIC, FORTRAN which is a compiler we used to use, CPL which was something that came before C and then turned into C, then C, C++, visual basic, etc. etc. I'm not going to tell you when but I'm sure you can figure it out. going to find my walker....

  13. #26
    Pari4h's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2007
    Posts
    260
    Thanks G/R
    29/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very much, Jack. This is simply a fantastic post. Cheers, mate. +rep

  14. #27
    kxc0re's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is the TurboMGR still working ? and where do i activate it ? :O

  15. #28
    JarJarD3's Avatar Contributor
    Reputation
    106
    Join Date
    Oct 2017
    Posts
    395
    Thanks G/R
    41/101
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Press this , it is better than ever

  16. #29
    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)
    I know this thread got out of bounds..
    But please, this is a 101 guide to help new comers to cope with basics of C# plugins paradigm, not a general/support help thread.

    Keep it clean and ask questions about anything not plugin related in the appropriate sub ;p
    Hide the Rum! --> Default theme customization 101 <--

  17. #30
    kxc0re's Avatar Member
    Reputation
    1
    Join Date
    Jul 2017
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    But thats what i thought i was asking,

    is the TurboMgr, you know the thingy where you can see your inventory out of game, not considered a plugin?
    Or is support for it discontinued, because i couldnt find it in the plugin folder.

Page 2 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [Custom] SnowElf Theme Login & Character Creation! + BONUS
    By Xel in forum World of Warcraft Model Editing
    Replies: 26
    Last Post: 04-23-2017, 04:44 AM
  2. [New/3DS] Custom Paladin 3DS Theme
    By Hazzbazzy in forum World of Warcraft General
    Replies: 0
    Last Post: 08-08-2016, 01:52 AM
  3. [Selling] Wts xbox custom themes
    By Holyinc in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 03-01-2012, 11:14 PM
  4. Custom Computer Build (opinions/comments?)
    By Matt in forum Community Chat
    Replies: 11
    Last Post: 07-23-2006, 12:57 PM
  5. New Custom Model Swapping Fix (1.11 Working)
    By Matt in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 06-23-2006, 06:05 PM
All times are GMT -5. The time now is 10:39 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