I want to adress an NPC with a ß (in german called a sharp S )
I tried to find out in the ASCI Table, what when i had a look
ASCI Table says: ß = \223 but it doesn't work also I don't see something common with the \132 (ae) (Kuhkäfer )
I don't have experience with those type of letters but I believe you should be able to type them directly into your scripts as long as you save the file as "UTF-8 without BOM". Notepad++ can save in that format.
Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
The texts inside RoM are not encoded as ASCII, because this would limit the possible languages to latin alphabet only.
ASCII is a single byte encoding, that does only allow up to 256 different characters which is no longer sufficient.
RoM uses UTF-8 encoding. The code for "LATIN SMALL LETTER SHARP S" is (hex numbers) C3 9F.
To find other codes you can lookup UTF-8 encoding tables in the internet.
Perhaps it will work, if you save your script files with UTF-8 encoding (you can select your encoding when saving files with notepad).
But I don't know if micromacro is able work with UTF-8 encoded strings. I think you should try to work with object IDs.