diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-08 15:33:16 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-08 15:33:16 -0300 |
commit | c6fc82ae37814f6e1930433ade63af307c30ed3a (patch) | |
tree | 928eeab5975698cd6425fe85e95b58994a5e15a5 | |
parent | 12074d6e1b28f72b9132762a79366e75092237ec (diff) | |
download | serverdata-c6fc82ae37814f6e1930433ade63af307c30ed3a.tar.gz serverdata-c6fc82ae37814f6e1930433ade63af307c30ed3a.tar.bz2 serverdata-c6fc82ae37814f6e1930433ade63af307c30ed3a.tar.xz serverdata-c6fc82ae37814f6e1930433ade63af307c30ed3a.zip |
Lower amount of scales required for DRAGOKIN from 5 to 4
-rw-r--r-- | npc/magic/dragokin.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/magic/dragokin.txt b/npc/magic/dragokin.txt index 531babc4f..2a8cb89b0 100644 --- a/npc/magic/dragokin.txt +++ b/npc/magic/dragokin.txt @@ -12,8 +12,8 @@ OnCall: // Other requeriments: 5x Dragon Scale or Demure Axe - if (!(countitem(DragonScales) >= 5 || countitem(DemureAxe))) { - dispbottom l("You need 5x @@ to cast this skill.", getitemlink(DragonScales)); + if (!(countitem(DragonScales) >= 4 || countitem(DemureAxe))) { + dispbottom l("You need 4x @@ to cast this skill.", getitemlink(DragonScales)); end; } @@ -35,7 +35,7 @@ OnCall: // Destroy reagents if (!countitem(DemureAxe)) - delitem DragonScale, 5; + delitem DragonScale, 4; // set cooldown @dragokin_at=gettimetick(2); |