• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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
172
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