You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
15 years ago
|
#################################################################################################
|
||
|
#
|
||
|
# 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 "aliases.kvs" %mypath
|
||
|
include "events.kvs" %mypath
|
||
|
include "popups.kvs" %mypath
|
||
|
include "toolbars.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.")
|
||
|
echo $tr("To connect to a server, type /server <server name>")
|
||
|
echo "---"
|
||
|
echo $tr("Happy ircing :)")
|
||
|
echo "- Szymon Stefanek $tr("and the KVIrc Development Team")"
|