From e21acb53252f40e4a12345c53c87cbdc28ce6cba Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 14 Apr 2004 19:22:14 +0000 Subject: [PATCH] Updated. --- docs/FAQ | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/FAQ b/docs/FAQ index d303889ce..843ef2cc1 100644 --- a/docs/FAQ +++ b/docs/FAQ @@ -150,3 +150,20 @@ A: Karma by default doesn't acknowledge karma updates. If you check your increment or decrement still took place. If you'd rather Karma acknowledge karma updates, change the supybot.plugins.Karma.response configuration variable to On. + +Q: I added an alias, but it doesn't work! + +A: Take a look at "help ". If the alias the bot has + listed doesn't match what you're giving it, chances are you need + to quote your alias in order for the brackets not to be + evaluated. For instance, if you're adding an alias to give you a + link to your homepage, you need to say: + + alias add mylink "strconcat http://my.host.com/ [urlquote $1]" + + and not: + + alias add mylink strconcat http://my.host.com/ [urlquote $1] + + The first version works; the second version will always return the + same url.