-
Posts
5883 -
Joined
-
Last visited
-
Days Won
18 -
Feedback
100%
Everything posted by Botre
-
What did you do with my small loan of 1 million dollars?
Botre replied to NoahTheWeebWolf's topic in Spam/Off Topic
@Noah Stfu, beta. -
What did you do with my small loan of 1 million dollars?
Botre replied to NoahTheWeebWolf's topic in Spam/Off Topic
How the rest of the world feels about you. -
Here's a preview of a couple of tools I'm working aiming to improve scripting productivity. Flare An API crawler tailored for botting APIs. Can be used in conjunction with SAPI (see below) to dynamically invoke methods and create instances through reflection. Use(s): API exploration, debugging, ... RS Paint Application designed to draw in java 2D via an interface. Will support classical graphical objects such as shapes and text and script-specific objects such as progress bars. Use(s): paint building. SAPI Library aiming to provide fluid bot-game interaction. Allowing you to select ingame objects of various types. Use(s): alternative to classic GUI input, debugging, .... Simplog Microframework for more clear logging / debugging.
-
inb4DamonGetsItAndEveryoneRagequits
-
What do you think of them in general? Broad subject, I expect broad to specific reactions.
-
A way to filter the scripts (free/premium/vip+) would be nice though.
-
This was annoying af. I started off building it around javax.swing.undo but holy guacamole that package is pure aids. Also my cursor isn't reacting to resize / move events because I'm in the middle of refactoring
-
You're confounding left and right What's wrong with liberty and equality? Socialism and communism are rather different beasts. http://www.amazon.com/Politics-Book-Ideas-Simply-Explained/dp/1465402144
-
No, not really. Anyway: Marxists socialism = totalitarian extreme socialism, abolish capitalism and rebuild a greed-less economy from its smoldering remains. Democratic socialism = democratic soft socialism, reshape the capitalist economy so it does not exclusively benefit the capital holders, reduce the wealth gap. Democratic socialism is much more subtle and soft and realistic. Marxist socialism is pretty much extinct in western society but people still use it's image and failed history to bash democratic socialism, mainly because they share the same name, other than that they are quite different. The differences are of course not this black-white and some people might disagree with these (rather vulgar) definitions :p
-
They can't ban players for not showing fatigue. Think of all the rs cokeheads. I don't know.
-
I'm not offended by his words. I'm not triggered by his vocabulary. Don't turn me into a "political correctness" freak, I'm far from being that, matter of fact I find his frankness to be the only thing that's even remotely attractive. What I do have a problem with are his idiot ideas and convictions. And that's why I don't like him, my "hate" is motivated by rationality, thought and comparison so no.. I'm not just "hating for the sake of hating". You're right, Trump represents the socio-economical "Alpha" class, a class most of us will never be part off. If you're not a millionaire or a creationist, you probably should not vote republican. Most republican voters are convinced they will one day be part of the socio-economical "Alpha" class and think their vote is a political investment they will later benefit from, turns out 99% of them won't, make that 99.99%.
-
It really wouldn't make much sense for popular mass media to be openly right leaning, since the republican party does not represent the masses at all. Yes I'm sure his campaign manager made him retract the statement. How about his 30 other similar tweets on the subject? Trump has for years used words like "hoax," "canard," "mythical," "con job," "nonexistent," and "bulls---" to reject mainstream climate science http://uk.businessinsider.com/donald-trump-china-created-climate-change-2016-1?r=US&IR=T Most of his statements are pure idiocy. Making this guy your leader will end the american hegemony.
-
Trump is far from being a god of Business, his moneymaking methods are mostly reckless and archaic, keeping the money he inherited from his pop in a savings account would have been more rewarding at this point. Also social democracy is not socialism. This guy is just nuts, sorry. Rand Paul was my republican favorite as well... The remaining republicans are a joke, a creepy joke.
-
Trump is a dangerous, egocentric, uneducated, arrogant, power hungry reality TV star who inherited a lot of money and wasted a lot of it. He's out of touch with the average american. Also... Median income would soar by more than $22,000. Nearly 26 million jobs would be created. The unemployment rate would fall to 3.8%. Source: http://money.cnn.com/2016/02/08/news/economy/sanders-income-jobs/
-
Bernie > Hillary > Trump Trump is a dangerous sociopath.
-
I have to say your code is very readable and the presentation of your question makes it fun to answer it. A few tips: Config.enableCombatPot) Avoid using static variables to store configuration or instance-specific state values, when running multiple instances of the same script the last launched script's values will override the values of all older instances. Create a configuration file for each script instance. http://stackoverflow.com/questions/413898/what-does-the-static-keyword-do-in-a-class getDepositExceptions().contains(i.getName()) A small tip: "contains" tends to be less efficient than "starts with" or even "equals". https://docs.oracle.com/javase/tutorial/java/data/comparestrings.html i.interact("Deposit-All"); Script.sleep(Script.random(350,500)); Sadly enough, interactions do fail sometimes, you sleep should be conditioned by the success of the triggering interaction. if(interact()) { sleep(); } Not a big deal though. getNeededSupplies() This method contains the least elegant code of the snippet, it would greatly benefit from some struct magic. ... Init Supply lobster = new Supply("Lobster", 15); Supply attackPotion = new Supply("Attack potion(3)", 1); List<Supply> supplies = new ArrayList(); ... Feed list supplies.add(lobster); supplies.add(attackPotion); ... In bank for each(Supply s; supplies) if(s.shouldRestock()) getBank().withdraw(s.getName(), s.calculateRestockValue()); Your map solution works, but there's so much duplicate code that it could become hard to maintain after a while.
-
I'm not sure drawPolygon will work if the position's Z coordinate is not 0 (could be wrong). If this is the case you could use: Polygon p = position.getPolygon(getBot(), myPosition().getZ()); if(p != null) g2d.draw(p); Which I can confirm DOES work on with all planes. Cheers
-
Premature optimization is only an anti-pattern if the cost of the optimization outweighs the benefit. Me picking the best solution over the worse solution in this case and at this point doesn't cost me anything extra because.... ... I already know the best solution and can implement it as fast if not faster than the lesser solution. Since the optimization didn't cost me anything, the cost can't outweigh the benefit and this is there not a case of antipattern premature optimization but efficient optimization tout-court. *tokens only, push to reject* I'm just playing lel, let's stop this cockfight.