Jump to content

Balistic weapon names.


Tiktaalik

Recommended Posts

How deeply do you want to go down the rabbit hole? You can can simply change the names as they are presented in the UI by altering strings.xml. If you want to fundamentally change the name of a weapon so it's called by a specific, rather than generic name in the underlying structure of the game, that's a lot more work.

Link to comment
Share on other sites

Tiktallik: I try not to assume too much, which is why I ask questions to clarify. In any case, as I said, you will need to alter the appropriate lines in strings.xml. For instance, if you wanted to change the designation "laser rifle" to "Rheinmetall 50kw HEL", you would need to alter:

The weapon.<xxx> listing. This describes the weapon in the equip screen:

From

   <Row ss:AutoFitHeight="0">   <Cell ss:StyleID="s78"><Data ss:Type="String">weapon.laserrifle</Data></Cell>   <Cell><Data ss:Type="String">Laser Rifle</Data></Cell>  </Row>

To

   <Row ss:AutoFitHeight="0">   <Cell ss:StyleID="s78"><Data ss:Type="String">weapon.laserrifle</Data></Cell>   <Cell><Data ss:Type="String">Rheinmetall 50kw HEL</Data></Cell>  </Row>

Don't forget to change the weapon.xxx.desc as well as that's the tooltip that will appear if you mouseover the item.

If the item is listed as an Items.xxx, that need changing.

From

<Row ss:AutoFitHeight="0"><Cell><Data ss:Type="String">Items.Laserrifle</Data></Cell><Cell><Data ss:Type="String">Laser Rifle</Data></Cell></Row>

To

   <Row ss:AutoFitHeight="0">   <Cell><Data ss:Type="String">Items.Laserrifle</Data></Cell>   <Cell><Data ss:Type="String">Rheinmetall 50kw HEL</Data></Cell>  </Row>

If the item has to be manufactured (like laser rifles), you have to change the mantech listing - this is the UI for manufactured items:

So:

   <Row ss:AutoFitHeight="0">   <Cell><Data ss:Type="String">ManTech.Laserrifle</Data></Cell>   <Cell><Data ss:Type="String">Laser rifle</Data></Cell>  </Row>

To

   <Row ss:AutoFitHeight="0">   <Cell><Data ss:Type="String">ManTech.Laserrifle</Data></Cell>   <Cell><Data ss:Type="String">Rheinmetall 50kw HEL</Data></Cell>  </Row>

Like weapon.xxx, there is a mantech.xxxdesc as well which will need changing

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...