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!

kenta's advice

Newbie Spellweaver
Joined
Feb 4, 2021
Messages
7
Reaction score
0
how to fix kenta's advice quest?
it doesnt increase my pet's speed....
any source to fix it?
 
RaGEZONE VIP
[VIP] Member
Joined
Aug 3, 2008
Messages
173
Reaction score
26
Go to PetSpeedAction.java

Replace the function with this
Code:
public void run(MapleCharacter chr, Integer extSelection)
    {
        MapleClient c = chr.getClient();

        MaplePet pet0 = chr.getPet(0);   // only pet leader gets speed? - zain
        MaplePet pet1 = chr.getPet(1);  // try the other pets
        MaplePet pet2 = chr.getPet(2);
        if (pet0 != null) pet0.addPetFlag(c.getPlayer(), MaplePet.PetFlag.OWNER_SPEED);
        if (pet1 != null) pet1.addPetFlag(c.getPlayer(), MaplePet.PetFlag.OWNER_SPEED);
        if (pet2 != null) pet2.addPetFlag(c.getPlayer(), MaplePet.PetFlag.OWNER_SPEED);
        chr.fakeRelog();

    }
 
Upvote 0
Back
Top