How to disable legendaries names completely? menu

User Tag List

Results 1 to 9 of 9
  1. #1
    jpgaming262's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    117
    Thanks G/R
    18/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How to disable legendaries names completely?

    Hi,

    I used these two lines below in PluginEnablerOrDisabler.plugin.cs to disable legendaries name that drops and in inventory. However, when an ancient drops there is still the label of ancient on ground. Is there a way to disable this (for ancients & primals)?

    Is it possible also to disable the "A" on items for ancients in stash and inventory?

    Code:
    Hud.GetPlugin<HoveredItemInfoPlugin>().Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().LegendaryDecorator.Enabled = false;
    Last edited by jpgaming262; 04-25-2018 at 08:56 AM.

    How to disable legendaries names completely?
  2. #2
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Change name PluginEnablerOrDisabler.plugin.css to PluginEnablerOrDisabler.plugin.cs

  3. #3
    jpgaming262's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    117
    Thanks G/R
    18/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    Change name PluginEnablerOrDisabler.plugin.css to PluginEnablerOrDisabler.plugin.cs
    Hi,

    Yes it's on .cs I made a typo on original post. I will edit.

  4. #4
    SeaDragon's Avatar Contributor
    Reputation
    321
    Join Date
    Aug 2016
    Posts
    1,041
    Thanks G/R
    140/299
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The code should work...

  5. #5
    jpgaming262's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    117
    Thanks G/R
    18/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SeaDragon View Post
    The code should work...
    I just tested it again to be sure and double checked my config to disable these plugins.

    When I check my inventory I can see "A" for ancients items and "P" for primals. Also I did a quick rift and a legendary dropped and it said it was ancient on ground :S

    I think there was the name of the item on ground too which I don't want.

    edit: I know PluginEnablerOrDisabler.plugin.cs loads fine because I remove the comment on the line to remove the grey item and it works.
    Last edited by jpgaming262; 04-25-2018 at 12:56 PM.

  6. #6
    jpgaming262's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    117
    Thanks G/R
    18/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can post screenshots if needed

  7. #7
    MrOne's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2017
    Posts
    322
    Thanks G/R
    66/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jp777cmoe View Post
    Hi,

    I used these two lines below in PluginEnablerOrDisabler.plugin.cs to disable legendaries name that drops and in inventory. However, when an ancient drops there is still the label of ancient on ground. Is there a way to disable this (for ancients & primals)?

    Is it possible also to disable the "A" on items for ancients in stash and inventory?
    To disable A and P try:
    Code:
    Hud.GetPlugin<InventoryAndStashPlugin>().AncientRankEnabled= false;
    To remove item label try:
    Code:
    Hud.GetPlugin<ItemsPlugin>().Enabled = false;
    or if u stell need some functions from this plugin than
    Code:
    Hud.GetPlugin<ItemsPlugin>().LegendaryDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().AncientDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().PrimalDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().SetDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().AncientSetDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().PrimalSetDecorator.Enabled = false;

  8. Thanks jpgaming262 (1 members gave Thanks to MrOne for this useful post)
  9. #8
    jpgaming262's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    117
    Thanks G/R
    18/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrOne View Post
    To disable A and P try:
    Code:
    Hud.GetPlugin<InventoryAndStashPlugin>().AncientRankEnabled= false;
    To remove item label try:
    Code:
    Hud.GetPlugin<ItemsPlugin>().Enabled = false;
    or if u stell need some functions from this plugin than
    Code:
    Hud.GetPlugin<ItemsPlugin>().LegendaryDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().AncientDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().PrimalDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().SetDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().AncientSetDecorator.Enabled = false;
    Hud.GetPlugin<ItemsPlugin>().PrimalSetDecorator.Enabled = false;
    That fixed it. Big thanks!

    I no longer have A & P items. I did a rift and some items dropped and no label for names or ancients. After IDing them I got an ancient.

  10. #9
    jpgaming262's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    117
    Thanks G/R
    18/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I remove the comments for Hud.GetPlugin<ItemsPlugin>().LegendaryDecorator.Enabled = false;

    It works too I have no idea what that command does.

Similar Threads

  1. Replies: 4
    Last Post: 06-22-2012, 05:44 PM
  2. [HOW TO] Change Your Name on Live Servers
    By Frogzilla in forum World of Warcraft General
    Replies: 4
    Last Post: 10-10-2007, 10:39 PM
  3. How to change your name on SQLYog
    By Snowflake in forum WoW EMU Guides & Tutorials
    Replies: 1
    Last Post: 09-24-2007, 02:01 PM
  4. How to Change ur Name in Alt Letters
    By BrantX in forum WoW EMU Guides & Tutorials
    Replies: 8
    Last Post: 09-16-2007, 07:15 PM
  5. How to KEEP your name
    By Sramota in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 12-04-2006, 12:37 PM
All times are GMT -5. The time now is 04:24 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