Call me stupid

Automatic

User is banned.
Reputation
0
But let me get this right:

The reason why 90% of people fail jad is because they run out of prayer/don't switch prayer? What so hard about someone coding:

if(games.Prayer =< 10){
inventory.doAction("Drink Super restore");
}

RSNPCS jad = npcs.getNearest("jadIDhere");
if(jad.getAnimation == "jadanimationofmageattack"){
mouse.click("co-ords, of prayer tab", true);
mouse.click("co-ords, of mage prayer", true); //uses mouse.click so it does it right away, no mouse movement delay
}

if(jadgetAnimation == "jadanimationofrangeattack"){
mouse.click("co-ords, of prayer tab", true);
mouse.click("co-ords, of range prayer", true);
}

Then it will drink the super restore if less than 10 prayer and auto change prayers, pretty much doing jad automaticly, just have to get up to jad legit. Am I incorrect in thinking that?

P.S. I'm writing this 9:38 my time and like 2AM US time, I'm tried as shit and this code is just an example, lots of it is incorrect (E.G. not defining the item in the inventory, just "inventory.doAction" isn't a command.)
 
It's correct. You can google GFX/Anim lists.
 
Echoes said:
You have a point.
You should consult a scripter.

I don't know any expert ones, I only know the basics /cry

Maxie said:
It's correct. You can google GFX/Anim lists.

I may code it for powerbot (only bot I know how to code in) but that's getting 'hacked' soon so meh, anyone know a tutorial on how to code in rsbuddy?
 
Aren't all RuneScape bots coded the same, using Java?
 


Rsbuddys scripts is waaaay more advanced. But check on RSBuddys forums.


@"Echoes"
Yes they are, but different clients run different scripts and their actions are different, if I am right.
 
Echoes said:
Aren't all RuneScape bots coded the same, using Java?

Yes, but they have to tell the client what to do, E.G. in powerbot to get it to mine would be:

RSObject nameYouWantToCallTheRock = object.getNearest("rockID");
object.doAction("Mine Rock");

That'd get the powerbot client to define "nameYouWantToCallTheRock" as a RSObject that searches for the nearest object in runescape with the ID "rockID" then clicks on that object and selects "Mine Rock", in other clients you'd go about coding that in a different way.




Didn't look that advanced from the sourcecode I downloaded of one of their mage scripts.
 



Download uberDungeon.
 
For maxie:

to compare rsbuddy and powerbot:

"Dropjunk.java" from one of their scripts:

Code:
public void execute() {
            for (Item item : Inventory.getItems()) {
                if (utils.arrayContains(GameConstants.junk, item.getId())) {
                    item.interact("Drop");
                    sleep(random(600, 800));
                }
            }
        }

Me coding a quick one in powerbot:

Code:
public void dropAll() {
inventory.dropAllExcept("hunterItemNeededEGBoxTrap");
}
 
Can't see whole code on phone.
 

One's 8 lines one's 3 lines, but really one's 4 lines and one's 1 line (ignoring the closing sections } and opening the class (I think it's called))
 
Stupid.

Do i get a prize?
 
I still have no idea why you put
Code:
[b][/b][b][/b][b][/b][b][/b][b][/b][b][/b]

i was just going to put stupid.

then i realised, im the only guy who did what you said, I WANT A PRIZE
 
what kind of code is this? java?
 
i have no idea how to code

java hard?
 
Automatic Coding said:
Famoushope said:
i have no idea how to code

java hard?

Pretty easy.

how long would it take to learn basic powerbot scripts?
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…