summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorMichieru <Michieru@users.noreply.github.com>2014-03-16 16:34:48 +0100
committerMichieru <Michieru@users.noreply.github.com>2014-03-16 16:34:48 +0100
commit48d29089a06bb207276ef53754e6a0d217cfcc77 (patch)
tree0cd0100bf73cf8a9cd4e29de780425267e0a014f /src/map/status.c
parent235ec5df3f3b19843523109228d86196f71c9798 (diff)
downloadhercules-48d29089a06bb207276ef53754e6a0d217cfcc77.tar.gz
hercules-48d29089a06bb207276ef53754e6a0d217cfcc77.tar.bz2
hercules-48d29089a06bb207276ef53754e6a0d217cfcc77.tar.xz
hercules-48d29089a06bb207276ef53754e6a0d217cfcc77.zip
Fix Bug 8041
http://hercules.ws/board/tracker/issue-8041-sura-cresent-elbow/ Special Thanks to Ind Fix Bug 6826 http://hercules.ws/board/tracker/issue-6826-crescent-elbow/?gopid=15188#entry15188 Fix Bug 8075 http://hercules.ws/board/tracker/issue-8075-lightning-walk/
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 46f6d265d..c989b46b2 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -8736,6 +8736,9 @@ int status_change_start(struct block_list *src, struct block_list *bl, enum sc_t
tick_time = 5000; // [GodLesZ] tick time
status->change_clear_buffs(bl,3); //Remove buffs/debuffs
break;
+ case SC_CRESCENTELBOW:
+ val2 = (sd ? sd->status.job_level : 2) / 2 + 50 + 5 * val1;
+ break;
case SC_LIGHTNINGWALK: // [(Job Level / 2) + (40 + 5 * Skill Level)] %
val1 = (sd?sd->status.job_level:2)/2 + 40 + 5 * val1;
break;