-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathhideAndSeekConf.lua.dist
62 lines (55 loc) · 2.16 KB
/
hideAndSeekConf.lua.dist
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
--This file is explicitely excluded from the AGPL3 license, which is active for the remaining repository, unless explicetly stated otherwise.
-- Config file for the hide and seek lua
--[[
-----------------------------------------------------------
Declarations, just keep them with {} assigned for each id:
haS.Conf.Hint[n] = {}
haS.Conf.HintDelay[n] = {}
-----------------------------------------------------------
-----------------------------------------------------------
Gameobject to use. The example is a giant vase.
haS.Conf.Entry[n] = 611001
-----------------------------------------------------------
-----------------------------------------------------------
Position of the target gameobject.
haS.Conf.X[1] = 1017
haS.Conf.Y[1] = -4443
haS.Conf.Z[1] = 12
haS.Conf.O[1] = 1
haS.Conf.MapId[1] = 1
haS.Conf.Scale[1] = 1
-----------------------------------------------------------
-----------------------------------------------------------
Texts to display. Can be any amount.
haS.Conf.Hint[1][1] = 'This is the introduction and first hint. Next in 5.'
haS.Conf.HintDelay[1][1] = 5
haS.Conf.Hint[1][2] = 'This is the second hint. Next in 10.'
haS.Conf.HintDelay[1][2] = 10
haS.Conf.Hint[1][3] = 'This is the last hint. End in 20.'
haS.Conf.HintDelay[1][3] = 20
-----------------------------------------------------------
-----------------------------------------------------------
Rewards for the winner. One is mandatory. Both may be given.
CopperReward is the amount of money to send in copper.
100 = 1s 10000 = 1g
haS.Conf.CopperReward[1] = 100
haS.Conf.ItemReward[1] = 10393
-----------------------------------------------------------
]]--
haS.Conf.Hint[1] = {}
haS.Conf.HintDelay[1] = {}
haS.Conf.Entry[1] = 611001
haS.Conf.X[1] = 1017
haS.Conf.Y[1] = -4443
haS.Conf.Z[1] = 12
haS.Conf.O[1] = 1
haS.Conf.MapId[1] = 1
haS.Conf.Scale[1] = 0.5
haS.Conf.Hint[1][1] = 'This is the introduction and first hint. Next in 5.'
haS.Conf.HintDelay[1][1] = 5
haS.Conf.Hint[1][2] = 'This is the second hint. Next in 10.'
haS.Conf.HintDelay[1][2] = 10
haS.Conf.Hint[1][3] = 'This is the last hint. End in 20.'
haS.Conf.HintDelay[1][3] = 20
haS.Conf.CopperReward[1] = 100
haS.Conf.ItemReward[1] = 10393