diff options
author | Trojal <trojal@gmail.com> | 2013-01-10 20:09:39 -0800 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-01-12 05:56:35 -0200 |
commit | c55855fcf627478f864c0f82a1a2f201fd407a38 (patch) | |
tree | b7f6d11b2058248d026f2d9944e8f4b6ac288d50 /src/map/atcommand.h | |
parent | 51bfeb38eb139e97e0e1c096c85c15fba234f35b (diff) | |
parent | 38e583df21eccd9e4f31d38acaae32579c6f0d27 (diff) | |
download | hercules-c55855fcf627478f864c0f82a1a2f201fd407a38.tar.gz hercules-c55855fcf627478f864c0f82a1a2f201fd407a38.tar.bz2 hercules-c55855fcf627478f864c0f82a1a2f201fd407a38.tar.xz hercules-c55855fcf627478f864c0f82a1a2f201fd407a38.zip |
Test1, testing for the commit widget, need to edit something.
Test2, testing for the commit widget, need to edit something.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/atcommand.h')
-rw-r--r-- | src/map/atcommand.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/map/atcommand.h b/src/map/atcommand.h new file mode 100644 index 000000000..8affa4c26 --- /dev/null +++ b/src/map/atcommand.h @@ -0,0 +1,51 @@ +// Copyright (c) Athena Dev Teams - Licensed under GNU GPL +// For more information, see LICENCE in the main folder + +#ifndef _ATCOMMAND_H_ +#define _ATCOMMAND_H_ + +struct map_session_data; + +//This is the distance at which @autoloot works, +//if the item drops farther from the player than this, +//it will not be autolooted. [Skotlex] +//Note: The range is unlimited unless this define is set. +//#define AUTOLOOT_DISTANCE AREA_SIZE + +extern char atcommand_symbol; +extern char charcommand_symbol; + +typedef enum { + COMMAND_ATCOMMAND = 1, + COMMAND_CHARCOMMAND = 2, +} AtCommandType; + +typedef int (*AtCommandFunc)(const int fd, struct map_session_data* sd, const char* command, const char* message); + +bool is_atcommand(const int fd, struct map_session_data* sd, const char* message, int type); + +void do_init_atcommand(void); +void do_final_atcommand(void); +void atcommand_db_load_groups(int* group_ids); + +bool atcommand_exists(const char* name); + +const char* msg_txt(int msg_number); +int msg_config_read(const char* cfgName); +void do_final_msg(void); + +extern int atcmd_binding_count; + +// @commands (script based) +struct atcmd_binding_data { + char command[50]; + char npc_event[50]; + int level; + int level2; +}; + +struct atcmd_binding_data** atcmd_binding; + +struct atcmd_binding_data* get_atcommandbind_byname(const char* name); + +#endif /* _ATCOMMAND_H_ */ |