summaryrefslogtreecommitdiff
path: root/src/map/config/secure.h
diff options
context:
space:
mode:
authorepoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-09 23:21:18 +0000
committerepoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-09 23:21:18 +0000
commit7d50f79a9c5c5de524b4e532d3ce1b2fd0745857 (patch)
treeb7eb5c8d352702638cd7820cde8ee5d508bc4096 /src/map/config/secure.h
parent059ae946435c89351b95d9a647e7cc37541ba5e2 (diff)
downloadhercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.tar.gz
hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.tar.bz2
hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.tar.xz
hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.zip
- Follow-up to r15837, fixed compiler error due to missing header file
- Cleaned upper-case file naming which goes against coding standards git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15838 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/config/secure.h')
-rw-r--r--src/map/config/secure.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/map/config/secure.h b/src/map/config/secure.h
new file mode 100644
index 000000000..e2b000440
--- /dev/null
+++ b/src/map/config/secure.h
@@ -0,0 +1,33 @@
+// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
+// For more information, see LICENCE in the main folder
+#ifndef _CONFIG_SECURE_H_
+#define _CONFIG_SECURE_H_
+
+/**
+ * rAthena configuration file (http://rathena.org)
+ * For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/
+ **/
+
+/**
+ * @INFO: This file holds optional security settings
+ **/
+
+/**
+ * Optional NPC Dialog Timer
+ * When enabled all npcs dialog will 'timeout' if user is on idle for longer than the amount of seconds allowed
+ * - On 'timeout' the npc dialog window changes it's next/menu to a 'close' button
+ * @values
+ * - ? : Desired idle time in seconds (e.g. 10)
+ * - 0 : Disabled
+ **/
+#define SECURE_NPCTIMEOUT 0
+
+/**
+ * (Secure) Optional NPC Dialog Timer
+ * @requirement : SECURE_NPCTIMEOUT must be enabled
+ * Minimum Interval Between timeout checks in seconds
+ * Default: 1s
+ **/
+#define SECURE_NPCTIMEOUT_INTERVAL 1
+
+#endif // _CONFIG_SECURE_H_