Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/09/18 in Posts

  1. Nah I just come here to buy different colors for my name on the forums.
    10 points
  2. THIS THREAD IS FOR ENTERTAINMENT ONLY DO NOT TRY THIS WITH YOUR OWN CAPITAL UNLESS YOU DO NOT MIND RISKING IT! DAY 15/30 Main Goals Reach 10,000$ profit Reach 2,000$ profit Reach 1,000$ profit Reach 500$ profit Reach 100$ profit Reach 50$ profit Mini Goals Flip on at least 5 different exchanges (3 so far Binance, GDAX,coin exchange) Make 100% in 1 flip(X) Make 20% in 1 flip Make 10% in 1 flip Make 5% in 1 flip(x) Make 2% in 1 flip(x) Make 1% in 1 flip (x) Progress Legacy (*) -> This icon will be used to show images at the bottom of the day, for loses and none important flips (x) -> will be used to important images at the bottom of the thread Day 1 Day 2 Day 3 Day 4 Day 5 Day 6 Day 7 Day 8 Day 15 Day 16 coming soon... (x) Supporters No1
    4 points
  3. β™”CzarScripts #1 Bots β™” β™” LATEST BOTS β™” If you want a trial - just post below with the script name, you can choose multiple too. Requirements Hit 'like' on this thread
    3 points
  4. is your life even relevant if you dont atleast make like 500$ a week from runescape?
    3 points
  5. Want to buy with OSGP? Contact me on Discord! Detailed feature list: - Account builder mode to level your firemaking to level 50 or even higher. - Equips pyromancer gear option - Chopping and burning logs (base Option) - Relights brazier - Fletch option - Fix brazier option - Make potion and heal pyromancer when down option - Tons of food supported - Brazier swicthing when pyromancer is down - Advanced game settings to skip games, smart caluclate points, afk at certain points, ... - Bank or Open crates - Dragon axe special attack - Fletch at brazier option - Chop in safespot option - Worldhopping - 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 2023! 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 909: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 managers you do not need to specify -script 909): -script 909:TaskList1.4515breaks (With breaks) -script 909:TaskList1.4515breaks.discord1 (With breaks & discord) -script 909:TaskList1..discord1 (NO breaks & discord) Proggies:
    2 points
  6. ────────────── PREMIUM SUITE ────────────── ─────────────── FREE / VIP+ ─────────────── ──────────────────────────────────────────────────────────── ⌠ Sand crabs - $4,99 | Rooftop Agility - $5,99 | AIO Smither - $4,99 | AIO Cooker - $3,99 | Unicow Killer - Β£3,99 | Chest Thiever - Β£2,99 | Rock crabs - $4,99 | Rune Sudoku - $9,99 ⌑ ⌠ AIO Herblore - FREE & OPEN-SOURCE | Auto Alcher - FREE | Den Cooker - FREE | Gilded Altar - FREE | AIO Miner - VIP+ ⌑ ──────────────────────────────────── What is a trial? A trial is a chance for you to give any of my scripts a test run. After following the instructions below, you will receive unrestricted access to the respective script for 24 hours starting when the trial is assigned. Your trial request will be processed when I log in. The trial lasts for 24 hours to cater for time zones, such that no matter when I start the trial, you should still get a chance to use the script. Rules: Only 1 trial per user per script. How to get a trial: 'Like' this thread AND the corresponding script thread using the button at the bottom right of the original post. Reply to this thread with the name of the script you would like a trial for. Your request will be processed as soon as I log in. If i'm taking a while, i'm probably asleep! Check back in the morning Once I process your request, you will have the script in your collection (just like any other SDN script) for 24 hours. Private scripts: Unfortunately I do not currently offer private scripts. ________________________________________ Thanks in advance and enjoy your trial! -Apaec.
    2 points
  7. Wanna trade it for my BartSmit giftcard?
    2 points
  8. 2 points
  9. This is the free version of APA AIO Cooker For many many more locations and special food items consider the full version of the script for only $3,99! Screenshots: _________________________________________________________________________________ A special thank you goes to @Dex for helping test this before the free release.
    1 point
  10. So you want to files, huh? M'kay. Example code: import java.io.IOException; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "", info = "", logo = "", name = "Chicken Killer", version = 0) public class ChickenKiller extends Script { OSBotFileAPI osbotFile; String profile; @Override public void onStart() throws InterruptedException { initialiseCustomAPIs(); iWantToOpenAFile(); iWantToSaveStuffToAFile("Hello world!"); } private void initialiseCustomAPIs() { osbotFile = new OSBotFileAPI(); osbotFile.exchangeContext(bot); osbotFile.initializeModule(); } private void iWantToOpenAFile() { try { profile = osbotFile.open(); logger.debug(profile); } catch (RuntimeException | IOException e) { logger.error(e); } } private void iWantToSaveStuffToAFile(String stuff) { try { osbotFile.save("Hello world!"); } catch (RuntimeException | IOException e) { logger.error(e); } } @Override public int onLoop() throws InterruptedException { return 250; } } Testing: Folder is automatically created if it doesn't exist: I manually created a text file for testing and added it into the script data folder: I re-ran the script so that I could now select something: And then the script did a little save testing with the same file: Functions: public boolean folderExists() protected synchronized String readFromFile(File file) throws FileNotFoundException, IOException public synchronized String readFromFile(String filename) throws FileNotFoundException, IOException protected synchronized void writeToFile(File file, String fileContent) throws IOException public synchronized void writeToFile(String filename, String fileContent) throws IOException public synchronized String open(FileFilter fileFilter) throws RuntimeException, FileNotFoundException, IOException public synchronized String open() throws RuntimeException, FileNotFoundException, IOException public synchronized void save(FileFilter fileFilter, String fileContent) throws IOException public synchronized void save(String fileContent) throws IOException public synchronized boolean deleteFile(String filename) Source:
    1 point
  11. yeah i can save myself by saying that was the 'joke' part but..
    1 point
  12. 1 point
  13. Looks like you got it sorted out. Another thing worth watching out for is making sure you don't have multiple script files in the folder with the same manifest name. Apa
    1 point
  14. Update Version 1.03 Fixed type with 'Mort myre fungus' Re-scaled/Adjusted UI to more convenient dimensions Fixed component border issue in UI Please allow up to 24h for this update to go live to the SDN. As usual, if you would like access to this updated version immediately, the updated code can be found here -Apa
    1 point
  15. Whisper me a number bbi ill prob be cheapest
    1 point
  16. 20m 0,9 PP skype live:ironndead
    1 point
  17. @axldeth After or before banking the lobsters? I will be able to fix this either tonight or on my lunch break today. Thanks for bringing this up!
    1 point
  18. There may have been several issues due to the recent updates but on Sunday the last batch of bug fixes I pushed was approved The failure to set spells was 100% fixed (code broke on last game update, new version is live) and a few quests where the bot had issues with "Gate" obstacles (The Tourist Trap), may be the case with Waterfall Quest since there is a gate just before boarding the raft and also Ernest the Chicken, I'll be doing some extensive testing as I noticed many changes in the game but let me know if you have any more issues Authed Authed I think so Authed Thanks that's all I needed, pushing an update for that right now Yes, monkey madness is not planned atm Authed Authed Authed
    1 point
  19. Also, dont forget to brush your teeth before going to bed!
    1 point
  20. Does this script support the use of a looting bag in the wildy? Can you also make it so it only loots the bones?
    1 point
  21. Selling 15M for .90$ Paypal Only!
    1 point
  22. -Added Clan Wars -Added Energy and Super Energy potions
    1 point
  23. Can i have trial of this ?
    1 point
  24. he is currently almost finished updating it, just be patient like us all
    1 point
  25. Wow just bought the full version of this script and it looks like a waste of money.. script is very slow to react to anything and has let the activity bar drop to 0 multiple times because it decides to run to the other side of the map and back accomplishing nothing, then when the game is done it sometimes wont click the plank straight away causing it to wait an extra few mins in the boat -..- please fix dude
    1 point
  26. Thanks for forwarding that on to Alek, that works well now. Just making observations as I run the script; Please add the ability to plant limpwurts - before you can grow watermelons (47) limpwurts are better than Nasturtiums. Port phasmatys patch, not as many players have it but its a huge bonus to those that do. Interaction with the leprechaun leaves a lot to be desired - basically only uses it for noting herbs, would be excellent if at the start of a run it deposited a full load of compost buckets and took them out as it needed to minimise the number of trips to the tool leprechaun when harvesting. At the start of a run, if you inventory becomes full, it just stops doing what it is doing, eg if I start my run and i have one slot left (because of all of the compost, seeds, tools etc), it will harvest, get a full inventory, note the item and still have a full inventory - the above suggested leprechaun interaction would resolve this. Sometimes it gets stuck when interacting with patches - possibly due to them not being visible on screen, will have more details the more i use it. Edit: yeah gets stuck at ardougne sometimes if it has to note items at the leprechaun because it cant see the second allotment. Add option for 0 plant cure Having issues with inventory space, super inefficient due to this. Will tele to get more plant cure, then run back to a patch even if you have finished everything at the patch, then move on to the next patch. It should set timers etc BEFORE it teles to get more cure.
    1 point
  27. http://prntscr.com/hx6a6k Idk i dont see any errors or sth , but motherload don't work :(, maybe its problem with my client ? and i don't know why i see glitched options And i didn't tried trial couse this don't work for me Im confused should i buy or not
    1 point
  28. Just bought this script; used it several times on starter accounts and it's AMAZING!!! you may have to babysit it a little it gets stuck everynow and then but besides that! let it run and youll come back with 90+ quest points. Keep it up @Token can't wait to see the more updates you have coming soon for the best script in the game. THANK YOU oh no... really? which quests so I can watch myself and make sure it doesn't happen to me as well.
    1 point
  29. Very nice account, to be realistic you'll never get someone paying 600$ for this account. In my opinion you'll get around 400$ max PAID on your account. Ppl may offer 600 here 650 there, but they are not actually paying it. Thats just the community we are in atm. Greetings, Dailysmoker
    1 point
  30. Gotta learn somewhere tho, and trying is the best way to learn imo
    1 point
Γ—
Γ—
  • Create New...