Jump to content

CanCo

Members
  • Posts

    20
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by CanCo

  1. Is there a difference between botting on a network linked to a company that has up to thousands of users on the same network vs a normal home network? EDIT: talking about ban rates
  2. Na got permed at 2050+ on one account tho :P
  3. Alright that sounds like a plan, thanks all
  4. Yes i know that is what i posted. What i am looking for is not area using main tiles but using local tiles that are inside instance, because main tiles change in instances but local tiles stay the same.
  5. How can I use local titles instead of the set tiles eg. in an instance area the local tiles are always the same, but the main tiles change so it is easier to use local tiles. (EDIT: in this instance anyway, not sure about other instances) How can this be done? Current: Area area = new Area(x, y, x, y); Is somthing like this possible: Area area = new Area(LocalX x,LocalY y,LocalX x,LocalY y);
  6. Hey so i was looking to get my script on the SDN and read through: https://osbot.org/forum/forum/181-open-sdn-upload-requests/ I am supposed to create a Git hub account request but it wont allow me to crate a topic in the SDN UPLOAD REQUEST FORUM, how do i go about doing this?
  7. Nice man. Is there any graphical design software that can be compared to photoshop? (And free)
  8. CanCo

    OSRS mobile

    OSRS Mobile will be amazing! It will no doubt create a bigger community here at osbot
  9. I know that isQuickPrayerActive() will show if on or off im asking how to turn it on and off.
  10. I was looking for checking of prayer points and turning quick prayers on and off in the api. I found the Prayer api where i found ways to turn on and off single prayers, check if quick prayers are turned on/off but not actually turning them on/off and checking the amount of prayer points that are left. I was here: https://osbot.org/api/org/osbot/rs07/api/Prayer.html Thanks for the help ;)
  11. Hey i simply dont understand how to implement this code. What imports do i need for it?
  12. When I start the client i see the two different modes: stealth injection and mirror mode. What is the difference and is one safer than another? Thanks for all replies
  13. I am trying to have my script hover on a specific tile but i cant find/ understand the API well enough to find out what to do >.> I tried like this Position(2618, 3444, 0).hover(); Would really appreciate the help
  14. Hey i can't for the life of me figure out why this is not working >.> I tried to modify ur script to be the start of a fishing script but i can get it to work. Currently when ran it will just be in the WAIT state. Most likely because it cant find the fishing spot is what i am assuming (even tho i am right by it). I have tried changing some things such as "Entity -> RS2Object" and "objects -> getObjects()" import org.osbot.rs07.api.model.*; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "CanCo", info = "shrimper fisher", name = "CanFish", version = 0, logo = "") public class main extends Script { @Override public void onStart() { log("My fisher v1"); } private enum State { FISH, WAIT } private State getState() { Entity spot = objects.closest("Fishing spot"); if (spot != null && !myPlayer().isAnimating()) return State.FISH; return State.WAIT; } @Override public int onLoop() throws InterruptedException { switch (getState()) { case FISH: log("going fishing.."); Entity spot = objects.closest("Fishing spot"); if (spot != null && !myPlayer().isAnimating()) spot.interact("Net-from"); break; case WAIT: log("waiting.."); sleep(random(500, 800)); break; } return random(200, 300); } @Override public void onExit() { log("STOPPED"); } @Override public void onPaint(Graphics2D g) { } }
×
×
  • Create New...