Quote:
Originally Posted by Ventinal
I'll wait for the 0.7.6 update. This is too complicated (I have no idea where to put that offset)
|
well, if it seems too complicated, it's because I didn't provide the right info, let me retry.
the given offsets are the offset of the strings to be modified in the last release of shStudio (0.7.5.5).
these offsets are displayed by
[Only registered and activated users can see links. Click Here To Register...] (which is the simpler tool to change some characters in te data).
you can use these values to jump to the right location (using shortcut Ctrl+G or menu Search / Goto), simply enter the value (hexa, as provided, is the default choice).
I assume your first error was to modify the pattern "{c5}[Enchantment" which is a looked for string and not "{c5}[Enchantment:" which is the inserted string.
The first is present before the second; it is used to check if the enhancement item name is already present in the description or not (to not insert it twice); because OS use several strings, the patterns "{c5}[Enchantment", "{c5}[Enhancement" and "{c5}[Reinforcement" are looked for (we will find these 3 strings one after the other); then the code contains the ending pattern "]{/c}" and the begining pattern "{c5}[Enhancement:", you can change them to whatever you want but you must start the strings at the exact same location than the current ones and you must end your new string with a '00' value which marks the end of string (of course you can not extend string to overwrite the next one, nor the "Can be equipped by" msg stored after).
Quote:
|
[with] older tool ShStudio 0.7.1 the [Enhancement] text is in the description box rather than being hidden in the new tool.
|
both release behaves similary; once inserted, the text is not hidden, it is present in the description string and displayed with in.
both release also check for a "[xyz" pattern (the 3 listed above) and thus they always use the '[' delimiters (since it is part of the hard-coded searched pattern).
being able to customize the pattern with the settings dialog, make (obviously) sense since it was not possible to localise (translate) it (in all versions of shStudio).