Jump to content

Vag

Trade With Caution
  • Posts

    977
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Vag

  1. And I was just about to enter and brag with this..
  2. I might also PM you in the near future for some paints :P
  3. Can't say anything else but lift my hat.
  4. Come here to Finland to assemble my PC. I will pay you 5%
  5. Vag

    Selling 6m OSRS

    PayPal if deemed as trusted.
  6. Yeah. Post your offers below pls ty bai
  7. @Maldreil is going to love this
  8. What.. is the idea of this script? I can not understand.
  9. i5-4690k quad-core @3.5Ghz - 2 mirrors at 30-50 CPU usage. 10-12 normal clients is possible, but not recommended.
  10. Every male from 18-62 is a military trained in Finland. I will step in service next year. Coastal Jaeger Reginment
  11. Vag

    Where is Maldo?

    Wow. I would never guessed that you ride mald.
  12. Vag

    Jdm

    b18c1 would be the way to go. How ever, there are many kinds of people but only homo's have a honda. JK. b18c1 can take 350-450bhp easily, where k20 cams will say boom at under 400 or so.
  13. And I was relieved for a second that now we have one cow less on the forums.
  14. This is a educational release for a simple chicken killing script. The script will attack the monster (chicken). This will not eat or loot, just a basic bare bone for chicken killer. //OSBot API import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; //Importing Java AWT import java.awt.*; //Script Details @ScriptManifest(name = "Chicken Killer", author = "YOU!!", version = 1.0, info = "", logo = "") public class main extends Script { @Override public void onStart() { log("Welcome - your first script!"); } @Override public void onExit() { log("K Bye"); } @Override public int onLoop() throws InterruptedException { //Script on loop NPC chicken = npcs.closest("Chicken"); //Looking for non-player character chicken, which will be the closest NPC called chicken if(!myPlayer().isAnimating() && !myPlayer().isMoving()) { if(chicken != null) { if (chicken.isVisible()) { chicken.interact("Attack"); sleep(random(300, 600)); //If chicken is available on the screen, we will perform interaction Attack on it. } else { camera.toEntity(chicken); //Moving camera so that the chicken will be visible on the screen. } } } else { sleep(random(300, 600)); //Sleeping for with devitation } return(random(100, 300)); //Starting the script over after random sleep in milliseconds. } @Override public void onPaint(Graphics2D g) { //Loading paint super.onPaint(g); g.setColor(Color.GREEN); g.drawString("Uncle Dolan had a chikun ", 5, 290); //Text color is GREEN - printing a line in the client saying Uncle Dolan had a chikun } } K bye
  15. OSBot works just fine. It all depends on what is updated.
×
×
  • Create New...