File: default.kvs

package info (click to toggle)
kvirc 4%3A5.2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,136 kB
  • sloc: cpp: 232,431; perl: 2,106; pascal: 1,005; sh: 836; ansic: 244; makefile: 58; python: 54; xml: 19
file content (39 lines) | stat: -rw-r--r-- 1,237 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#################################################################################################
#
# This is the default script for KVIrc
# Feel free to use it as base for writing your own scripts
# It is a good starting point; I have tried to add as many comments as possible.
#
# Have fun :)
#   Szymon Stefanek
#
#################################################################################################

%mypath = "$file.extractpath($0)$file.ps"

# Fetch default scripts data
include "actions.kvs" %mypath
include "aliases.kvs" %mypath
include "events.kvs" %mypath
include "popups.kvs" %mypath
include "toolbars.kvs" %mypath
include "classes.kvs" %mypath

#
# Set the default spam words...(for the anti-spam) detector
#

# FIXME: these should be MERGED!!!!

#%tmp = $option(stringlistSpamWords)
#%tmp[] = $array() ???

option stringlistSpamWords "http:","#","www.","auto","query","ftp:","sex","free","msg","chat","dynamirc","script"

options.save

echo $tr("The default script has been successfully installed.","defscript")
echo $tr("To connect to a server, type /server <server name>","defscript")
echo "---"
echo $tr("Happy ircing :)","defscript")
echo "- Szymon Stefanek $tr("and the KVIrc Development Team","defscript")"