-
Notifications
You must be signed in to change notification settings - Fork 11
/
DanskConvLib.aslx
75 lines (52 loc) · 5.11 KB
/
DanskConvLib.aslx
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0"?>
<library>
<!--
This library contains Danish translations of both verbs and default responses.
It should be included in the top level game file AFTER the ConvLib file.
Like this:
<include ref="English.aslx" />
<include ref="Dansk.aslx" />
<include ref="Core.aslx" />
<include ref="ConvLib.aslx" />
<include ref="DanskConvLib.aslx" />
If you are viewing this on GitHub and want to download it, right click on the RAW button
just above, and select "Save link as..."
-->
<!--
ConvLib v3.1
Quest version: 5.7
Written by: The Pixie, 2013-2018
Tutorial and notes here:
https://github.com/ThePix/quest/wiki/Conversations:-Library
If you use this with Quest versions of 5.5 and 5.6, it should still work fine, just be careful
not to have ant apostophes or quotes in the topic aliases.
Version 3.1 adds exclusive topics, so you can easily have tpics hidden when another is shown.
Reactions:
Each reaction consists of:
A line with just a @
The name of the reaction
The condition, in standard Quest code, evaulating to true or false
This will accept "this", but will get confused if that string in there in another context
Any number of additional lines with these rules
If a line starts with ~, the rest should be the name of another reaction; this will be deleted along with this one
=/+/-
# Ignored as a comment
Anything else will be output as test
Set game.showreactions to true to see the reactions box in the editor.
-->
<dynamictemplate name="NoSpeakTopics">"Gad vide, hvad du kan tale med " + GetDisplayName(object) + " om..."</dynamictemplate>
<dynamictemplate name="NoConsultTopics">"Gad vide, hvad man kan søge efter i " + GetDisplayName(object) + "."</dynamictemplate>
<dynamictemplate name="TalkAbout">"Tal med " + GetDisplayName(object) + " om..."</dynamictemplate>
<dynamictemplate name="ConsultAbout">"Slå et emne op."</dynamictemplate>
<dynamictemplate name="ConsultableSwitchedOff">CapFirst(object.gender) + " er ikke tændt."</dynamictemplate>
<!-- OVER-RIDABLE FUNCTIONS -->
<!--
Can be overriden if necessary. You can use this as a way to add extra topics, for example if you want all your
characters to have some standard topics, add them this way.
-->
<verb name="consultverb">
<property>consult</property>
<pattern>Søg i</pattern>
<defaultexpression>"Du kan ikke søge i " + object.article + "."</defaultexpression>
</verb>
</library>