summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf')
-rw-r--r--conf/inter-server.conf3
-rw-r--r--conf/messages.conf3
-rw-r--r--conf/plugins.conf28
3 files changed, 31 insertions, 3 deletions
diff --git a/conf/inter-server.conf b/conf/inter-server.conf
index bf8d9e7a3..0e9808077 100644
--- a/conf/inter-server.conf
+++ b/conf/inter-server.conf
@@ -74,6 +74,9 @@ mysql_reconnect_count:1
// ALL MySQL Database Table names
+//Shared
+interreg_db: interreg
+
// Char Database Tables
char_db: char
hotkey_db: hotkey
diff --git a/conf/messages.conf b/conf/messages.conf
index e2886a57d..5bff9a5af 100644
--- a/conf/messages.conf
+++ b/conf/messages.conf
@@ -1505,5 +1505,8 @@
//src/map/pc.c::pc_isUseitem
1474: You cannot use this item while sitting
+//src/map/clif.c::clif_parse_NpcClicked
+1476: You cannot interact with NPCs while casting skills
+
//Custom translations
import: conf/import/msg_conf.txt
diff --git a/conf/plugins.conf b/conf/plugins.conf
index 5233c4ed4..7c4674edf 100644
--- a/conf/plugins.conf
+++ b/conf/plugins.conf
@@ -8,8 +8,30 @@
//=
//= http://hercules.ws/board/
//====================================================
-// == http://hercules.ws/board/topic/549-introducing-hercules-plugin-manager/
+//== Topic Discussion ================================
+//== http://hercules.ws/board/topic/549-introducing-hercules-plugin-manager/
+//====================================================
+//== Description =====================================
+//The plugin system allows you to create customized scripts
+//outside of the source. These scripts won't conflict with any
+//future source updates - think about it as a /conf/import/ version of the source.
+//====================================================
+
+/* --------------- Format ---------------
+After you have listed your plugin(s) in "quotations",
+you need to put in a comma, to separate the plugins.
+-----------------------------------------
+plugins_list: [
+ "example",
+ "other"
+]
+-----------------------------------------
+Please note that your scripts need to be saved
+in the .c (source code) extension and placed in the /src/plugin/ folder.
+-----------------------------------------
+*/
+
plugins_list:[
- //"sample"
+ //"sample",
//"other"
-] \ No newline at end of file
+]