June 16, 20196 yr Hi, When running the client in resizable mode, is there any way to programmatically set the client dimensions, either through the script itself or the CLI arguments? I'm wanting to set the client viewport to 720p or 1080p automatically when I launch the client/script. Thanks
June 16, 20196 yr I don't know if there is. Think it's like the original rs client. You could always get a picture of which you want and match it to that size.
June 16, 20196 yr Container container = getBot().getCanvas() .getParent(); while (!(container instanceof JFrame)) { container = container.getParent(); } container.setSize(1920, 1080);
Create an account or sign in to comment