Jump to content

Kenn

Members
  • Posts

    125
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Kenn

  1. I wouldn't recommend something too expensive. http://www.ebay.co.uk/itm/like/301082856644?adgroupid=13585920426&hlpht=true&hlpv=2&rlsatarget=pla-131843273826&adtype=pla&ff3=1&lpid=122&poi=&ul_noapp=true&limghlpsr=true&device=c&chn=ps&campaignid=207297426&crdt=0&ff12=67&ff11=ICEP3.0.0-L&ff14=122&viphx=1&ops=true&ff13=80 get something really padded.
  2. Kenn

    Rhodry's Gallery

    The last image really appealed to me, nice work man.
  3. 15, Turning 16 in 20 days or sum shit, Male. / UK
  4. Hello guys, i've recently bought the domain (Zamron.net) I have decided to sell it now because i no longer need it. I bought it from TrentaHost. You will get everything you need for the domain (domain names etc for your webhost) Offers?...
  5. These are amazing, great work.
  6. Best of luck with this, looks pretty sweet. Good work.
  7. Why would you even need a proxy if you're botting?.... but nice release on this.
  8. Lol i obv do know where to start with i use Eclipse to code RSPS i aren't completely new to Java but this is all wierd to me i've never done much with Bots, Although some codes do look alot familiar but im pretty sure 07 codes are different from coding 317-742 servers. This is my code so far im working on some more like a all around woodcutt where you have a option to choose what you want to cut and such. Would anybody care to help? package Woodcutter; /* * Create by Kenn * Project Created 07/07/2013 * Base/Skeleton from OsBot.org */ import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.Entity; import org.osbot.script.rs2.model.Player; import org.osbot.script.rs2.skill.Skill; import org.osbot.script.rs2.skill.Skills; import org.osbot.script.rs2.ui.Bank; import org.osbot.script.rs2.ui.Inventory; import org.osbot.script.rs2.utility.Area; @ScriptManifest(author = "Kenn", info = "Chops all logs everwhere.", name = "Woodcutter", version = 0.2) public class Other extends Script { static Timer runTime; final String WILLOW_NAME = "Willow"; final String YEW_NAME = "Yew"; final String OAK_NAME = "Oak"; final Area BANK_AREA = new Area(3092, 3240, 3097, 3246); final Area WILLOW_AREA = new Area(3081, 3223, 3092, 3239); final Area YEW_AREA = new Area(); final Area OAK_AREA = new Area(); final int BANK_BOOTH_ID = 23961; int startExp; int startLvl; int logsChopped = 0; // code used at start public void onStart() { runTime = new Timer (0); startExp = client.getSkills().getExperience(Skill.WOODCUTTING); startLvl = client.getSkills().getLevel(Skill.WOODCUTTING); log("Draynor Willow Cutter has started."); } // code to be executted at the end public void onExit() { log("Thanks for choosing Draynor Willow Cutter."); } // code in loop public int onLoop() throws InterruptedException { Inventory inven = client.getInventory(); Player player = client.getMyPlayer(); Bank bank = client.getBank(); // Antiban if (random(50) == 0) { this.client.rotateCameraPitch(random(60, 360)); } if (!inven.isFull()) { // chop if(WILLOW_AREA.contains(player)){ Entity willow = closestObjectForName(WILLOW_NAME); if (willow != null) { if (willow.isVisible()) { if (!player.isAnimating()) { if (!player.isMoving()) { willow.interact("Chop down"); sleep(random(700, 800)); } } } else { client.moveCameraToEntity(willow); } } }else{ walk(WILLOW_AREA); } } else { // bank if (BANK_AREA.contains(player)) { Entity bankbooth = closestObject(BANK_BOOTH_ID); if (bank.isOpen()) { bank.depositAll(); } else { if (bankbooth != null) { if (bankbooth.isVisible()) { bankbooth.interact("Bank"); sleep(random(700, 800)); }else{ client.moveCameraToEntity(bankbooth); } } } } else { walk(BANK_AREA); } } return 50; } public void onMessage(String message){ if(message.contains("You get some willow logs.")){ logsChopped++; if(message.contains("You get some oak logs.")){ logsChopped++; } } } // paint public void onPaint(Graphics g) { Graphics2D gr = (Graphics2D)g; gr.setColor(Color.CYAN); gr.setFont(new Font("Arial",Font.BOLD,12)); Skills skills = client.getSkills(); gr.drawString("Logs chopped: " + logsChopped, 25, 50); gr.drawString("Logs chopped/hr: " + getPerHour(logsChopped), 25, 65); gr.drawString("Exp gained: " + (skills.getExperience(Skill.WOODCUTTING)-startExp), 25, 80); gr.drawString("Exp gained Per Hour: " + getPerHour(skills.getExperience(Skill.WOODCUTTING)-startExp), 25, 95); gr.drawString("Woodcutting Level: " + (skills.getLevel(Skill.WOODCUTTING) + " + (" +(client.getSkills().getLevel(Skill.WOODCUTTING) -startLvl) + ")"), 25, 110); } public static int getPerHour(int Value) { if (runTime != null && runTime.getElapsed() > 0){ return (int) (Value = (int) (36000000d / runTime.getElapsed())); } else { return 0; } } public static long getPerHour(long value) { if (runTime != null && runTime.getElapsed() > 0) { return (long) (value = (long) (36000000d / runTime.getElapsed())); } else { return 0; } } }
  9. Thanks, Im pretty sure we can find another way around it to make the bots work.
  10. Does anybody have something/program that i will be able to read .class files please.
  11. Kenn

    BETA v1.7.18

    Looking good, Thanks for the information.
  12. Would somebody make a tutorial for me please, I will make my own Graphic pictures on Photoshop but i just need to know how to place it where and such =)
  13. So would that actually work by decompiling somebody jar into the class ?
  14. May i ask how i would get somebody elses code.... Sorry for being abit of a douche, Is it where i unjar the jar file and look at the class ?
  15. How would i make something like this on my bot?
  16. Do you have skype, If so add me, PM me if you have i aren't saying it out here.
  17. Would be great to see the turn out of the server. Goodluck.
  18. Just a quick simple one for first of all until i learn abit more, Maybe fishing or cooking??
  19. I was about to follow this tutorial, http://osbot.org/forum/topic/5490-osbot-updated-programming-tutorials/ Would anybody like to make a small project with me?
  20. Would you mind setting it up for me on Eclipse or Netbeans, I aren't really bothered which but aslong as i can start but i don't know what to do i have no clue.
  21. Well im kind of new here, I've been programming RSPS for awhile and Web Development, I aren't pro but im some what good in my own way, Is there any chance i could learn creating OSBots for myself and others as i am wanting to make some of my own but i have trouble, I don't know where to start if somebody could help me out set something up and let me get coding and guide me through that would be awesome!
  22. Thanks for sharing this dude, Would come in hand for me but 4shared ;(
×
×
  • Create New...