-
Notifications
You must be signed in to change notification settings - Fork 0
/
Options.dat
42 lines (33 loc) · 1.3 KB
/
Options.dat
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
//Comments:
//Double slashes will comment out everything until the start of next line
/Double slashes with at least one character between then ignore everything
within the slashes/
//Options.dat
//
//Default options for the game can be changed here
//Set up map size, the time limit, and the player and magical potion's starting positions
//Map size
/Horizontal size/ 10
/Vertical size/ 10
//Maximum time (In whole days) that can be taken to complete the game
//Game update interval (In whole days) The number of days between each frame in the game
//(Recommended: 0.25 or a factor of time taken for an action, but 0.01 or greater)
//First encounter reaction time is the additional time before a mob attacks upon encounter
//(Recommended: 0.25 or equal time to use item)
//Time taken for the player to move to an adjacent tile
//Time taken to use an item in an inventory slot
//Time taken to check the surrounding tiles of the player
//Time taken to attempt to run away from a mob/threat
/Max time/ 100
/Game update interval/ 0.25
/First encounter reaction time/ 0.25
/Time taken to move/ 1.00
/Time taken to use inventory/ 0.25
/Time taken to check surroundings/ 3.00
/Time taken to run/ 1.25
//Player starting position
/X coordinate/ 0
/Y coordinate/ 0
//Magical potion starting position
/X coordinate/ 9
/Y coordinate/ 9