Jump to content

Mysteryy

Scripter II
  • Posts

    2568
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Posts posted by Mysteryy

  1. You should use names instead of id's , cuz they always screw up..

     

     

    I always use item names if applicable. In this case I used the names and not the ids. Like I said, it works for some random amount of time and then randomly will bank all. One guy said it worked for 5 and a half hours and then it decided to bank the runes. Its weird >.>

  2. I have a couple scripts that use deppositAllExcept() and many people are saying that it is banking everything. For example, my woodcutting script, some people are saying that it banks the hatchet sometimes. And for my magic script, people are saying that it will just randomly bank the runes. One person even had a screenshot that it ran for 5.5 hours, and then randomly banked all of the runes. This shouldn't happen, and has never been an issue before. Anybody have any insight on this?

  3. It is possible that you would be able to follow guides/tutorials and create some simple bots, but that is barely the tip of the iceberg. You have to be able to understand the code, and how to expand it do make it do what you want it to do.

     

    Learn to lay a brick before you try to build a house. ^.^

  4. I think the ent random is suppose to be taken care of by the script writer, not the client. I could be wrong though, that's just how it use to be. 

     

    You are correct. The script maker should handle the ENT's. What script are you using?

  5. This is great. I was about to write my own walking methods then I was like hmm, lets see if anyone is nice enough to share theirs. :D Thanks man, its working great, im implementing it in a script now!

  6. Use it like so.

    New java class (call it what you want)public class NAMEHEREConditionalSleep extends ConditionalSleep {

    private final Script SCRIPT;

    public NAMEHEREConditionalSleep(int arg0, Script script) {

    super(arg0);

    this.SCRIPT = script;

    }

    @Override

    public boolean condition() {

    return CONDITION HERE(If this is true, it will sleep.);

    }

    }

    An example of a somthing to put in CONDITION HERE would be

    return client.getMyPlayer().isAnimating();

    Now whenever you call you conditional sleep, and your playing is animating, it will sleep until he stops animating.

    A new class isn't needed... very inefficient and doesn't follow oop
    as for the doesnt follow loop part, it is only called from within the loop, so yeah it does follow the loop.
    Dumbass oop stands for Object-orientated programming, why don't you learn it?

    might aswell continue it here

    He never asked for anything related to oop. He simply asked fora code like the one 5uck gave. By nature java is an oop language, it doesn't matter if he used objects here or not. Sooo learn2geteducation before trying to act like you know anything about anything.
    Lol your joking right? i did this because he came n commented on my shit

    i never asked for his opinion on my shit

    Do you know the concept behind OOP? creating a new class for each check definitely does not follow an OOP design or isn't organized

    "He never asked for anything related to oop", this should be expected when releasing java code

    You should realize that classes are part of Java making them part of oop. You think your methods are better and he thinks his are better. He has multiple very successful scripts, so I would follow his over yours. If it works it works. Get over it.
    Omg are you serious? OOP is a programming concept that you take into consideration when writing a java program

    just because java is a object-orientated programing language doesn't mean that the concept should be thrown out

    Why don't you learn what i'm talking about before you comment back with ignorant replies. i never said my method was better than his i simply simplified what he has and said what he is doing is completely unneccassary

    Lolol someone doesn't like to be wrong.

    Objects of the same orientation or purpose should be classed together, try n learn what the factory concept in java is then come back
    Lolol. Do you even know how to make an object? Do you even know what object attributes are? Have you even heard of an object constructor?

    Get a brain then come back.

  7. If you are wanting to learn to make scripts, you can start in java. If you have any programming background, or desire to learn java, you can learn the basics. Which is really all you need to make simple scripts. 

     

    if(you want to do something){

         do it;}

     

     

    Thats about how easy it is to make a basic script XD

    With the exception of having the refer to the api and what not. 

  8. Idk whats wrong with people these days.

     

    Lawl. I posted on his thread showing why he is so horribly wrong. I wonder if he will even understand what I said, or just get defensive and say that he is right. 

  9. I am having an issue with the client.getBank.getAmount() It sometimes thinks that things are not in my bank. For my superheating script, it thinks that it is out of ore sometimes when there is still ore in the bank. Never did this before runescape updated bank the other day. 

    • Like 2
  10. For randoms, dont worry about it. The client handles them. For anti ban it is intuitive. Add things that you do when you play. The whole point of anti ban is to do human like things. Check friends list, check skills, rotate screen up down and side to side etc.

  11. im not sure if this is the right section or not but i am in need of a scripter that can make a bot fr me that can make 500k+ ph

    if interested post or pm me some of your previous scripts

    Pm me and ill see what's up. I can make it.

  12. How does this help/affect your bots/computer? Sorry I'm not so good with computers :$

     

    Please don't say it reduces memory leak because idk what that really means either smile.png

     

    I explained this if you look on the first page of the thread. It just frees up more ram for your pc to use on other things. That is assuming there is a memory leak. Either way I think it will help for low ram computers. I have 16 gigs so I dont use this often :P

×
×
  • Create New...