-
Actions do not always trigger or lines are cut off in the middle.
This is caused by packet fragmentation. You can solve this by setting #config {packet patch} to a value somewhere between 0.5 and 1.0 seconds. If your mud doesn't support GA (Go Ahead) or EOR (End of Record) to tag prompts, prompts will be displayed after the given delay. You can use the #prompt command to have TinTin++ recognize prompts. If your mud allows adding a line break after the prompt this is an option as well.
-
How to create an input bar?
Type: #split to enable the split screen input mode. Use #help split for more information.
-
I want to make an alias that sets actions using %0
Since both aliases and actions use % arguments you need to escape the arguments for the action using %%0 for %0, %%1 for %1, etc. For example: #alias {test} {#action {%%1 has arrived} {smile %%1}}
-
How to make color triggers?
Start an action with a tilde ~ and it will not strip colors. You can use #config {convert meta} {on} to have the mud client display colors as escape sequences, so you know what to fill in.
-
Numpad doesn't work
The problem is caused by either the terminal you are using, your operating system, or a combination of both. Try a different terminal or play around with your terminal configuration. See also the keypad manual entry.
-
I want to change the command character from # to /
This can be done with #config {tintin char} {/} or having a / as the first character in your script file. Doing this is not adviced.
-
How to enable chinese characters?
You can do this by using #config charset BIG-5 or #config charset GBK-1. If you're in a UTF-8 environment you can use #config charset BIG5TOUTF8 and #config charset GBK1TOUTF8.
-
I use OS X and ran tt++ a few times, and now every time I open a terminal window it runs tt++ automatically.
You likely used 'use settings as default' while running the tt++ binary. There are a few ways out of this, but the easiest is locating your terminal preference (home : library : com.apple.Terminal.plist) and deleting it. You'll have to redo anything custom you set up (screen size, colors, etc.), but it will get the terminal back to the default of loading into your home directory.
-
How to exit?
Press ctrl-d on an empty line or use the #end command.