diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/hub.txt | 5 | ||||
-rw-r--r-- | npc/functions/mobpoint.txt | 11 |
2 files changed, 0 insertions, 16 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 90273b360..71b9a85a7 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -1528,11 +1528,6 @@ function script HUB_PCBonus { bonus bAddMaxWeight, REBIRTH*50; // Max 250g } - // Double hack fix - if (isequipped(ExplosiveArrow)) { - if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) != W_BOW) - bonus bSplashRange, 2; - } return; } diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 0d9f231d2..64609420c 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -96,17 +96,6 @@ OnNPCKillEvent: JobExp-=1; } - // Sanitize some bug... - if (isequipped(ExplosiveArrow)) { - .@wpn = getequipid(EQI_HAND_R); - if (getiteminfo(.@wpn, ITEMINFO_SUBTYPE) != W_BOW) { - unequipbyid(ExplosiveArrow); - if (@hacktol) - end; // Will not count for anything else - @hacktol = true; - } - } - // killedrid was not set, so we skip if (!killedrid) end; |