Jump to content

Eliot

$100.00 Donor
  • Posts

    4523
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    100%

Everything posted by Eliot

  1. As far as I know CloudFare is not effective if the actual web server IP is known by the DDoS attacker, which I assume it is.
  2. Basically nobody knows the exact way in which we are banned, people like to come up with things they think cause bans and state them as facts. One might assume that the less people using a script means the less chance the script has been profiled by Jagex. We just don't know for sure. Also, thanks for being a dream customer!
  3. Eliot

    Veteran

    Because you have 77 posts. See this thread for more info: http://osbot.org/forum/topic/50019-understanding-the-forum-ranks/
  4. You don't have any of the scripts you've bought? Are you sure? When you load the client and open the script selector do you see nothing?
  5. Mouse trail debug doesn't work when the script is running afaik.
  6. That is definitely a cleaner solution, but I feel my example code may be a bit more clear to someone asking a question such as this.
  7. Is anything getting logged? If not, add more log statements to see what is executing.
  8. Declare them outside of that method all that code is in (above the onStart). Also in the button listener do not REDECLARE just change the value i.e. not final String eLocX =, just eLocX = This should work for you.
  9. Declare startLocX and endLocX outside of the button.addActionListener function. Perhaps right above that try: String startLocX = ""; // then inside the buttonListener startLocX = // whatever When you declare and initialize the variable inside the function its scope is limited to just that function and nothing outside of it will know it exists.
  10. Why is startLoc/endLoc a two dimensional array? It looks like it just needs to be a regular array of Strings. Also, we want to populate our JComboBox with an array, not a single string. As such, we pass the entire array not just the first element. final String[] startLoc = {"Lumbridge", "Varrock", "Falador", "Al Kharid", "Draynor Village"}; JComboBox<String> sLBox = new JComboBox<>(startLoc); final String[] endLoc = {"Lumbridge", "Varrock", "Falador", "Al Kharid", "Draynor Village"}; JComboBox<String> eLBox = new JComboBox<>(endLoc); We should not reassign startLoc's value, make a new variable and assign it to the select value! String startingLocation = sLBox.getSelectedItem().toString(); String endingLocation = eLBox.getSelectedItem().toString(); Now we have the String representation of both the ending and starting locations. if (startingLocation.equals("Varrock") && endingLocation.equals("Lumbridge")) { // do stuff! } I would suggest reading up a bit more about how all these components (arrays/Strings/2D arrays/combo boxes) work to get a better understanding of the Java language, but I hope what I provided helps you with your script.
  11. Perhaps try doing this with a conditional sleep, something like below might give you a rough idea of what you could do. //declare this earlier boolean isAnimating = false; // later, use something like this to check if you're animating. // play with the sleep values to get it just right. if (!script.myPlayer().isAnimating()) { new ConditionalSleep(1200, 1700) { @Override public boolean condition() throws InterruptedException { isAnimating = script.myPlayer().isAnimating(); return isAnimating; } }.sleep(); } if (!isAnimating) { // we are done animating } else { // we are still smelting }
  12. Yes you can purchase private scripts for money, this is not in violation of the current OSBot rules. You don't have to call it a donation. It's unclear if people can make threads asking for them, so I will allow this thread to stay, an admin or dev may of course do as they please, though. I may be interested, feel free to PM on OSBot or add my Skype: eliot.script
  13. @bellic please post the skype profile on desktop showing the skype name so we can see if it was an imposter or not.
  14. The staff has decided not to remove the feedback. Your customer was not pleased with the experience you provided and has left his thoughts as a caution to other users.
  15. I found fletching is one of the skills that generally results in less bans from botting.
  16. @Divica seems to have caught up on payments. If anyone feels they have been scammed feel free to make a new dispute for yourself.
×
×
  • Create New...