How to Remove "Non-rated Group" and Others from Shift + Click on Mobs?

Telol

Vassal
Hey everyone,

Does anyone know how to remove the "Non-rated Group" and similar text from the Shift + Click info on mobs? It's cluttering the display, and I’d prefer to have a cleaner view.

Any advice or guide on how to customize this would be greatly appreciated. Thanks in advance!

Кто-нибудь знает, как убрать текст типа "Non-rated Group" и подобный из информации, которая появляется при Shift + Click на мобах? Это засоряет экран, и я бы предпочел более чистый вид.

Буду благодарен за любые советы или инструкции по настройке. Заранее спасибо!
 

Attachments

  • forupload.webp
    forupload.webp
    156.3 KB · Views: 40
Last edited:
1. gameserver\data\string\strings_en.properties
CSS:
drop.group.html=<br1>
drop.rewardData.html=<table width=500 height="42" border="0" background="L2UI_CT1.Windows_DF_TooltipBG"><tr><td width=32 height=32><img src=%icon% width=32 height=32></td><td width=310>%item%<font color="LEVEL"> %drop_min% - %drop_max% </font><br1> Drop Chance : <font color="LEVEL">&nbsp;%chance%&nbsp;</font><br1></td></tr></table><br1>
drop.rated_grouped=<br1>
drop.not_rated_grouped=<br1>
drop.not_rated_not_grouped=<br1>
drop.sweep=<font color="E7C94E"> Spoil: </font><br1>

The following HTML code will work if you have the capability to adjust the window to any dimensions you want.
2. gameserver\data\html-en\actions\rewardlist_info.htm
CSS:
<html noscrollbar>
<title>Drop List</title>
<body>
<center>
    <font color="LEVEL">%npc_name%<font><br1>
    <table>
    <tr>
        <td><button value="Normal" action="bypass scripts_actions.RewardListInfo:showReward 0 RATED_GROUPED" width=150 height=20 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
        <td><button value="Spoil" action="bypass scripts_actions.RewardListInfo:showReward 0 SWEEP" width=150 height=20 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
    </tr>
    </table>
    <img src="l2ui.SquareGray" width=490 height=1><br1><br1>
    <font color=995312>%info%</font>
    %paging%
</center>
</body>
</html>
resize_x=550 resize_y=360

and it looks like this:
 

Attachments

  • Screenshot_4.webp
    Screenshot_4.webp
    33 KB · Views: 31
1. gameserver\data\string\strings_en.properties
CSS:
drop.group.html=<br1>
drop.rewardData.html=<table width=500 height="42" border="0" background="L2UI_CT1.Windows_DF_TooltipBG"><tr><td width=32 height=32><img src=%icon% width=32 height=32></td><td width=310>%item%<font color="LEVEL"> %drop_min% - %drop_max% </font><br1> Drop Chance : <font color="LEVEL">&nbsp;%chance%&nbsp;</font><br1></td></tr></table><br1>
drop.rated_grouped=<br1>
drop.not_rated_grouped=<br1>
drop.not_rated_not_grouped=<br1>
drop.sweep=<font color="E7C94E"> Spoil: </font><br1>

The following HTML code will work if you have the capability to adjust the window to any dimensions you want.
2. gameserver\data\html-en\actions\rewardlist_info.htm
CSS:
<html noscrollbar>
<title>Drop List</title>
<body>
<center>
    <font color="LEVEL">%npc_name%<font><br1>
    <table>
    <tr>
        <td><button value="Normal" action="bypass scripts_actions.RewardListInfo:showReward 0 RATED_GROUPED" width=150 height=20 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
        <td><button value="Spoil" action="bypass scripts_actions.RewardListInfo:showReward 0 SWEEP" width=150 height=20 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
    </tr>
    </table>
    <img src="l2ui.SquareGray" width=490 height=1><br1><br1>
    <font color=995312>%info%</font>
    %paging%
</center>
</body>
</html>
resize_x=550 resize_y=360

and it looks like this:

Thank you <3 !
 
I’m trying to translate the file to Russian, but I can’t find the specific files for RU localization. I was able to find the files for EU, but I need help locating or creating the equivalent files for RU.
The files you provided are great for EU, but could you guide me on how to adapt or find the RU files? Any help or direction on this would be greatly appreciated! thnak you !
 
I’m trying to translate the file to Russian, but I can’t find the specific files for RU localization. I was able to find the files for EU, but I need help locating or creating the equivalent files for RU.
The files you provided are great for EU, but could you guide me on how to adapt or find the RU files? Any help or direction on this would be greatly appreciated! thnak you !
1. gameserver\data\string\strings_ru.properties
2. gameserver\data\html-ru\actions\rewardlist_info.htm
 
I managed to do it. Thank you for the help! I'm also sharing this code along with MetaMan's: gameserver\data\string\strings_en.properties. It displays correctly for anyone who has issues with it: gameserver\data\string\strings_en.properties.

<html noscrollbar>
<title>Drop List</title>
<body>
<center>
<font color="LEVEL">%npc_name%</font><br1>
<table>
<tr>
<td>
<button value="Normal" action="bypass scripts_actions.RewardListInfo:showReward 0 RATED_GROUPED" width=120 height=20 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF">
</td>
<td>
<button value="Spoil" action="bypass scripts_actions.RewardListInfo:showReward 0 SWEEP" width=120 height=20 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF">
</td>
</tr>
</table>
<img src="l2ui.SquareGray" width=270 height=1><br1><br1>
<font color=995312>%info%</font>
%paging%
</center>
</body>
</html>
 
Back
Top