-
Member
How to remove them ?( RareMinion's dotted circle and HP number)
HI,
(1)
How to remove RareMinion's dotted circle ?
mini.png
(2)
How to remove Elite mosnter 's HP number?(only show cycle)
HP.png
-
Legendary
1) MonsterCirclePlugin.cs :
look for these lines:
Code:
if (monster.Rarity == ActorRarity.RareMinion) {
RareMinionDecorator.Paint(layer, monster, monster.FloorCoordinate, monster.SnoMonster.NameLocalized);
}
change to
Code:
if (monster.Rarity == ActorRarity.RareMinion) {
// RareMinionDecorator.Paint(layer, monster, monster.FloorCoordinate, monster.SnoMonster.NameLocalized);
}
2) HealthBarOnElitePlugin.cs: remove? It is one of the essential plugins
Last edited by RNN; 05-17-2019 at 08:41 AM.
-
Post Thanks / Like - 1 Thanks
van9999 (1 members gave Thanks to RNN for this useful post)
-
Member
1) MonsterCirclePlugin.cs :
look for these lines:
Code:
if (monster.Rarity == ActorRarity.RareMinion) {
RareMinionDecorator.Paint(layer, monster, monster.FloorCoordinate, monster.SnoMonster.NameLocalized);
}
change to
Code:
if (monster.Rarity == ActorRarity.RareMinion) {
// RareMinionDecorator.Paint(layer, monster, monster.FloorCoordinate, monster.SnoMonster.NameLocalized);
}
it's work !
2) HealthBarOnElitePlugin.cs: remove? It is one of the essential plugins[/QUOTE]
ok, i removed this plugin
RNN, thanks your reply every time