Jump to content

Jack

Members
  • Posts

    2125
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Jack

  1. it is very afkable I spend so much time on the computer, i might as well
  2. After seeing @Dylan's progress, Im gonna try it. Ill be doing it legit because botting it would be an insta ban. I will try to update every few days: 6/7 (10:11 pm) I got 30 thieving to use the maple blackjack! That took me a few hours :P
  3. https://www.youtube.com/watch?v=hfrZE0jCOCQ#t=76 (1:30-2:00) The way that "Green Valley" transitions into "Bounce" gives me the chills. https://www.youtube.com/watch?v=hfrZE0jCOCQ#t=2023 (33:43) I don't think this genre of music exists. Its like he took Ronald Jenkees and uped the "coolness". What do you guys think?
  4. I just wanted to see if anyone caught anything I missed for osbot 2. I should be updating when I can add more methods.
  5. 1. the scripter would put whatever that want here? 2/3. adding it now
  6. import java.awt.*; import javax.imageio.ImageIO; import org.osbot.rs07.api.ui.Message; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.io.IOException; import java.net.URL; @ScriptManifest(author = "Jack", name = "", version = 0.1, info = "", logo = "") public class Core extends Script { long startTime = 0; private final Image paintImage = getImage(""); int mouseX,mouseY; BasicStroke mouseStroke = new BasicStroke(1); public void onStart() { startTime = System.currentTimeMillis(); getBot().setHumanInputEnabled(false); } public int onLoop()throws InterruptedException{ return random(300, 400); } public void onPaint(Graphics2D g){ g.setStroke(mouseStroke); g.setColor(Color.WHITE); mouseX = mouse.getPosition().x; mouseY = mouse.getPosition().y; g.drawLine(mouseX-6, mouseY-6, mouseX+6, mouseY+6); g.drawLine(mouseX-6, mouseY+6, mouseX+6, mouseY-6); } public void onMessage(Message message) { if(message!=null){ } } private Image getImage(String url) { try { return ImageIO.read(new URL(url)); } catch(IOException e) { return null; } } public void onExit() { } }
  7. That looks like the vsause font: http://www.dafont.com/alsina.font
  8. i was about to post that you fked that calculation up
  9. 4^2 = 16 total outcomes. 4 ways of winning exactly 2. 4/16 = 1/4 False. Source: Who doesnt know this? So thats what they teach in England?
  10. you have a loose definition of "play"
  11. I know its "Gold Pieces", but the in game name is and always has been "Coins". When did people start saying gp? Ever since Ive been paying (7-8 years) I have referred to it as gp. How did it stick?
  12. sorry a little off topic but chatbox is down. how do i get my player skill stats in osbot 2? client.getSkills().getLevel(Skill.ATTACK); ^ that no longer works is it getSkills().getDynamic(Skill.ATTACK); or getSkills().getStatic(Skill.ATTACK);
  13. Blackhawks lost. Kings suck. Time to scamquit. http://osbot.org/forum/topic/47188-which-team-wins-the-stanley-cup/#entry529091
  14. How many versions of osbot do you have? How old are they? Post your pictures below I deleted quite a few but here are some:
  15. Next time dont have bing as you default search option...
×
×
  • Create New...