diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-22 18:30:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-22 18:30:22 -0300 |
commit | 83d2b4b0ab6c731c34a5bc6de217c3346b87b1fb (patch) | |
tree | 8c6333dc3c7a527ed98370a0639f8bbb59e5ff0f | |
parent | ee68c6a10e0e828a7470e67133e65851272b162d (diff) | |
download | serverdata-83d2b4b0ab6c731c34a5bc6de217c3346b87b1fb.tar.gz serverdata-83d2b4b0ab6c731c34a5bc6de217c3346b87b1fb.tar.bz2 serverdata-83d2b4b0ab6c731c34a5bc6de217c3346b87b1fb.tar.xz serverdata-83d2b4b0ab6c731c34a5bc6de217c3346b87b1fb.zip |
Common Mount unequip Legendary Mount (needed bugfix).
Legendary Mounts unequip shields and common mounts, though...
-rw-r--r-- | db/re/item_db.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 74eb11117..1efddfd44 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -3317,6 +3317,8 @@ item_db: ( bonus bBaseAtk,-700; "> OnEquipScript: <" + // Common Mount: Force unequip Legendary Mount + unequip(EQI_SHADOW_SHOES); setmount 1; "> OnUnequipScript: <" @@ -3355,6 +3357,8 @@ item_db: ( bonus bBaseAtk,-700; "> OnEquipScript: <" + // Common Mount: Force unequip Legendary Mount + unequip(EQI_SHADOW_SHOES); setmount 2; "> OnUnequipScript: <" @@ -3397,6 +3401,8 @@ item_db: ( */ "> OnEquipScript: <" + // Legendary Mount: Force unequip Common Mount (well... Backfires) + unequip(EQI_HAND_L); setmount 1; "> OnUnequipScript: <" @@ -3439,6 +3445,8 @@ item_db: ( */ "> OnEquipScript: <" + // Legendary Mount: Force unequip Common Mount (well... Backfires) + unequip(EQI_HAND_L); setmount 2; "> OnUnequipScript: <" |