How to turn off all sign icon/sign ?

Zez

New member
Messages
11
Points
0
Github
-
Emulator
This is my first post. So sorry if I post wrong room (I don't know the room I should make a post)

I am a newbie on config ragnarok server, today I would like to know how to disable all sign on mini map and over head of npc.

I don't want player to enable and see it.

Please see image for more info.

Thank you very much for helping.

Screenshot 2021-06-12 004456.png

Screenshot 2021-06-12 004535.png

 
it's entirely clientside in client\data\luafiles514\lua files\signboardlist.lub 

and thus can't be disabled server wise.

    {
        "prontera", // Map
        159, // x coord
        192, // y coord
        10, // sign height
        IT_SIGNBOARD, // type
        "유저인터페이스\\item\\al_warp.bmp", // ressource path
        " Warper", // Text shown
        "#0x00FFFFFF" // Text color
    },


You can simply empty that file.

 
Last edited by a moderator:
  • Like
Reactions: Zez
it's entirely clientside in client\data\luafiles514\lua files\signboardlist.lub 

and thus can't be disabled server wise.

    {
        "prontera", // Map
        159, // x coord
        192, // y coord
        10, // sign height
        IT_SIGNBOARD, // type
        "유저인터페이스\\item\\al_warp.bmp", // ressource path
        " Warper", // Text shown
        "#0x00FFFFFF" // Text color
    },


You can simply empty that file.
I extract this file from data.grf then i got problem to read/edit file (See image for more understanding).

How to edit it ?

Screenshot 2021-06-12 233425.png

 
Its the enxrypted one from kro. You need to edit the one from your custom grf. It's part of the Translation files in there.

 
  • Like
Reactions: Zez
Its the enxrypted one from kro. You need to edit the one from your custom grf. It's part of the Translation files in there.
Got it, thanks.

But I still don't know how to remove this icon on mini map. Do you know how to remove because it not match on npc location ? (I edit or remove every npc on this map).

Screenshot 2021-06-13 023313.png

 
Last edited by a moderator:
iirc, those are in the Clients System/towninfo.lub

Note: Not in the grf but in the game directory

 
  • Like
Reactions: Zez
iirc, those are in the Clients System/towninfo.lub

Note: Not in the grf but in the game directory
I cannot remove all, correct ? It show box about initial (seem like error) while launch game.
I removed text in { }, it's working smoothly. Thanks.

 
Back
Top