Changeset 1017 for Daodan/src/Daodan_Config.c
- Timestamp:
- Mar 24, 2015, 12:29:19 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Daodan/src/Daodan_Config.c
r1008 r1017 3 3 #include <time.h> 4 4 5 #include "Daodan.h" 5 6 #include "Daodan_Config.h" 6 7 #include "Daodan_Patch.h" … … 11 12 12 13 #include "Inifile_Reader.h" 13 14 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))15 14 16 15 static const char* iniName = "daodan.ini"; … … 48 47 } }, 49 48 { "gameplay", "Gameplay", { 49 { "bindablecheats", 50 "Allows cheats to be bound to keys. Requires 'customactions' and 'cheattable' to be true.", 51 C_BOOL, 52 {.intBoolVal = true}, 53 {.intBoolVal = true} }, 50 54 { "characterawareness", 51 55 "Makes AI remember the player.", … … 65 69 { "cooldowntimer", 66 70 "Disables weapon cooldown exploit.", 71 C_BOOL, 72 {.intBoolVal = true}, 73 {.intBoolVal = true} }, 74 { "customactions", 75 "Allows more actions to be bound through Daodan.", 67 76 C_BOOL, 68 77 {.intBoolVal = true},
Note:
See TracChangeset
for help on using the changeset viewer.