Jump to content

Recommended Posts

in /usr/game/share/data/pc3/wolfman/horse open run.msa replace to:

Spoiler

ScriptType               MotionData

MotionFileName           "D:/Ymir Work/pc3/wolfman/horse/run.GR2"
MotionDuration           0.466667
Accumulation             0.00    -554.04    0.00
 

and do it same to metin2_patch_pc3 pack

  • Love 1
Link to comment
Share on other sites

  • Active Member

Tip: You should check your channel1 syserr file for "SECTREE" errors. If you do have this kind of errors just use the run.msa (horse folder) from your client into the data folder at your SFTP, like @Nickas said. And most important: make sure you have the sectree fix in your char.cpp. If you do not have it here it is:

Find:

Spoiler

if (!new_tree)

Replace that "if" statement with this:

Spoiler

if (!new_tree)
    {
        if (GetDesc())
        {
            sys_err("cannot find tree at %d %d (name: %s)", x, y, GetName());
            new_tree = GetSectree();
            x = GetX();
            y = GetY();
        }
        else
        {
            sys_err("no tree: %s %d %d %d", GetName(), x, y, GetMapIndex());
            Dead();
        }

        return false;
    }

Hope I helped :)

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.