Leaderboard
Popular Content
Showing content with the highest reputation on 02/24/16 in all areas
-
5 points
-
5 points
-
Can we terminate Bernie Sanders from running? This guy is a complete joke! Opinions please...3 points
-
3 points
-
3 points
-
If you actually listen to what Trump says and not what the media says, trump wants to close the borders to Muslims UNTIL the national security people can come up with a way to make sure the muslims are properly vetted so that no members of ISIS or radical Islamists are able to get in. And take a look back years ago during WWII, the democrat in the white house at that time put Japanese in internment camps. Just a suggestion, don't believe everything you hear in the news, the news is very biased and as a whole is left leaning. Listen to speeches yourself from people and decide for yourself. This isn't me saying I support Trump either, I'm just saying you should look into things instead of just spouting what the media says, because most of the time they will skew things to make you believe what they want you to believe /endrant3 points
-
3 points
-
NEW: Released Chop & Firemake plugin Added 8 Forestry events!!!!!!!! Easy 99, Next! Map Chooser System Progress Results! Help How to use this with Bot Manager? Script ID is 631, and the parameters will be the profile you saved in the setup window, e.g. oak15.txt I want a new feature added? Make a post below and I am always listening, within reason! The bot is doing something I don't like? Make a post below and I will adjust the code to match your play style!2 points
-
2 points
-
2 points
-
all the candidates are dog shite if hillary gets elected im moving to canada tho2 points
-
Unfortunately my candidate Rand Paul dropped out of the race, I'll have to look through the candidates to see who I want now. Might just vote for the libertarian candidate.2 points
-
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/2 points
-
I know this isn't saying much, but In a WORST case scenario, Trump > Hillary > Bernie (If I had to choose between the 3 and don't consider any of the other candidates)2 points
-
Ban doesn't help, but I would say you can still get at least 150 for it2 points
-
The real question is, why didn't you request a trial for this bot first? :P This is the #1 most popular magic bot on the market by far, and is the only magic bot with both normal and lunar spellbook support Done - good luck 24 hours Should be visible in version 0.68 of the bot, I made a new thread for air orbs since it will be a separate bot in the future (and I need to separate script feedback/testing etc)2 points
-
the fact your worried about getting in trouble... Makes me think you shouldn't try beating anyone up2 points
-
2 points
-
Sounds like he didn't learn the first time. Hospitalize his bitch ass and let him learn his place this time around.2 points
-
daymn it sounds good, ive been training by hand in waterbirth last 3 days after i got my slayer to 55, i dont wanna use west/east cos ppl like talk there and not looking to get banned really fast after that 55 slayer grind ... im almost ready to kill myself lol, gotta get dat bot! : D2 points
-
Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Task/progressive based setup - Gem cutting - Amethyst cutting - Glassblowing - Molten glass smelter - Armour crafting - Jewelry crafting/smelting - Jewelry stringing - Battlestaff combinging - Flax picking + spinning - Drift net weaving - Hide tanning - Shield crafting - Birdhouse crafting - Clockwork crafting - CLI support for goldfarmers Custom Breakmanager: - Setup Bot and break times - Randomize your break times - Stop script on certain conditions (Stop on first break, Stop after X amount of minutes, Stop when skill level is reached) - Worldhopping - Crucial part to botting in 2024! Script queueing: - Support queueing multiple script in a row - All Khal scripts support flawless transitions in between scripts - Start creating your acc in a few clicks from scratch to multiple 99's - Flawless CLI support - Learn more here: How to use CLI parameters: - Example Usage: -script 666:ScriptFile.BreakFile.DiscordFile SAVEFILE = Saved Filename BREAKFILE = Breakmanager Filename - SAVEFILE: Save file can be created in the GUI. Navigate to the tab you want to run and press "Save As CLI file". Please choose your filename wisely (No special characters) - BREAKFILE (Optional): Breakfile can also be create in the GUI, set the breaksettings you wish to use and press "Save new CLI BreakFile". Please choose your filename wisely (No special characters) - Final form (Note that with some bot manager you do not need to specify -script 666): -script 666:TaskList1.4515breaks (With breaks) -script 666:TaskList1.4515breaks.discord1 (With breaks & discord) -script 666:TaskList1..discord1 (NO breaks & discord)1 point
-
1 point
-
This is where the moderation queue is really busts my nuts lmao1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
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%.1 point
-
Main.java lets u add a TaskScript. In main you can add(new TaskOne()); In side of TaskOne you have isActive which makes that specific task active when it return true. It also contains the looped code for said task. With it, you can write several "Tasks" or scripts that can all be added to the queue and ran within the main.java. I usually separate different tasks within a single script into different taskscripts, but you could also use different taskscripts as different scripts. For example, TaskOne() onActive() returns true if if the bank contains less than 500 bows, and will cut logs into bows, TaskTwo() might return true if you have 500 + bows in the bank, and could be set to perform a different task, like begin alching the bows. In this case I guess you could say you have two different scripts all within the same script. One for fletching, one for alching. Main: public void onStart() { super.onStart(); Settings settings = new Settings(this); settings.setCallback(b -> { start = System.currentTimeMillis(); //addTask(new Task()); addTask(new EatTask()); addTask(new OpenBankTask()); addTask(new BankingTask()); addTask(new SpiritTreeTask()); addTask(new GrandTreeTask()); addTask(new LadderOneTask()); addTask(new DaeroTask()); addTask(new WaydarTask()); addTask(new LumboTask()); addTask(new WalkToDungTask()); addTask(new WalkToSpotTask()); addTask(new CombatTask()); }); } In this case, I have different tasks for different steps in my script. These could easily be replaced with completely unrelated tasks, allowing you to have multiple scripts in one. Example Task import lemons.api.tasks.templates.AbstractTask; public class Task extends AbstractTask { private final long startAmount; @Override public void onStart() { super.onStart(); } public void onTaskStart() { //setup code startAmount = getInventory().getAmount(995); } public void run() { //code is looped getInventory().interact(995, "Drop"); } @Override public void onTaskFinish() { } @Override public boolean isActive() { return (getInventory().contains(995)); } }1 point
-
1 point
-
1 point
-
1 point
-
Yes I will be updating the thread for a guide on how to retrieve highscores. The highscores will also be expanded so in the future you can navigate to find other bots vs other highscores. There will also be a status update for the monthly prizes which will be beginning as soon as everything has been setup Here is a preview of the highscores for your account: is that accurate ?1 point
-
1 point
-
1 point
-
x.x sad that you almost have to keep an eye on if a member you've purchased an account from gets banned or not. Seems like as soon as they do they try to recover everything... Sorry to hear1 point
-
Hello! Czar i want to try this ranging guild script + i would appreicate for (48h) as i'm asking for it ! (24h) will do fine, but i was thinking about buying it so wanted to try 2days! MEMBER NUMBER:153806 MAKE SURE TO LIKE THIS SO I REALIZE THAT YOU HAVE GIVEN ME THE TRIAL!1 point
-
Thanks for the trial again Khal! The script is working perfectly and I'm definately buying it after my trial ends!1 point
-
1 point
-
1 point
-
Wait did you get a recovery check? I spent $30 on an OMM and recovery check from Sythe and it was successful. (30 because the canadian fucking dollar is low as shit)1 point
-
1 point
-
1 point
-
Class: package temp; import java.awt.BasicStroke; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Observable; import javax.swing.Timer; public class MarchingAnts extends Observable { private BasicStroke stroke; private float dashPhase = 0f; private float dash[] = {5.0f,5.0f}; private ActionListener listener = new ActionListener() { @Override public void actionPerformed(ActionEvent ae) { dashPhase += 9.0f; stroke = new BasicStroke(1.5f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_MITER, 1.5f, dash, dashPhase); setChanged(); notifyObservers(); } }; public MarchingAnts() { stroke = new BasicStroke(1.5f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_MITER, 1.5f, dash, dashPhase); } private Timer timer = new Timer(40, listener); public BasicStroke getStroke() { return stroke; } public void startAnimation() { timer.start(); } public void stopAnimation() { timer.stop(); } } Example: //Declare private MarchingAnts ants = new MarchingAnts(); ... //Start animation ants.startAnimation(); ... //Add observers ants.addObserver((obj, obs) -> repaint()); //repaint() method from a painting component ... //Use stroke g2d.setStroke(ants.getStroke());1 point
-
1 point