Jump to content

How do you Rename a specific Trinket?


Recommended Posts

Hello modders! a simple request.  I've finally changed picture to replace the "Mismatched Button" in the inventory and item on the ground.  Although, my problem is that I cannot change the name "Mismatched buttons" would one of you be so kind to help me out? thanks in advance!!

post-287068-0-57975700-1380597445_thumb.

post-287068-0-98222500-1380597606_thumb.

Link to comment
Share on other sites

  • Developer

Hello modders! a simple request.  I've finally changed picture to replace the "Mismatched Button" in the inventory and item on the ground.  Although, my problem is that I cannot change the name "Mismatched buttons" would one of you be so kind to help me out? thanks in advance!!

If you search in 'data/scripts' for 'Mismatched Buttons', you'll find it in 'strings.lua'.  It's part of the global 'STRINGS.NAMES' table meaning you can override it  by adding the following line to 'modmain.lua':

 

GLOBAL.STRINGS.NAMES.TRINKET_9 = 'Hello World!'

 

Hope that helps :).

Link to comment
Share on other sites

If you search in 'data/scripts' for 'Mismatched Buttons', you'll find it in 'strings.lua'.  It's part of the global 'STRINGS.NAMES' table meaning you can override it  by adding the following line to 'modmain.lua':

 

GLOBAL.STRINGS.NAMES.TRINKET_9 = 'Hello World!'

 

Hope that helps :-).

 

I'll give that a go thank you so much for replying!! :D

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...