Jacksonpm23 Posted August 10, 2017 Posted August 10, 2017 10-50 FM in an hour and change for Wintertodt Thanks. Hopefully no ban incoming xD 1
GPSwap Posted August 18, 2017 Author Posted August 18, 2017 13 minutes ago, ShaunBr said: not working for me thats not very helpfull for me to fix, whats not working? mirror or normal? what does the log say? what log type?
GPSwap Posted September 3, 2017 Author Posted September 3, 2017 Re-written and download link updated let me know what you think if you try it
luckyluuk23 Posted October 1, 2017 Posted October 1, 2017 (edited) Thanks alot. Will try it out right now! EDIT: Script seems to be nice! Edited October 1, 2017 by luckyluuk23
TTScripts Posted October 12, 2017 Posted October 12, 2017 (edited) Grats on release bro. A few tips: Set a font and color for the paint using g.setFont(new Font("[NAME OF FONT]", Font.PLAIN, [FONT SIZE]); g.setColor(Color.WHITE); if you use Eclipse it will give you the import options. An efficient way to get paint to hide is using a clickable rectangle. Here's a method below: (Place it in your onStart void) this.bot.addMouseListener(new BotMouseListener() { public void mouseClicked(java.awt.event.MouseEvent e) { Point point = e.getPoint(); Rectangle hideButton = new Rectangle(452,326,62,11); if (hideButton.contains(point)) { showPaint = !showPaint; } } @Override public void mousePressed(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseReleased(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseEntered(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseExited(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public boolean blockInput(Point arg0) { // TODO Auto-generated method stub return false; } }); } Make sure you change the rectangle to your coordinates and add something like if (!showPaint) { g.drawString("[Show Paint]", 457, 332); return; } to your paint method. Edited October 12, 2017 by TTScripts
GPSwap Posted October 12, 2017 Author Posted October 12, 2017 1 hour ago, iroll said: how does this run? start acc in vwest bank and select the log type on the gui 36 minutes ago, TTScripts said: Grats on release bro. A few tips: Set a font and color for the paint using g.setFont(new Font("[NAME OF FONT]", Font.PLAIN, [FONT SIZE]); g.setColor(Color.WHITE); if you use Eclipse it will give you the import options. An efficient way to get paint to hide is using a clickable rectangle. Here's a method below: (Place it in your onStart void) this.bot.addMouseListener(new BotMouseListener() { public void mouseClicked(java.awt.event.MouseEvent e) { Point point = e.getPoint(); Rectangle hideButton = new Rectangle(452,326,62,11); if (hideButton.contains(point)) { showPaint = !showPaint; } } @Override public void mousePressed(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseReleased(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseEntered(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseExited(java.awt.event.MouseEvent e) { // TODO Auto-generated method stub } @Override public boolean blockInput(Point arg0) { // TODO Auto-generated method stub return false; } }); } Make sure you change the rectangle to your coordinates and add something like if (!showPaint) { g.drawString("[Show Paint]", 457, 332); return; } to your paint method. gz on release on a script out almost 3 months ago? XD font is already set, colour is set on my version but it was just a oversite on the uploaded version, and if I wanted to hide paint I would of added it
TTScripts Posted October 12, 2017 Posted October 12, 2017 26 minutes ago, GPSwap said: start acc in vwest bank and select the log type on the gui gz on release on a script out almost 3 months ago? XD font is already set, colour is set on my version but it was just a oversite on the uploaded version, and if I wanted to hide paint I would of added it I don't know why but you're coming off as very snide. I was only trying to be helpful because the post was commented on recently and I just saw the topic. I was only offering advice and a hide paint option is smart, You should really consider one for your scripts. Best of luck, friend.
iroll Posted October 13, 2017 Posted October 13, 2017 thank you will try and thank you for this script! life saver 1
fonchox Posted October 22, 2017 Posted October 22, 2017 How much time per day can the script run without risking ban?