Jump to content

Recommended Posts

  • Replies 13
  • Created
  • Last Reply

Top Posters In This Topic

You must add path to msm file. This pet has other path (npc_pet). Just replace this statement in RaceManager.cpp in gamelib. Like on Official.

Spoiler

function __GetRaceResourcePathes

else if (__IsNPCRace(race))
    {
        if (race >= 34028 && race <= 34057)
        {
            vec_stPathes.push_back("d:/ymir work/npc_pet/");
            vec_stPathes.push_back("d:/ymir work/npc2/");
            vec_stPathes.push_back("d:/ymir work/npc/");
            vec_stPathes.push_back("d:/ymir work/monster/");
            vec_stPathes.push_back("d:/ymir work/monster2/");
            vec_stPathes.push_back("d:/ymir work/guild/");
        }
        else if (race >= 30000)
        {
            vec_stPathes.push_back("d:/ymir work/npc2/");
            vec_stPathes.push_back("d:/ymir work/npc/");
            vec_stPathes.push_back("d:/ymir work/monster/");
            vec_stPathes.push_back("d:/ymir work/monster2/");
            vec_stPathes.push_back("d:/ymir work/guild/");
        }
        else if (race >= 20233 && race < 20300)
        {
            vec_stPathes.push_back("d:/ymir work/npc_mount/");
            vec_stPathes.push_back("d:/ymir work/npc/");
            vec_stPathes.push_back("d:/ymir work/npc2/");
            vec_stPathes.push_back("d:/ymir work/monster/");
            vec_stPathes.push_back("d:/ymir work/monster2/");
            vec_stPathes.push_back("d:/ymir work/guild/");
        }
        else
        {
            vec_stPathes.push_back("d:/ymir work/npc/");
            vec_stPathes.push_back("d:/ymir work/npc2/");
            vec_stPathes.push_back("d:/ymir work/npc_mount/");
            vec_stPathes.push_back("d:/ymir work/monster/");
            vec_stPathes.push_back("d:/ymir work/monster2/");
            vec_stPathes.push_back("d:/ymir work/guild/");
        }
    }

 

Link to comment
Share on other sites

like this 

         if ((race >= 34028 && race <= 34057) || race == 55704)
        {
            vec_stPathes.push_back("d:/ymir work/npc_pet/");
            vec_stPathes.push_back("d:/ymir work/npc2/");
            vec_stPathes.push_back("d:/ymir work/npc/");
            vec_stPathes.push_back("d:/ymir work/monster/");
            vec_stPathes.push_back("d:/ymir work/monster2/");
            vec_stPathes.push_back("d:/ymir work/guild/");
        }

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.