|
kautz Newbie
Joined: 11 Mar 2010 Posts: 2
|
Posted: Thu Mar 11, 2010 10:16 am
Umlaut in german mud |
Hi,
I'm trying to play a german mud (MorgenGrauen) but i would like to change the display.
For example, the mud sends :
"Der Koenig der Wonnewichte."
And i would like to read
"Der König der Wonnewichte."
So i would like to replace oe by ö, ae by ä and ue by ü (in display)
and when i type (in command line)
frage könig nach hilfe (ask king about help)
i would like
frage koenig nach hilfe
to be sent to the mud
so i would like to replace ö by oe, ä by ae and ü by ue (but this time in command line)
Can you help me?
Thanks a lot,
Kautz |
|
|
|
Araadan Wanderer
Joined: 07 Jun 2009 Posts: 65
|
Posted: Fri Mar 12, 2010 12:25 am |
trigg pattern: oe
value: #sub %char(246)
? |
|
|
|
charneus Wizard
Joined: 19 Jun 2005 Posts: 1876 Location: California
|
Posted: Fri Mar 12, 2010 1:46 am |
Araadan wrote: |
trigg pattern: oe
value: #sub %char(246)
? |
That'll only work if the font he's using supports it. For instance, I use Anonymous Pro as my font, and it doesn't support that character, so it won't show up. ;)
OP: You can do:
#ONINPUT {ö} {#SUB {oe}}
Just make sure the 'repeat within line' option is selected for the trigger in the editor.
Charneus |
|
|
|
kautz Newbie
Joined: 11 Mar 2010 Posts: 2
|
Posted: Fri Mar 12, 2010 6:27 am |
It really works like a charm - thanks a lot :)
|
|
|
|
|
|