Amber Client

Forum for alternative clients, mods & discussions on the same.

Re: Amber Client

Postby romovs » Thu Oct 22, 2015 5:36 am

Carebear wrote:
Kelody wrote:The always drop seeds is great. Is there a hotkey for it?


Been meaning to ask that very questions - I use this feature daily and a hotkey would be great.


Will add in next release.

Locktar wrote:Guys, is there a way in Amber client so you could toss all edible items from inventory to the food trough? It takes forever to move fodder one-by-one.
At least all items of one type?


Not currently, but it will be in tomorrow's update.
User avatar
romovs
 
Posts: 1472
Joined: Sun Sep 29, 2013 9:26 am
Location: The Tabouret

Re: Amber Client

Postby Locktar » Thu Oct 22, 2015 6:55 am

romovs wrote:
Locktar wrote:Guys, is there a way in Amber client so you could toss all edible items from inventory to the food trough? It takes forever to move fodder one-by-one.
At least all items of one type?


Not currently, but it will be in tomorrow's update.


Awesome, looking forward to it
Locktar
 
Posts: 23
Joined: Fri Aug 28, 2015 5:19 pm

Re: Amber Client

Postby Clemence » Thu Oct 22, 2015 11:04 am

If there was icones we could put in the bar for switching between all the types of quality showing, that would be nice to.
User avatar
Clemence
 
Posts: 447
Joined: Sat Mar 19, 2011 5:26 am

Re: Amber Client

Postby karmov » Thu Oct 22, 2015 3:46 pm

Locktar wrote:
Guys, is there a way in Amber client so you could toss all edible items from inventory to the food trough? It takes forever to move fodder one-by-one.
At least all items of one type?




Not currently, but it will be in tomorrow's update.


Absolutely thrilled to hear this is coming. Eagerly awaiting : )
karmov
 
Posts: 72
Joined: Mon Mar 29, 2010 7:53 pm

Re: Amber Client

Postby Gelom90 » Thu Oct 22, 2015 3:58 pm

severely lacking centering for tree planting, could you add this feature?
User avatar
Gelom90
 
Posts: 34
Joined: Mon Jan 16, 2012 7:41 pm

Re: Amber Client

Postby Apillion » Thu Oct 22, 2015 7:29 pm

romovs wrote:Could you PM/post the link?


Turns out its not even a link imgur made some weird path from a image i uploaded i tried to PM it to you for interest sake but it makes even my browser crash.. So its not your client..
User avatar
Apillion
 
Posts: 405
Joined: Mon Dec 30, 2013 10:34 am

Re: Amber Client

Postby romovs » Fri Oct 23, 2015 8:08 am

Update.

New:
  • Hotkey for taking screenshots (dev. b0r3d0m) - Alt + S.
  • Option to use arithmetic mean when calculating average quality. See Display Settings.
  • Option to display cumulative damage for players/animals. See Combat Settings.
  • Quick filling of troughs/smelters/etc - Shift + Ctrl + Right Click.
  • Tree hiding - Ctrl + H. Status display hotkey has been changed to Ctrl + M.
  • Player position streaming for external mapping tools.
    Implementation details:
    If client is executed with "-p FILE" switch, current player position relative to the centre of tile_0_0 will be written roughly every 500ms to the specified memory mapped file (it will be automatically created by the client). The position is written as two 32-bit signed integers representing the relative xy coordinates.
    Client uses exclusive file lock for writing therefore consumers should handle locking on their end as well.
    Note that the file is not deleted when client terminates so if mapping app is started before the client it will need to handle possible case of old coordinates.
    Also, the file shouldn't be opened with DELETE_ON_CLOSE or similar options since it has different and sometimes undefined behaviour on different OSes.
    Java snipped on how to utilize this:
    Code: Select all
            File f = new File("/home/rom/projects/amber/build/playercoord");
            FileChannel channel = FileChannel.open(f.toPath(), StandardOpenOption.READ, StandardOpenOption.WRITE, StandardOpenOption.CREATE);

            MappedByteBuffer map = channel.map(FileChannel.MapMode.READ_ONLY, 0, 8);
            IntBuffer buf = map.asIntBuffer();

            while (true) {
                Thread.sleep(500);
                FileLock lock = channel.lock(0, 8, false);
                buf.position(0);
                int x = buf.get();
                int y = buf.get();
                System.out.println(x + "x" + y);
                lock.release();
            }
Fixed:
  • Contents bars not calculated correctly for buckets containing seeds.
  • Quality not being updated when stacking items.
Misc:
  • Contents bars are shown on quicklosts as well now.
  • Shift + pointing at a ground tile will show its resource name similarly to objects.
  • Display base and buffed values for base attributes separately (dev. b0r3d0m).
  • Option for auto dropping seeds in options window has been removed in favour of a hotkey - Shift + D
Last edited by romovs on Fri Oct 23, 2015 8:57 am, edited 1 time in total.
User avatar
romovs
 
Posts: 1472
Joined: Sun Sep 29, 2013 9:26 am
Location: The Tabouret

Re: Amber Client

Postby CaptainMidget » Fri Oct 23, 2015 8:16 am

romovs wrote: Option to display cumulative damage for players/animals. See Combat Settings.
Quick filling of troughs/smelters/etc - Shift + Ctrl + Right Click.


I fucking love you. Too many times have I been trying to add up the damage I do to a bear and then notice I forgot to hit a defense.
User avatar
CaptainMidget
 
Posts: 575
Joined: Mon Aug 08, 2011 4:54 am

Re: Amber Client

Postby Vraatjuh » Fri Oct 23, 2015 8:31 am

romovs wrote:Update.


Best patch so far! Awesome work.
Vraatjuh
 
Posts: 454
Joined: Tue Sep 28, 2010 4:08 pm
Location: Heaven

Re: Amber Client

Postby Turtlesir » Fri Oct 23, 2015 8:33 am

new toggle seed drop hotkey conflicts with show radius hotkey?
User avatar
Turtlesir
 
Posts: 813
Joined: Fri Aug 28, 2015 3:55 pm
Location: five levels under the sea

PreviousNext

Return to The Wizards' Tower

Who is online

Users browsing this forum: Claude [Bot] and 1 guest