Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Never diss anyone for coming back to OSBot
  2. Javacadabra I plan on starting up a series of workshops, tutorials and coaching sessions to OSBot users who are willing to learn Java from absolute scratch (through scripting). Before I start any sort of organization I would like to gauge the community's interest and brainstorm a little with y'all WOULD YOU BE INTERESTED IN THIS? DO YOU HAVE ANY IDEAS REGARDING CONTENT AND/OR PRESENTATION?
  3. Because university prepares you for academical programming, not (high-level) enterprise programming. In an enterprise setting, you are rarely the one solving the business problem (the math part for example), as a developer you get to implement it (which comes with its own set of challenges).
  4. I'm just saying that no runescape screenshot can be used as evidence because they are fake-able as fuck. Sorry but OSBuddy is not the magical solution here. It just isn't. Anyhow, could we please respect the OP and try to stay on topic?
  5. ^ Everything in this screenshot can be 100% reproduced in OSBot and other clients. I could literally decompile the OSbuddy source, take the code that generates its unique visual component and drop it in a script for pixel-perfect accuracy.
  6. It would be so easy to cook up some bot-client-friendly-code that will take screenshots (while you are botting) and automatically make them look like OSBuddy screenshots. Not only is it easy to falsify that kind of evidence, but you can easily write code to do it for you. Don't waste your time with screenshots please :p
  7. An enum type member is implicitly static and final, it will always reference the same object. I never ever want to see enum comparison with the equals method again. Use "==". Let's create a simple Animal enum: enum Animal { DOG, CAT, MOUSE; } And a Cage class: class Cage { private final Animal animal; public Cage(final Animal animal) { this.animal = animal; } public final Animal getAnimal() { return animal; } } The following will thrown a null pointer exception: Since the first cage's animal is null, calling the equals() method on it will throw an exception! new Cage(null).getAnimal().equals(new Cage(Animal.DOG).getAnimal()); The following will return false: The first cage's animal is still null, however "==" is not a class method but an operator that allows null on both sides. You are not calling a method on null, therefore no exception will be thrown new Cage(null).getAnimal() == new Cage(Animal.DOG).getAnimal(); The following will return true: new Cage(Animal.DOG).getAnimal().equals(new Cage(Animal.DOG).getAnimal()); The following will also return true: An enum type member is implicitly static and final, it will always reference the same object. You can safely use the "==" operator! AND ALWAYS SHOULD new Cage(Animal.DOG).getAnimal() == new Cage(Animal.DOG).getAnimal();
  8. Always use different passwords and change them every 4-12 weeks.
  9. https://docs.oracle.com/javase/8/docs/api/java/util/function/BooleanSupplier.html
  10. Bre. Swizzie is back. :love:
  11. Maven takes care of every thing. Fill in pom.xml. Optional (in case you don't have auto-update enabled for maven): Right-click project -> maven -> update project. Maven will download everything that is required and add it to your project. Start coding.
  12. Yes it was the wrong way to do it, you can google Gradle if you want to learn more but I would deffo suggest Maven over Gradle: Create new Maven project, open pom.xml, paste the dependency, done.
  13. How did you import the lib? Jar? Maven? Gradle? Edit: then right clicked gradle project in project explorer and exported as a jar, then imported that jar into my projects libraries. Don't do that... Google how to use gradle :p Or just use maven: <dependency> <groupId>com.google.maps</groupId> <artifactId>google-maps-services</artifactId> <version>(insert latest version)</version> </dependency> Maven is love.
  14. Immigrants might be broke and jobless, who cares? Upper class mexicans would be poor in the USA anyways and most jobs aren't very suitcase-friendly, dreams, ambition, drive, new ideas and diversity however... Einstein was an immigrant. Do you also think he migrated because he was just being too much of a talentless leech back in his homeland germany?
  15. 1 friend who lives in mexico. Good source 10/10. How can you realistically expect mexicans to "make it" at all in a country that can't even provide decent welfare to its citizens and is plagued by corruption at every single social layer? Mexico's middle class lives in slums. The "only talentless people migrate" speech is a joke. When an american works hard and tries to get out of his shitty city apartment to upgrade to a suburban villa he is celebrated for pursuing the american dream. But when anyone else tries to get out of a ten thousand times more fucked up shitty shithole, that person's motivations are vilified. The land of opportunity? What a joke.
  16. Botre

    What?

    No gangs please.
×
×
  • Create New...