summaryrefslogtreecommitdiff
path: root/src/map/atcommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/atcommand.h')
-rw-r--r--src/map/atcommand.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/map/atcommand.h b/src/map/atcommand.h
index aaf477a97..9bc844664 100644
--- a/src/map/atcommand.h
+++ b/src/map/atcommand.h
@@ -34,4 +34,17 @@ const char* msg_txt(int msg_number);
int msg_config_read(const char* cfgName);
void do_final_msg(void);
+#define MAX_ATCMD_BINDINGS 100
+
+// @commands (script based)
+typedef struct Atcmd_Binding {
+ char command[50];
+ char npc_event[50];
+ int level;
+ int level2;
+} Atcmd_Binding;
+
+struct Atcmd_Binding atcmd_binding[MAX_ATCMD_BINDINGS];
+struct Atcmd_Binding* get_atcommandbind_byname(const char* name);
+
#endif /* _ATCOMMAND_H_ */