diff options
author | Kisuka <kisuka@kisuka.com> | 2013-10-24 07:03:46 -0700 |
---|---|---|
committer | Kisuka <kisuka@kisuka.com> | 2013-10-24 07:03:46 -0700 |
commit | 94b7b25456aa8a9de1e0f2a147d58dba6e5976dd (patch) | |
tree | 09d5b126dfe1e5ddf801fe6481f7a7b10a320cee /src/map/npc.h | |
parent | 835d55b07858202198564bc6c2ff0888a7f78d31 (diff) | |
download | hercules-94b7b25456aa8a9de1e0f2a147d58dba6e5976dd.tar.gz hercules-94b7b25456aa8a9de1e0f2a147d58dba6e5976dd.tar.bz2 hercules-94b7b25456aa8a9de1e0f2a147d58dba6e5976dd.tar.xz hercules-94b7b25456aa8a9de1e0f2a147d58dba6e5976dd.zip |
Quest Bubbles (Actually Works Finally)
Diffstat (limited to 'src/map/npc.h')
-rw-r--r-- | src/map/npc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/npc.h b/src/map/npc.h index f809cb19c..c9184b22d 100644 --- a/src/map/npc.h +++ b/src/map/npc.h @@ -48,6 +48,12 @@ struct npc_data { char* path;/* path dir */ enum npc_subtype subtype; int src_id; + struct { + int icon; + int quest_id; + bool hasJob; + int job; + } quest; union { struct { struct script_code *script; |