summaryrefslogtreecommitdiff
path: root/src/map/battle.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-10-24 06:45:48 -0200
committershennetsind <ind@henn.et>2013-10-24 07:03:30 -0200
commite08c05a0f73d6e6ea4fe64a9b91291bc0a002251 (patch)
treeefe8ae89989a63c008db2cf244c9ea1eb93b3711 /src/map/battle.h
parent8b07c677e351056b0d23fbc3726f80829ae4d253 (diff)
downloadhercules-e08c05a0f73d6e6ea4fe64a9b91291bc0a002251.tar.gz
hercules-e08c05a0f73d6e6ea4fe64a9b91291bc0a002251.tar.bz2
hercules-e08c05a0f73d6e6ea4fe64a9b91291bc0a002251.tar.xz
hercules-e08c05a0f73d6e6ea4fe64a9b91291bc0a002251.zip
Added idletime options
There have been requests for the extension of the feature, I was reluctant given more options would cause features relying on the feature to be easier to counter (less accurate), with the modification of the feature to employ options the feature is now configurable at the server owners discretion. Special Thanks to Haruna Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/battle.h')
-rw-r--r--src/map/battle.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/map/battle.h b/src/map/battle.h
index 1aa07b2be..a2212a647 100644
--- a/src/map/battle.h
+++ b/src/map/battle.h
@@ -454,7 +454,7 @@ struct Battle_Config {
int max_walk_path;
int item_enabled_npc;
int packet_obfuscation;
-
+ int idletime_criteria;
int gm_ignore_warpable_area;
int client_accept_chatdori; // [Ai4rei/Mirei]
@@ -467,6 +467,20 @@ struct Battle_Config {
int mon_trans_disable_in_gvg;
} battle_config;
+/* criteria for battle_config.idletime_critera */
+enum e_battle_config_idletime {
+ BCIDLE_WALK = 0x001,
+ BCIDLE_USESKILLTOID = 0x002,
+ BCIDLE_USESKILLTOPOS = 0x004,
+ BCIDLE_USEITEM = 0x008,
+ BCIDLE_ATTACK = 0x010,
+ BCIDLE_CHAT = 0x020,
+ BCIDLE_SIT = 0x040,
+ BCIDLE_EMOTION = 0x080,
+ BCIDLE_DROPITEM = 0x100,
+ BCIDLE_ATCOMMAND = 0x200,
+};
+
// Dammage delayed info
struct delay_damage {
int src_id;