LondonBoy wrote:I've just downloaded the program. I'd like to change the appearance of "Julia", I'd also like to get rid of the blue background & box and download some "knowledge bases" but I'm not sure how I do all that.
The blue box is a Verbot Skin that is applied, to clear it out, just open the player, go to edit-> options, then the Avatar tab, then click the "Clear" button.
To download new KnowledgeBases, click the "Download New content now" link at the top of these forums, once you have downloaded the KnolwedgeBases you want, go back to the options popup in the player, but this time the "KnowledgeBases" tab, then you just need to add the .ckb or .vkb file you downloaded to the list (and ensure the checkbox is checked next to the new file), close the options popup and the verbot will reload the knowledgebases you selected.
LondonBoy wrote:Can this programme actually shut down and start up my system?
You should be able to create a code module to do the shut down, I think to start up your computer you still need to press the button though
Here is some code you could try to do the shutdown (in the code module):
- Code: Select all
System.Diagnostics.Process.Start("Shutdown", "-s -t 10 -c");
If you called your code module "MyModule" and this shutdown method is called Shutdown (and has no parameters, returns void), then to call this method from a KnowledgeBase rule (in the output) you'd put the code:
- Code: Select all
<?csharp MyModule.Shutdown(); ?>
The Code Modules are a pretty advanced feature, so I don't expect this to make much sense, so if your really interested in having your verbot shutdown your system and you need more help let me know.
-Matt