diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-01-05 09:31:09 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-01-05 09:31:09 +0000 |
commit | 00c27a50bd63163a0de9cf4f7aefd3b60e8aa5d0 (patch) | |
tree | 5d60988f58a7dd4dd8d1c8eb57b6651484538088 /src/map/map.h | |
parent | e80324069deac5943aa9d7685b32198407c424bc (diff) | |
download | hercules-00c27a50bd63163a0de9cf4f7aefd3b60e8aa5d0.tar.gz hercules-00c27a50bd63163a0de9cf4f7aefd3b60e8aa5d0.tar.bz2 hercules-00c27a50bd63163a0de9cf4f7aefd3b60e8aa5d0.tar.xz hercules-00c27a50bd63163a0de9cf4f7aefd3b60e8aa5d0.zip |
Added a simplified version of Qamera's OnConnect: OnDisconnect: OnDeath: NPC events mod
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@914 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index 7f3fa5d71..289e8338b 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -143,6 +143,11 @@ struct map_session_data { int glorywounds_flag; int soulcold_flag; int hawkeyes_flag; + // originally by Qamera, adapted by celest + unsigned event_death : 1; + unsigned event_kill : 1; + unsigned event_disconnect : 1; + unsigned event_onconnect : 1; } state; struct { unsigned killer : 1; |