I released an update today, v1.2.0, which fixes these problems.
I have tested it under Ubuntu 14.04, and it seems to work fine. I used the following commands to make sure I had all the correct libraries:
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install glib2.0 ...
Search found 19 matches
- Wed Dec 10, 2014 4:45 pm
- Forum: KildClient
- Topic: JMud plugin
- Replies: 9
- Views: 216086
- Sat May 10, 2014 9:41 am
- Forum: KildClient
- Topic: Dependency on CentOS and a question
- Replies: 5
- Views: 67513
Re: Dependency on CentOS and a question
Actually, this is probably closer to what you want.
If you specify a character in KildClient's 'Connect to' window, the plugin starts writing to that character's logfile immediately. Otherwise, it captures your response to the 'Enter your name' prompt, and uses that character's logfile.
package ...
If you specify a character in KildClient's 'Connect to' window, the plugin starts writing to that character's logfile immediately. Otherwise, it captures your response to the 'Enter your name' prompt, and uses that character's logfile.
package ...
- Sat May 10, 2014 8:13 am
- Forum: KildClient
- Topic: Dependency on CentOS and a question
- Replies: 5
- Views: 67513
Re: Dependency on CentOS and a question
Are there any options available?
Your best option is to hope that someone will write a KildClient plugin for you: a plugin that will detect the character's name, and write everything to a logfile named after the character (including the text received before you type the character's name).
...No ...
Your best option is to hope that someone will write a KildClient plugin for you: a plugin that will detect the character's name, and write everything to a logfile named after the character (including the text received before you type the character's name).
...No ...
- Fri May 09, 2014 8:41 am
- Forum: KildClient
- Topic: Automation tab dissapear.
- Replies: 2
- Views: 43409
Re: Automation tab dissapear.
Hi klerindias,
In case it's not clear, you are using the wrong window. In the KildClient menu, click on 'World > Edit', not 'Preferences > Edit default world'.
By the way, did you know that you can load plugins using KildClient commands? For example:
/$world->loadplugin('keypad')
/$world ...
In case it's not clear, you are using the wrong window. In the KildClient menu, click on 'World > Edit', not 'Preferences > Edit default world'.
By the way, did you know that you can load plugins using KildClient commands? For example:
/$world->loadplugin('keypad')
/$world ...
- Sat May 03, 2014 4:38 pm
- Forum: KildClient
- Topic: JMud plugin
- Replies: 9
- Views: 216086
Re: JMud plugin
The post above seems to have been generated by a robot; it's an exact copy of this post from 2008:
http://forum.qip.ru/showthread.php?t=25721
http://forum.qip.ru/showthread.php?t=25721
- Wed Mar 12, 2014 1:23 pm
- Forum: KildClient
- Topic: Menu Items Greyed out in Ubuntu
- Replies: 2
- Views: 36917
Re: Menu Items Greyed out in Ubuntu
Shane,
Are you sure that your MUD is using real ANSI colours?
I've noticed a number of MUDs using slightly different ways of sending text colours; as a result, the text in the client window gets some of the colours right, but others wrong. This can lead to the illusion of a client apparently ...
Are you sure that your MUD is using real ANSI colours?
I've noticed a number of MUDs using slightly different ways of sending text colours; as a result, the text in the client window gets some of the colours right, but others wrong. This can lead to the illusion of a client apparently ...
- Tue Dec 24, 2013 10:26 am
- Forum: KildClient
- Topic: screenreader / TTS linkage?
- Replies: 1
- Views: 24220
Re: screenreader / TTS linkage?
I wrote you a quick plugin. You should remove the hook you created, and add this plugin instead.
Let me know if it works, or not.
package speaker;
#: Version: 1
#: Description: Pipes received text to the system clipboard
#: Author: A S Lewis
use strict;
use diagnostics;
use warnings;
BEGIN ...
Let me know if it works, or not.
package speaker;
#: Version: 1
#: Description: Pipes received text to the system clipboard
#: Author: A S Lewis
use strict;
use diagnostics;
use warnings;
BEGIN ...
- Thu Jun 13, 2013 8:46 am
- Forum: KildClient
- Topic: Kildclient not working after perl update
- Replies: 2
- Views: 32137
Re: Kildclient not working after perl update
First question is, have you noticed any other Perl-relate problems on your systems? Updating the system Perl on a Linux system is usually a recipe for disaster.
- Tue Apr 23, 2013 3:41 pm
- Forum: KildClient
- Topic: Gotcha: Segmentation Fault in Trigger callback
- Replies: 1
- Views: 26379
Re: Gotcha: Segmentation Fault in Trigger callback
If you really want to delete the timer, you could add it to a global list:
# Create a global variable
our @DeleteTimerList;
# Create a KildClient timer
$::world->timer(
{
name => $timerName,
interval => $timerInterval,
action => $timerAction,
}
);
# When you want to delete the timer, add ...
# Create a global variable
our @DeleteTimerList;
# Create a KildClient timer
$::world->timer(
{
name => $timerName,
interval => $timerInterval,
action => $timerAction,
}
);
# When you want to delete the timer, add ...
- Tue Apr 23, 2013 3:26 pm
- Forum: KildClient
- Topic: Howto syntax check perl
- Replies: 1
- Views: 27039
Re: Howto syntax check perl
Try this:
perl -cw test.pl
...which produces the output:
Name "main::world" used only once: possible typo at test.pl line 16 (#1)
(W once) Typographical errors often show up as unique variable names.
If you had a good reason for having a unique name, then just mention it
again somehow to ...
perl -cw test.pl
...which produces the output:
Name "main::world" used only once: possible typo at test.pl line 16 (#1)
(W once) Typographical errors often show up as unique variable names.
If you had a good reason for having a unique name, then just mention it
again somehow to ...