Frictional Games Forum (read-only)

Full Version: Renaming Item(s)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, i'm trying to rename a key but i had no success so far.

The problem is the Language file, i cannot seem to make it work, i followed serval tutorials and still
it fails.

all i get is "picked up" and no description either.

help me out ;P
Are you making a full conversion? What language files are you using/changing? Have you changed the description and title?
All tutorials ive watched/read tells me to do add the following to the extra_english.lang file
I can use the key to open the door but it doesnt have any name/description

<CATEGORY Name="Inventory>
<Entry Name="ItemName_SmallKey">a Small Key</Entry>
<Entry Name="ItemDesc_SmallKey">Opens a door</Entry>
</CATEGORY>

so it should look something like;

<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">Description</Entry>
</CATEGORY>

<CATEGORY Name="Inventory>
<Entry Name="ItemName_SmallKey">a Small Key</Entry>
<Entry Name="ItemDesc_SmallKey">Wonder where this key fits..</Entry>
</CATEGORY>
</LANGUAGE>
Click on your key item, go to "Entity" and puts a name in case "CustomSubItemTypeName"

Now, go to your language file and put this :
Quote:<CATEGORY Name="Inventory">

<Entry Name="ItemName_NAME">Name Here</Entry>
<Entry Name="ItemDesc_NAME">Description here</Entry>
</CATEGORY>
Replace "NAME" by name you put in
case "CustomSubItemTypeName" and "Name here" = Key Name and "Description here" = Description of the key
Won't work either
You're missing a quotation after "Inventory"
lol thanks.. not sure how i missed that >.<
Lol don't worry... Happens to me all the time =] Typos and missing symbols are the first things I look for before I look at the function itself. It's usually the problem >>