summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
authorRidley <ridley8819@gmail.com>2020-01-08 01:21:21 +0100
committerRidley <ridley8819@gmail.com>2020-01-09 01:00:55 +0100
commite6199edca8ad4eee32b7e34318f99f365d8520db (patch)
tree7b1a6e123e80bc667530b7abaac28812035b41a0 /src/map/script.h
parentbf99547843038bc15dc1948748d969950e866465 (diff)
downloadhercules-e6199edca8ad4eee32b7e34318f99f365d8520db.tar.gz
hercules-e6199edca8ad4eee32b7e34318f99f365d8520db.tar.bz2
hercules-e6199edca8ad4eee32b7e34318f99f365d8520db.tar.xz
hercules-e6199edca8ad4eee32b7e34318f99f365d8520db.zip
Adding PCBLOCK_NPC to setpcblock script command
Diffstat (limited to 'src/map/script.h')
-rw-r--r--src/map/script.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/map/script.h b/src/map/script.h
index 1cec02b97..7bcb5298c 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -529,16 +529,17 @@ enum script_petinfo_types {
* Player blocking actions related flags.
*/
enum pcblock_action_flag {
- PCBLOCK_NONE = 0x00,
- PCBLOCK_MOVE = 0x01,
- PCBLOCK_ATTACK = 0x02,
- PCBLOCK_SKILL = 0x04,
- PCBLOCK_USEITEM = 0x08,
- PCBLOCK_CHAT = 0x10,
- PCBLOCK_IMMUNE = 0x20,
- PCBLOCK_SITSTAND = 0x40,
- PCBLOCK_COMMANDS = 0x80,
- PCBLOCK_ALL = 0xFF,
+ PCBLOCK_NONE = 0x000,
+ PCBLOCK_MOVE = 0x001,
+ PCBLOCK_ATTACK = 0x002,
+ PCBLOCK_SKILL = 0x004,
+ PCBLOCK_USEITEM = 0x008,
+ PCBLOCK_CHAT = 0x010,
+ PCBLOCK_IMMUNE = 0x020,
+ PCBLOCK_SITSTAND = 0x040,
+ PCBLOCK_COMMANDS = 0x080,
+ PCBLOCK_NPC = 0x100,
+ PCBLOCK_ALL = 0x1FF,
};
/**