cryfarmer wrote:boar agro range is wrong , its at least 25% bigger than whats displayed in the game , i confirmed it already many times. they always aggro far out of whats displayed in the game. fix it pls
AlexNT wrote:I'm trying to figure out map settings and need some help.
Is Amber client supposed to detect global coordinates on Odditown map? Mine doesn't so I was wondering if I'm missing some settings?
Also, there doesn't seem to be a grid_ids.txt in either the build in the first post or on Git. And the ones that I'm finding elsewhere don't seem to contain tile ids from world 12 that get saved if I enable saving tiles in the client. Is there a new grid_ids.txt for world 12 somewhere?
Cajoes wrote:I was the murder victim your guy aggro'd. And slew. Entirely unprovoked. Rather handily at that. Which prompted the retaliatory party. That you also handily slew.
bmjclark wrote:Hasnt been released yet.
geoloc = new IButton("gfx/hud/wndmap/btns/geoloc", "", "", "") {
return mmap.cur != null ? Config.gridIdsMap.get(mmap.cur.grid.id) : null;
Coord2d locatedAC = Navigation.getAbsoluteCoordinates();
Coord2d detectedAC = Navigation.getDetectedAbsoluteCoordinates();
AlexNT wrote:bmjclark wrote:Hasnt been released yet.
Actually, looking at the code, it appears as if the coordinate detection by grid_ids.txt has been completely overwritten by the integration with Navigation (see below).
Config.gridIdsMap is still populated at startup, but it doesn't look as if Navigation is using it anywhere in setting absoluteCoordinates or detectedAbsoluteCoordinates. Instead absoluteCoordinates seems to be using mapdata_index_local/global (except I couldn't get it to use a manually generated mapdata_index_local yet) and detectedAbsoluteCoordinates uses some heuristic which I didn't have time to parse through but which doesn't seem to work anyway (stuck at the same coordinates no matter what).
Can someone confirm?
- Code: Select all
geoloc = new IButton("gfx/hud/wndmap/btns/geoloc", "", "", "") {
Was:
- Code: Select all
return mmap.cur != null ? Config.gridIdsMap.get(mmap.cur.grid.id) : null;
Now:
- Code: Select all
Coord2d locatedAC = Navigation.getAbsoluteCoordinates();
Coord2d detectedAC = Navigation.getDetectedAbsoluteCoordinates();
Users browsing this forum: Claude [Bot] and 56 guests