(REQUEST) Rock Crab Killer Script

Discussion in 'Archives' started by deadlywario0, Dec 22, 2008.

Thread Status:
Not open for further replies.
(REQUEST) Rock Crab Killer Script
  1. Unread #1 - Dec 22, 2008 at 1:33 PM
  2. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    hi, i was wondering if anyone has a rock crab fighting/ killing script for xp and training. If any1 does please post it here or post a download link.


    Thanks,
    deadlywario0
     
  3. Unread #2 - Dec 22, 2008 at 1:40 PM
  4. last_man_3
    Joined:
    Oct 25, 2008
    Posts:
    42
    Referrals:
    0
    Sythe Gold:
    0

    last_man_3 Member

    (REQUEST) Rock Crab Killer Script

  5. Unread #3 - Dec 22, 2008 at 2:03 PM
  6. one-service
    Joined:
    Dec 4, 2008
    Posts:
    194
    Referrals:
    1
    Sythe Gold:
    0

    one-service Active Member

    (REQUEST) Rock Crab Killer Script

    im selling my own specialised script pm me if you want it cheap.

    (mod please remove this if its broken any rules)
     
  7. Unread #4 - Dec 22, 2008 at 2:10 PM
  8. last_man_3
    Joined:
    Oct 25, 2008
    Posts:
    42
    Referrals:
    0
    Sythe Gold:
    0

    last_man_3 Member

    (REQUEST) Rock Crab Killer Script

    There are many in rsbot.org, dont buy anything...
     
  9. Unread #5 - Dec 22, 2008 at 3:09 PM
  10. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    uhm the link doesnt work?
     
  11. Unread #6 - Dec 22, 2008 at 3:12 PM
  12. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    still need script!, please post download link/ link to the forum to get it!
     
  13. Unread #7 - Dec 25, 2008 at 7:06 PM
  14. pro_spider13
    Joined:
    Apr 2, 2007
    Posts:
    325
    Referrals:
    0
    Sythe Gold:
    0

    pro_spider13 Forum Addict

    (REQUEST) Rock Crab Killer Script

    lol dude just go search rsbot.org theres tons of them.
     
  15. Unread #8 - Dec 25, 2008 at 9:22 PM
  16. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    i have most are nexus and wont work? it dont come with .class file so it doesnt load it? it just dont work.
     
  17. Unread #9 - Dec 27, 2008 at 7:50 AM
  18. Clue Scrolls
    Joined:
    Nov 28, 2008
    Posts:
    69
    Referrals:
    1
    Sythe Gold:
    0

    Clue Scrolls Member

    (REQUEST) Rock Crab Killer Script

    Go to rsbot.org and search DrCrabBot
    Thats the one im using ;)
     
  19. Unread #10 - Dec 27, 2008 at 8:58 AM
  20. bradpm
    Joined:
    May 13, 2007
    Posts:
    203
    Referrals:
    0
    Sythe Gold:
    0

    bradpm Active Member

    (REQUEST) Rock Crab Killer Script

    Woofdawg23's Rock Crab Crusher

    Information:

    - attack's other peoples crabs (lol)
    - eats food
    - no deathwalk
    - fast and efficient
    - anti-ban

    Code:
    import com.speljohan.rsbot.script.Script;
    import com.speljohan.rsbot.script.wrappers.*;
    
    public class RockCrabCrusher extends Script {
    
        // misc
        public int state = 1;
        public int equipThis;
        int GambleInteger;
    
        @Override
        public String getScriptCategory() {
            return "Woofdawg23's fighter series";
        }
        
        public String getName() {
            return "RockCrabCrusher";
        }
    
        public double getVersion() {
            return 1.0;
        }
    
        public String getAuthor() {
            return "Woofdawg23";
        }
        // Miscellaneous:
        long        startTime;
        long        waitTime = random(120000, 180000);
        int            foodID = 361;
        int            foodCheck = random(10, 20);
        int         randomRunValue = 45;
        
    
        public boolean onStart( String[ ] args ) {
            if ( args.length >= 1 ) {
                try {
                    foodID = Integer.parseInt( args[args.length - 1] );
                    log("Eating food that has the ID " + foodID);
                }
                catch ( Exception e ) {
                }
            }
            // Return true (success).
            return( true );
        }
    
        public int loop() {
            // Check if the player needs food.
            checkHealthEat( );
            if (getMyPlayer().isInCombat() || getMyPlayer().isMoving()) {
                return random(500, 1000);
    
            }
            switch (state) {
                case 1:
                    wieldItems();
                case 2:
                    fightCrabs();
            }
            return random(1000, 2000);
        }
    
        public void wieldItems() {
            if (inventoryContains(equipThis)) {
                atInventoryItem(equipThis, "Wield");
            }
        }
        public void checkHealthEat( ) {
            int health;
    
            health = skills.getCurrentSkillLevel( STAT_HITPOINTS );
            if (health <= foodCheck ) {
                log("Health is " + health + ", eating.");
                foodCheck = random(10, 20);
                atInventoryItem(foodID, "Eat");
            }
        }
    
        private int antiBan() {
            GambleInteger = random(1, 3);
            if (GambleInteger == 1) {
                wait(random(2000, 2000));
            }
            if (GambleInteger == 2) {
                int intx = random(0, 750);
                int inty = random(0, 500);
                moveMouse(0, 0, intx, inty);
            }
            return random(1000, 1500);
        }
    
        public int fightCrabs() {
            RSNPC npc = getNearestFreeNPCByName("Rock Crab");
    
            if (npc != null && !npc.isInCombat()) {
                atNPC(npc, "attack");
                wait(random(1000, 2000));
                return random(1000, 2000);
            } else {
                return random(100, 500);
            }
        }
    
        public int letsWait() {
            return random(1000, 2000);
        }
    
    }
     
  21. Unread #11 - Dec 27, 2008 at 9:46 AM
  22. k0pwner
    Joined:
    Oct 28, 2007
    Posts:
    31
    Referrals:
    0
    Sythe Gold:
    0

    k0pwner Member

    (REQUEST) Rock Crab Killer Script

    try runescape cheating asylum
     
  23. Unread #12 - Dec 29, 2008 at 9:00 PM
  24. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    i did...i still cant find a script thats free....or that even works..
     
  25. Unread #13 - Jan 5, 2009 at 10:13 AM
  26. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    thanks for the script is there a .class or identification file for it? cause it wont let me use it it doesnt show up.
     
  27. Unread #14 - Jan 5, 2009 at 1:41 PM
  28. Party_dude
    Joined:
    Sep 3, 2007
    Posts:
    231
    Referrals:
    0
    Sythe Gold:
    7

    Party_dude Active Member

    (REQUEST) Rock Crab Killer Script

    Request this on the RsBot Sticky that says rs bot requests please
     
  29. Unread #15 - Jan 5, 2009 at 1:43 PM
  30. Party_dude
    Joined:
    Sep 3, 2007
    Posts:
    231
    Referrals:
    0
    Sythe Gold:
    7

    Party_dude Active Member

    (REQUEST) Rock Crab Killer Script

    noob stuff
     
  31. Unread #16 - Jan 5, 2009 at 1:44 PM
  32. deadlywario0
    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0

    deadlywario0 Active Member

    (REQUEST) Rock Crab Killer Script

    lol, i already did dude, im not stupid
     
< [Swap] Buying Skiller. | swapping my berzerker pure >

Users viewing this thread
1 guest
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site