1) my msm gr2 server_client all ready good working
2) data/client msm/gr2/etc all ready good working
i have this bug on 2023 again and again
on my pc with anydesk 5 develope from france for see this problem
We fixed it (temporarily)
My server working BEST without bug mount
(temporarily for find an even better fix)
1) OPEN INPUT_MAIN
2) SEARCH:
const float fDist = DISTANCE_SQRT ((ch->GetX() - pinfo->lX) / 100, (ch->GetY() - pinfo->lY) / 100);
if (((false == ch->IsRiding() && fDist > 750) || fDist > 999) && OXEVENT_MAP_INDEX != ch->GetMapIndex())
{
sys_log (0, "MOVE: %s trying to move too far (dist: %.1fm) Riding(%d)", ch->GetName(), fDist, ch->IsRiding());
ch->Show (ch->GetMapIndex(), ch->GetX(), ch->GetY(), ch->GetZ());
ch->Stop();
return;
}
3) ADD AFTER
if (true == ch->IsRiding())
{
ch->UpdateSectree();
}