Jump to content

Search the Community

Showing results for tags 'sand crabs'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • OSBot
    • News & Announcements
    • Community Discussion
    • Bot Manager
    • Support Section
    • Mirror Client VIP
    • Script Factory
  • Scripts
    • Official OSBot Scripts
    • Script Factory
    • Unofficial Scripts & Applications
    • Script Requests
  • Market
    • OSBot Official Voucher Shop
    • Currency
    • Accounts
    • Services
    • Other & Membership Codes
    • Disputes
  • Graphics
    • Graphics
  • Archive

Product Groups

  • Premium Scripts
    • Combat & Slayer
    • Money Making
    • Minigames
    • Others
    • Plugins
    • Agility
    • Mining & Smithing
    • Woodcutting & Firemaking
    • Fishing & Cooking
    • Fletching & Crafting
    • Farming & Herblore
    • Magic & Prayer
    • Hunter
    • Thieving
    • Construction
    • Runecrafting
  • Donations
  • OSBot Membership
  • Backup

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


MSN


Website URL


ICQ


Yahoo


Skype


Location:


Interests

Found 2 results

  1. FIRE CAPES POWERLEVELING QUESTING MINIGAMES TERMS OF SERVICE! 1. All Payments are to be given up front before we start any type of service with NO exceptions. 2. There will be NO refunds once payment has been taken unless we are no longer able to complete your request and will only be refunded the remaining order amount. 3. You are NOT allowed to log into the account while the service is being completed unless we have given you permission to do so. If you log into the account without permission your order will be terminated without giving you a refund. 4. You will NOT recover the account whilst it is in our possession. If you need to terminate your order please contact us and we will allow you to change your password back. Any attempts to reclaim the account prematurely will lead to the order being terminated instantly, without us resuming later. 5. Before we start any type of work all valuables MUST be removed from the account. Only the items needed to complete the order itself should be left on the account. Failure to do this means we will not be able to assume responsibility for any wealth that goes missing. 6. All of our services are 100% hand done we do not use any type of bot or macros to do your service. If you wish for us to take screenshots of the progress you must request it before the service begins and will be deleted after 72 hours of completing your order. 7. By ordering from us you recognize the risks of having us or our workers on your account and will NOT hold us responsible if Jagex infracts your account this can include but not limited to bans/mutes. 8. You will need to change the password immediately AFTER the service is completed this is for your own safety! We will not be held responsible for any bans/mutes/hacks after the service have been completed. 9. When placing an order from us you automatically agree to our terms and conditions listed above.
  2. package Main; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.*; import org.osbot.rs07.api.map.Position; import java.awt.*; @ScriptManifest(name = "CrabKiller", author = "kyu", version = 1.0, info = "noob scripting", logo = "") public class Main extends Script { @Override public void onStart() { log("welcome to kyu crabs"); //Code here will execute before the loop is started } private enum State{ FIGHTING, RESET; } private State getState(){ if(myPlayer().isHitBarVisible() || myPlayer().isUnderAttack()) return State.FIGHTING; return State.RESET; } @Override public void onExit() { log("ending...."); //Code here will execute after the script ends } final Position starting = myPlayer().getPosition(); final Position reset = new Position(1750,3503,0); @Override public int onLoop() throws InterruptedException{ switch(getState()){ case FIGHTING: if(myPlayer().getHealthPercent()<50) getInventory().interact("Eat","Tuna"); return 20000; case RESET: log("walking...."); getWalking().walk(reset); sleep(15000); log("walking to start"); getWalking().walk(starting); sleep(15000); } return 5000; //The amount of time in milliseconds before the loop starts over } @Override public void onPaint(Graphics2D g) { //This is where you will put your code for paint(s) } } I was building a simple afk sandcrabber for personal use but when i went to test it wouldnt even start running. The logger doesnt even show the onstart text so i'm looking for a quick troubleshoot
×
×
  • Create New...