Quote:
Originally Posted by mudik
kannst du mir sagen wie ich diesen fenster beenden kann also das es wie das ganz normal silkroad startet.
|
Since this is a question that is asked quite often as DevKit gains popularity, I've now added an option for this (and for other features).
[Only registered and activated users can see links. Click Here To Register...]
You can get an overview about available options and the default values by looking in the
[Only registered and activated users can see links. Click Here To Register...] file. If you want to change an option, simply edit the
[Only registered and activated users can see links. Click Here To Register...] file (or your cmake commandline) as following.
To enable the ChatViewer supplied by DevKit, you need to enable CONFIG_CHATVIEWER, which is disabled by default. To do this, add "-DCONFIG_CHATVIEWER=ON" to your cmake command like this
Code:
cmake -G "Visual Studio 10 2010" -T v80 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCONFIG_CHATVIEWER=ON ..
Then update the project files by running the cmd-file again.
To disable the console, add "-DCONFIG_DEBUG_CONSOLE=OFF" to your cmd-file like before. The log messages are still redirected and therefore don't appear in the dump-files anymore. You can disable this behaviour by adding "-DCONFIG_DEBUG_REDIRECT_PUTDUMP=OFF" to your command.
You can chain multiple options like so:
Code:
cmake -G "Visual Studio 10 2010" -T v80 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCONFIG_CHATVIEWER=ON -DCONFIG_DEBUG_CONSOLE=OFF -DCONFIG_DEBUG_REDIRECT_PUTDUMP=OFF ..
There's also an option to disable Imgui, which can be set like shown before.
Troubleshooting:
Make sure you don't accidentally delete the ".." in the end. Doesn't seem like much, but these are mandatory.