I made a simple yet effective Loot Picker
This one is designed to be used in the last chamber of the Lumbridge Cathacombes.
Features:
- A simple Anti Ban (Rotating Screen, Pauses, Random Moving Mouse)
- Fast, 5 hour ***ting got me 330k (See proggie).
- Collect every item you want (Changeable in the script)
To Do:
- Add a random drop time
- Add a better paint
- Add a menu to select items to pickup (Need help with the GUI)
Vouches:
BlackZFireZ said:
XD im chancing the simple antiban you added here, iv speeded up the detection etc just to test, ran it from about 12am to 7am (so around 7 hours) and i got around 100k on money only and quite a bit of runes. but im also guessin it depends on how many people are there and how ***herd they are about the drops.
I wouldnt do it to much since its quite fast, i would say about the same if not a bit faster then the speed i work at but a HELL lot less mistakes haha. the Right click still just clicks cancel not take (unless that was your intention :3)
I wouldnt do it to much since its quite fast, i would say about the same if not a bit faster then the speed i work at but a HELL lot less mistakes haha. the Right click still just clicks cancel not take (unless that was your intention :3)
Proggies:
Quote
5 hour Proggie by Myself:
http://screenshooter...8irj40vpkko.jpg
http://screenshooter...8irj40vpkko.jpg
Pontusownaa said:
Thanks to:
- Mik***ter for the idea :D
- BearBQ (For helping me with the fail pickup)
- Cyrus or Macstheyjustsuck (For helping me with the fail pickup)
How to use:
1. Copy and Paste the code
2. Then save it as: MitchLumbPicker.java
3. Compile it using: Compile-Scripts.bat (Found in the folder My Documents/RS***)
4. Start the game
5. Walk to the last chamber of the Lumbridge Cathacombes
6. Run the script
7. Leave and the script will do the rest
8. Check the script after a while
9. Stop it
10. Walk to the GE
11. Sell it on the GE :D
12. Done
Change Log:
15/02/2011 - 1.0 - Script Uploaded 15/02/2011 - 1.1 - Improved the script (Faster)
Version 1.1
Save as MitchLumbPicker.java
import org.rs***.script.*;
import org.rs***.script.wrappers.*;
@ScriptManifest(name = "MitchLumbPicker",
authors = "Hipio",
keywords = "",
version = 1.1,
description = "Picks up valuable items at the last chamber of Lumbridge Cathecombes")
public class MitchLumbPicker extends Script{
private RSTile walkingTo;
private int runenergy;
private int[] pickupids = { 995, 556, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 557, 558, 559, 560, 561, 555, 314, 1734 };
private int[] junkids = { 841, 1381, 1389, 438, 1654, 526, 1635, 1718, 1422 };
public boolean onStart() {
log("Welcome to MitchLumbPicker");
mouse.setSpeed(random(8, 9));
return true;
}
@Override
public int loop() {
try{
if (!walking.isRunEnabled() && walking.getEnergy() > runenergy) {
walking.setRun(true);
log("Activated Run..");
runenergy = (random(30,50));
}
} catch (Exception ignored){}
if (!getMyPlayer().isMoving()) {
if(inventory.isFull()) {
inventory.dropAllExcept(random(0,2) == 0,pickupids);
sleep(2000,2200);
} else {
RSGroundItem item = groundItems.getNearest(pickupids);
try {
if(item.isOnScreen()) {
walking.walkTileOnScreen(item.getLocation());
item.doAction("Take");
sleep(1000,2200);
camera.setAngle(random(1, 360));
sleep(1000,2200);
} else {
walking.walkTileMM(item.getLocation());
sleep(1000,2200);
mouse.setSpeed(random(9, 10));
sleep(1000,2200);
}
} catch(NullPointerException ignored) {}
}
}
sleep(1000,1200);
return 0;
}
public void onFinish(){
log("Thanks for using MitchLumbPicker");
}
}
Quote
Check out my other scripts:
- MitchBones | AiO Bones Burier
- → ⇒ → ~~ MitchBonesBanker ~~ | AIO Bone Banker ← ⇐ ←
- MitchBones | AiO Bones Burier
- → ⇒ → ~~ MitchBonesBanker ~~ | AIO Bone Banker ← ⇐ ←
If you don't trust me or the code, then check it by yourself.
I assure you, there is nothing hidden in it
Replace rs*** with: r.s.b.o.t (WITHOUT the Dots)!










Back to top

