Jump to content

Psvxe

Members
  • Posts

    235
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Psvxe

  1. Missed the post. I get what you mean on that past and yes, you're right on most points. However, me as lazy customer, I just want to click one time and go with the flow. I've no clue if you save profiles but if so I don't really mind the clicking for one time. But I will choose a concurrent script if yours don't offer that. I just make sure food that shouldn't be used isn't on that account at all first. (lazy huh? )
  2. So, explain to me how you got that percentage. Anyways, to stay on topic: Since this is my personal opinion and I love to discuss about ideas, designs and logic don't take it personal. I think options offered in a GUI should be based on "extra's"- rather than "standard" features. If I want to bot something I just want to go straight to botting. I mean, if I would buy a script I would completely trust a developer on what features are build in and simply would hate if they would offer allot of "standard" options. It's like paying for a flying ticket. Do you want food, do you want to sit next to somehow you traveling with, do you want to sit near a window. Fuck off with the options and just give me the best of the best you got to offer. Options such as: Do you want extra leg space, do you want extra bag space, do you want champagne or whatever should be options I want to choose from.
  3. Pretty much this. Way too many options. Why wouldn't you use prayers, it's normal to use. If low def and getting meleed/ ranged/ maged use protect prayer. If higher def use prayers for boosting attack and strength. Don't really need options for that.
  4. Just a tip for the WebWalking (didn't check the whole script) INodeRouteFinder routeFinder; in your onStart() method routeFinder = INodeRouteFinder.createAdvanced(); then you can simply do public WebWalkEvent toBank = new WebWalkEvent(routeFinder, new Position(3092, 3243,0)); This will save allot of resources.
  5. Yeah i get that part but could you define what counts as interacting? like everything?
  6. public enum TestEnum { SAPPHIRE("Sapphire", "blue", 1222, false); //here we add the name, color, price and if it's a member item. private String name; private String color; private int price; private boolean isMember; /** * * @param name * @param color * @param price * @param isMember */ TestEnum(String name, String color, int price, boolean isMember){ this.name = name; this.color = color; this.price = price; this.isMember = isMember; } /** * * @return name */ public String getName(){ return name; } /** * * @return color */ public String getColor(){ return color; } /** * * @return price */ public int getPrice(){ return price; } /** * * @return ismember */ public boolean isMember(){ return isMember; } } inventory.getItem(TestEnum.SAPPHIRE.getName()); 2min work.Google how enums work for a better understanding.
  7. if(ctx.getDialogues.inDialogue()){ NPC n = ctx.npcs.closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return ctx.myPlayer().isInteracting(npc); } }); //do whatever you want. (n.getName()) } ctx is my MethodProvider.I didn't test the code nor do I exactly know what the isInteracting() method does. However you should be close. Of course there are better ways doing this but for now it will work. Or what the guy above me used!
  8. if(dialogue#inDialogue()) check id / name / index of npc Something like that
  9. Yeah there are sites to figure out what item is best to alch. If there is no site for that you can also make a program (trough Java as example) to get the best option. Use the Runescape market forums to buy items in bulk and you're ready to go.
  10. Go back to 9gag with your LQ posts giving no input on the matter at all, Idiot. Also talking about that post you made in the other thread in this section. OT: fixed yet?
  11. Psvxe

    Hi

    Depending on your English and Java knowledge I'm willing to help you learn the basic. However I'm not going to help you right away. As stated above what kind of script do you want to actually make and do you have past experience? What kind of help do you also need exactly? Nobody is going to write a whole script for you. Most people will give you a snippet to a certain issue or tell you what a good way to code a certain part of you script will be.
  12. As note: it's not always the best idea to break your walking when a certain tile is within your radius. Example: When you walk to a tile and your next code block is something like interacting with a npc it could be that npc have traveled to a different tile in the meantime. Now mostly the interact method will solve this by itself but for the example.
  13. Or just create a pause, stop, resume method. Isn't that hard.
  14. I'm feeling sorry for those guys responding on Twitch actually. They call him gay and virgin however he's the one calling with a pretty good looking girl, and they talk to each other, as nerds, on Twitch. Bravo.
  15. I'm not quite sure if a Quest script is the kind of script you should be working on. Assuming from the 5 threads you have asking for scripting help, I would suggest you to get used to the API first, and Java if your knowledge isn't enough to cover most simple issues you could walk into. (which would happen anyway) Now to your issue since I'm working on a quest script to: There is no good reason why you would actually close a interface like that. Most players simply click somewhere on the minimap to follow their path to a bank or whatever. It's not human-like at all. Rather just do whatever is next for the script to do or just logout after some random short time. (not instantly because that's not really human-like either.) Good luck.
  16. Why Thenewboston? That's like the one I would never refer anyone to, to learn Java.
  17. Just write whatever you want. You'll learn from that. Take something a bit harder than you think you can do. This will stimulate you to actually think about solutions to your problem. Eventually your experience writing scripts and hopefully your Java knowledge will grow. EDIT: Also, you should get rit of that framework as soon as possible!
  18. Psvxe

    Console

    Did you even declare it?
  19. get the npc index. I believe they are different.
  20. I don't think you choose your words right. 0% ban rate and suicide doesn't match. It's like the same as falling 100 times from a 60 feet building without dieing.
×
×
  • Create New...