Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Add - On] Skill No Cool down GMS 116 + (For every players)

Newbie Spellweaver
Joined
Mar 12, 2008
Messages
30
Reaction score
2
Re Edit!!
Sorry for First code
:blushing:,But this code is very sure!!

I think it very easily for every people.
First step Go to find reduceCooltime in Playerstat.java
PHP:
reduceCooltime = 0;
If have another number. You must change to 0 same up stair
Next Step You must go to find Code below this text in MaplestatEffect.java
PHP:
 public final int getCooldown(final MapleCharacter chra) {
        if (chra.getStat().coolTimeR > 0) {
            return Math.max(0, ((info.get(MapleStatInfo.cooltime) * (100 - (chra.getStat().coolTimeR / 100))) - chra.getStat().reduceCooltime));
        }
        return Math.max(0, (info.get(MapleStatInfo.cooltime) - chra.getStat().reduceCooltime));
    }
And replace this code
PHP:
 public final int getCooldown(final MapleCharacter chra) {
        if (chra.getStat().coolTimeR > 0) {
            return Math.max(0, ((info.get(MapleStatInfo.cooltime) * (100 - (chra.getStat().coolTimeR / 100))) * chra.getStat().reduceCooltime));
        }
        return Math.max(0, (info.get(MapleStatInfo.cooltime) * chra.getStat().reduceCooltime));
    }
And compile
It Completed. Have fun!
 
Last edited:
Experienced Elementalist
Joined
Jan 16, 2013
Messages
284
Reaction score
53
I'm sure other people will find this helpful, thanks for the release.
 
Back
Top