I would like to suggest that you add the ability to define the text strings of the files in the available languages.
An example:
The HideAndSeek event was added to language.xml, but the messages sent by the hint system are still controlled by the file.
So the event announcement is in the language the player selected, but the hints are in the language the plugin is still in.
It would be interesting to do something like this:
<Map Number="80" NPCType="381"> <!-- English message --> <Spawn StartX="1" StartY="50" EndX="55" EndY="254" Dir="-1" LanguageID="0"> <Hint ID="0" Text=" -> We can rotate places and become invisible !" DisplayTime="3" /> <Hint ID="1" Text=" -> My glow is unique and easily found" DisplayTime="5" /> <Hint ID="2" Text=" -> You're too slow, I'm still roaming the strange cities" DisplayTime="7" /> <Hint ID="3" Text=" -> Be persistent or try amateur next time!" DisplayTime="9" /> </Spawn> <!-- Another language --> <Spawn StartX="1" StartY="50" EndX="55" EndY="254" Dir="-1" LanguageID="1"> <Hint ID="0" Text=" -> We can rotate places and become invisible !" DisplayTime="3" /> <Hint ID="1" Text=" -> My glow is unique and easily found" DisplayTime="5" /> <Hint ID="2" Text=" -> You're too slow, I'm still roaming the strange cities" DisplayTime="7" /> <Hint ID="3" Text=" -> Be persistent or try amateur next time!" DisplayTime="9" /> </Spawn> </Map>
By adding the languageID="" attribute we can tell the system which text it should load according to the language the player selected in the launcher.
This attribute could be added to the other message files:
- MonsterSpawn_group
- ScrableWolrds
- IceWind
- HuntPoint
And all other systems that load messages outside of English.xml too!
Recommended Comments
There are no comments to display.