Adblock breaks this site

(REQUEST) Rock Crab Killer Script

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

Thread Status:
Not open for further replies.
  1. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (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
     
  2. last_man_3

    last_man_3 Member

    Joined:
    Oct 25, 2008
    Posts:
    42
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

  3. one-service

    one-service Active Member

    Joined:
    Dec 4, 2008
    Posts:
    194
    Referrals:
    1
    Sythe Gold:
    0
    (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)
     
  4. last_man_3

    last_man_3 Member

    Joined:
    Oct 25, 2008
    Posts:
    42
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    There are many in rsbot.org, dont buy anything...
     
  5. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    uhm the link doesnt work?
     
  6. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    still need script!, please post download link/ link to the forum to get it!
     
  7. pro_spider13

    pro_spider13 Forum Addict

    Joined:
    Apr 2, 2007
    Posts:
    325
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    lol dude just go search rsbot.org theres tons of them.
     
  8. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (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.
     
  9. Clue Scrolls

    Clue Scrolls Member

    Joined:
    Nov 28, 2008
    Posts:
    69
    Referrals:
    1
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    Go to rsbot.org and search DrCrabBot
    Thats the one im using ;)
     
  10. bradpm

    bradpm Active Member

    Joined:
    May 13, 2007
    Posts:
    203
    Referrals:
    0
    Sythe Gold:
    0
    (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);
        }
    
    }
     
  11. k0pwner

    k0pwner Member

    Joined:
    Oct 28, 2007
    Posts:
    31
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    try runescape cheating asylum
     
  12. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    i did...i still cant find a script thats free....or that even works..
     
  13. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (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.
     
  14. Party_dude

    Party_dude Active Member

    Joined:
    Sep 3, 2007
    Posts:
    231
    Referrals:
    0
    Sythe Gold:
    7
    (REQUEST) Rock Crab Killer Script

    Request this on the RsBot Sticky that says rs bot requests please
     
  15. Party_dude

    Party_dude Active Member

    Joined:
    Sep 3, 2007
    Posts:
    231
    Referrals:
    0
    Sythe Gold:
    7
    (REQUEST) Rock Crab Killer Script

    noob stuff
     
  16. deadlywario0

    deadlywario0 Active Member

    Joined:
    Nov 29, 2008
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    (REQUEST) Rock Crab Killer Script

    lol, i already did dude, im not stupid
     
< [Swap] Buying Skiller. | swapping my berzerker pure >
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site