diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-19 20:31:57 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-19 20:31:57 +0000 |
commit | 9a83b5ad626f8bfd4011277173e8bf385e4971fe (patch) | |
tree | fac179a5bb93199cf5f0314ff21e935d7da47b72 /src/map/pc.h | |
parent | ca003ef941f7a039a4251f28d0a60b61de66f186 (diff) | |
download | hercules-9a83b5ad626f8bfd4011277173e8bf385e4971fe.tar.gz hercules-9a83b5ad626f8bfd4011277173e8bf385e4971fe.tar.bz2 hercules-9a83b5ad626f8bfd4011277173e8bf385e4971fe.tar.xz hercules-9a83b5ad626f8bfd4011277173e8bf385e4971fe.zip |
- Added bonusautoscript and bonusautoscript2. These are used to attach a script to a player which gets executed on attack (or when attacked). Required for several of the more recent items.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11519 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 0d3b4d8d4..442c9e188 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -167,6 +167,9 @@ int pc_dropitem(struct map_session_data*,int,int); int pc_updateweightstatus(struct map_session_data *sd); +int pc_autoscript_add(struct s_autoscript *scripts, int max, short rate, short flag, struct script_code *script); +void pc_autoscript_clear(struct s_autoscript *scripts, int max); + int pc_bonus(struct map_session_data*,int,int); int pc_bonus2(struct map_session_data *sd,int,int,int); int pc_bonus3(struct map_session_data *sd,int,int,int,int); |