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!

[Client] Use Auto Set Button for allocate the unused Stat Points.

Joined
Jul 24, 2011
Messages
806
Reaction score
615
Problem:

When you have too much Stat Points to allocate than you need use Auto clicker or Website to add the points. With a minor client modification you can fix this.

Solution:

cabal .enc -> mastery_level up requirments change. If your version have CR20 only than you need use this. You can customize with your values. If your version have CR21 than level="21".

Code:
        <mastery_levelup    level="20"    >
            <condition    str="499300"    dex="500"    int="200"    class="2hand"    skill1idx=""    skill1slotidx=""    skill2idx=""    skill2slotidx=""    />
            <condition    str="249900"    dex="249900"    int="200"    class="dual"    skill1idx=""    skill1slotidx=""    skill2idx=""    skill2slotidx=""    />
            <condition    str="200"    dex="500"    int="499300"    class="magic"    skill1idx=""    skill1slotidx=""    skill2idx=""    skill2slotidx=""    />
            <condition    str="300"    dex="500"    int="499200"    class="magic_arrow"    skill1idx=""    skill1slotidx=""    skill2idx=""    skill2slotidx=""    />
            <condition    str="499200"    dex="500"    int="300"    class="sword_shield"    skill1idx=""    skill1slotidx=""    skill2idx=""    skill2slotidx=""    />
            <condition    str="500"    dex="499200"    int="300"    class="magic_sword"    skill1idx=""    skill1slotidx=""    skill2idx=""    skill2slotidx=""    />
        </mastery_levelup>
 
Back
Top