Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/08/18 in all areas

  1. @Evade > What is the best language to start with? Best first language is fairly subjective, and I don't really think there is a "best" first language. I would probably recommend starting with Python, just because the syntax is much simpler than other languages. I personally started with Java, the learning curve is, in my opinion, steeper than Python, but it isn't ridiculously difficult or anything. > If you do it as a job are you free lancing or do you work for a company? I'm working for a company, most people do at the start. You need to gain experience in the field before people will trust you as a freelancer. You can gain that experience by working for a company, or by having a significant portfolio of projects that you can show potential clients. > Do you have any general tips for someone looking into programming? Just keep putting in time. Programming itself is not particularly difficult, it just takes a long time to get good at, the same with any other skill. I think the general rule is 10,000 hours to master something right? Pretty much everything you need to know about programming can be found online, either in documentation, on blog posts, tutorial websites or StackOverflow etc. Just learn how to efficiently Google what you want to know, and you can easily answer all your questions. Once you have the fundamentals down, just start building stuff. The best way to learn is by trying to build something, getting stuck, finding the answer, repeat. Eventually you'll find that you start to get stuck less. Don't just stick to one thing, explore building web apps, mobile apps, desktop apps etc. etc. If you enjoy it, then think about taking formal education in Computer Science or Software Engineering. There is more to creating software than just programming, there's a lot to learn, so doing a formal course can be helpful.
    4 points
  2. β™”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
  3. If you have absorptions/overloads with rock cake sure will post when its pushed and waiting for acceptance
    3 points
  4. I'm not sure you're familiar with how litigation works. I can sue you right now over a ham sandwich in court.
    3 points
  5. ────────────── 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
  6. Open Minnows One-click fishing training What is it? This script will catch you minnows! Features Fishes minnows in the expanded fishing guild Avoids & moves away from the fishing spot that eat your minnows Open source Requirements Small fishing net 82+ fishing Angler's outfit More Details Start the script on the expanded fishing guild platform with the required items. Code import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.api.ui.Skill; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; @ScriptManifest(name = "Open Minnows", version = 1.0, author = "Eliot", info = "Fish minnows", logo = "") public class MainDriver extends Script { private long startTime; private ConditionalSleep flyingFishCS; private ConditionalSleep interactingCS; private ConditionalSleep runningCS; // Paint constants private final Color transBackground = new Color(0, 0, 0, 178); private final Color rsOrange = new Color(252, 155, 31); private final Font font = new Font("Helvetica", Font.PLAIN, 12); @Override public void onStart() { startTime = System.currentTimeMillis(); getExperienceTracker().start(Skill.FISHING); flyingFishCS = new ConditionalSleep(1500) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() != null && myPlayer().getInteracting().getModelHeight() > 9; } }; interactingCS = new ConditionalSleep(5000) { @Override public boolean condition() throws InterruptedException { return myPlayer().getInteracting() != null; } }; runningCS = new ConditionalSleep(3000) { @Override public boolean condition() throws InterruptedException { return getSettings().isRunning(); } }; } @Override public int onLoop() throws InterruptedException { if ((myPlayer().getInteracting() == null && !myPlayer().isMoving()) || (myPlayer().getInteracting() != null && myPlayer().getInteracting().getHeight() > 9) || getDialogues().isPendingContinuation()) { flyingFishCS.sleep(); if (!getSettings().isRunning() && getSettings().getRunEnergy() > 30) { getSettings().setRunning(true); runningCS.sleep(); } else { Entity fishingSpot = getNpcs().closest((Filter<NPC>) npc -> npc.getName().equals("Fishing spot") && npc.getModelHeight() < 10); if (fishingSpot != null) { fishingSpot.interact("Small Net"); interactingCS.sleep(); } } } return random(50, 200); } @Override public void onPaint(Graphics2D g) { // Set the font g.setFont(font); // Transparent box, holds paint strings g.setColor(transBackground); g.fillRect(1, 250, 225, 88); // Outside of transparent box g.setColor(rsOrange); g.drawRect(1, 250, 225, 88); // Draw paint info g.drawString("Open Minnows by Eliot", 10, 265); g.drawString("Runtime: " + formatTime(System.currentTimeMillis() - startTime), 10, 285); g.drawString("Fishing XP (p/h): " + getExperienceTracker().getGainedXP(Skill.FISHING) + " (" + getExperienceTracker().getGainedXPPerHour(Skill.FISHING) + ")", 10, 300); g.drawString("Fishing Level: " + getSkills().getStatic(Skill.FISHING) + " (" + getExperienceTracker().getGainedLevels(Skill.FISHING) + ")", 10, 315); g.drawString("Time to level: " + formatTime(getExperienceTracker().getTimeToLevel(Skill.FISHING)), 10, 330); } /** * Formats the runtime into human readable form * * @param time * @return string representing the runtime of the script */ private String formatTime(final long time) { long s = time / 1000, m = s / 60, h = m / 60; s %= 60; m %= 60; h %= 24; return String.format("%02d:%02d:%02d", h, m, s); } } Download https://nofile.io/f/N3FPNxyq87J/PowerMinnows.jar
    2 points
  7. root id 125 child id 12 child+ id 1 gives you "amountofsuper/1000", split on the / and parseint the 0th index
    2 points
  8. I'd recommend learning Java first as its an imperative language, whereas Python is a scripting language. Python has exploded in popularity over the last few years, so you would not waste your time learning it. Personal preference for learning, Java.
    2 points
  9. No where does kim say he has "packages" he says he does nmz, he doesn't offer "pure/main/etc" packages. He just says he does NMZ. If questing wasn't specified we can't do anything. BE clear on what you want done.
    2 points
  10. for the love of god PLEASE stop posting in Market -> Other its not a subforum for questions
    2 points
  11. Account has gone 37-86 so far. I'll be testing the new traversal pretty hard ?
    2 points
  12. "Anti-bans" are meant to mimic human interactions. Problem is, a lot of anti-ban is similar. However, human interactions vary greatly across different people. Perhaps the idea of "anti-ban" is fine however, how it's being implemented is poor. The idea is to create anti-ban that could resemble an instance of a person, instead of a few generic actions. Alek mentions not to play more then x amount of hours daily and y hours weekly but, many real players exceed those hours and aren't falsely banned. Their actions/interactions are being identified as a human. Jagex looks at a large number of factors and uses these (I believe) in neural networks. The NN decide if all the actions you've done is bot like or not. The longer you play, the more data it has and easier it's to make a decision.
    2 points
  13. 01/04/2024: Released chop and firemake plugin!!! Update November 2023: 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!
    1 point
  14. The only Runecrafting bot you will need Purchase this INSANE bot here You can setup a master account (preferably your main account, can be any account) and a worker account (a throwaway bot account, or any account) will trade the master account and go to bank to get more runes etc. The main account (master) does not need to bot, and can be achieved through the normal RS client without a bot client. Supports: Air runes (1) (normal) & (abyss) Mind runes (2) (normal) & (abyss) Water runes (5) (normal) & (abyss) Earth runes (9) (normal) & (abyss) Mud runes (13) (earth altar) Lava runes (23) (fire altar) Fire runes (14) (normal) & (abyss) Body runes (20) (normal) & (abyss) Cosmic runes (27) (normal) & (abyss) Chaos runes (35) (normal) & (abyss) Astral runes (40) (normal) & (abyss) Nature runes (44) (normal) & (abyss) Law runes (54) (normal) & (abyss) Blood runes (abyss) & (zeah) Auto Arceuus Favour Solver Gets 100% arceuus favour for you Auto GE Restocking Sells runes, buys more supplies automatically Auto-equips chosen armour/robes Use Blood Essences Death Handler gets items from Death's office and repeats (Abyss) Glory mode, ferox mode, house spell/tabs Avoids pkers and hops worlds Uses mouse invokes for quicker runecrafting (stealth) Muling (BETA) will give money to your mules every X hours or profit Creates colossal pouch if you have the needle Results and screenshots
    1 point
  15. Multiple Potion Support! Prayer βœ“ Restore βœ“ Overloads βœ“ Absorptions βœ“ Ability to set custom random higher/lower boundaries Ranging βœ“ Super and Normal Magic βœ“ Super and Normal Imbued Heart βœ“ Super Attack, Strength & Defence Potions βœ“ Special attack support βœ“ Custom Dream Settings βœ“ Ability to chose whether you want the character to re-enter a dream when it dies Ability to chose what position the player stands in Ability to set dream type Normal Hard Customisable - normal Customisable - hard Ability to chose a dream preset MTD Tree Gnome village Lost City Vampire Slayer Fight Arena Mountain Daughter Guthans Tree Gnome Village Lost City Vampire Slayer What Lies Below Haunted Mine Demon Tree Gnome Village Lost City Vampire Slayer Fight Arena The Grand Tree Custom The ability to set your own bosses in-game and the script will not change anything. Enable or Disable Power-Ups Zapper Recurrent Damage Power Surge Requires a Special weapon to be set within the GUI Magic Support βœ“ Select any β€˜Normal Spellbook’ combat spell to train with Rune pouch support Barrows Repairing! βœ“ Uses 'Lumbridge Home Teleport' to get to lumbridge, requires standard spell book. Uses the Minigames teleport to travel back to Nightmare Zone Recharging rechargeable! βœ“ Blowpipe Tome of Fire Purchase Your Daily Herb Boxes! Option to only purchase when you have over 'x' Points Option to either Bank or Open the Herb Boxes Rock Cake & Locator Orb Support βœ“ Ability to set chose if you want to pre-dream rock cake outside the dream Ability to chose at what HP value you start to rock cake Custom Idle Activities βœ“ Random Camera Movements Random Tab Changes Random Mouse Clicks Ability to have mouse exit the screen whilst idle Custom Prayer settings βœ“ Enable/Disable β€˜Boost Prayers’ Defence: Thick Skin Rock Skin Steel Skin Strength: Burst of Strength Superhuman Strength Ultimate Strength Attack Clarity of Thought Improved Reflexes Incredible Reflexes Ranged: Sharp Eye Hawk Eye Eagle Eye Rigour Magic Mystic Will Mystic Lore Mystic Might Augury Others Piety Chivalry Enable/Disable Protect Prayers Protect From Melee Protect From Magic Protect From Missiles Informative Script UI βœ“ Colour coded skills painted XP Gained Current XP/Hr Percentage till level Time till level Status display Customisable Stop/Break Handler βœ“ Ability to stop the script at the following benchmarks: Stop randomly between 'x' and 'x' minutes of runtime. Stop randomly between 'x' and 'x' dreams completed. End dream by idling Enable/disable logout on exit. Ability to use a custom made break handler. Break random every 'x' and 'x' dreams completed. CLI Support βœ“ -script "698:profile=Test hours_limit=10 dreams_limit=5" profile = saved profile name, if you've been using CLI to run the script, this will need to be updated to suit. hours_limit = Complete after 'x' run hours. dreams_limit = Complete after 'x' dreams completed Misc. Options βœ“ Hop worlds between dreams Leave dreams at maximum points Ability to save/load multiple custom presets This is not a thread for asking for trials, as a whole, i don't offer trials for my script. Instead if encourage you to ask all the questions you have before purchasing aο»Ώny of my (or anyones) script to be sure the script does exactly what you would like it too. Please note, 1 purchase of FruityNMZ is a lifetime auth for as many accounts as you can run On OSBot, we do not limit the amount of instances you can run with a single script! If you'd like to purchase FruityZulrah using OSRS GP, SEND ME A PM and i can give you my current $$:GP Rates! Discord Community: https://discord.gg/WzXRk2bWTV Trial bot has been implemented (100 post count required if you're not VIP/Sponsor!) @fruityscripts on Discord!
    1 point
  16. come in chatbox il send you some stuff
    1 point
  17. Do not edit the thread after sale. Thank you.
    1 point
  18. works amazing, got 70 herb so far. Apa i really appreciate that you give this script free to the community.
    1 point
  19. can vouch for user, great guy and has sold me accounts!
    1 point
  20. read the page before this
    1 point
  21. 1 point
  22. https://stackoverflow.com/jobs Do some research and find out which jobs pay the most for which programmer. I wouldn't ask around here, because Java is the language this bot's developed in and scripts are written for. You're going to get a very biased reception.
    1 point
  23. added your discord. I have quality proxies and satisfied customers (: smh..
    1 point
  24. $15.90 or 14.5M for these stats Thansk for mentioning @siilentalk
    1 point
  25. @D Bolter he got what u need
    1 point
  26. Thanks man I appreciate that Yes I am currently doing a masters degree in Computer Science in the UK. As for recommendations I have 3: 1. This thread: 2. Looking at open source scripts on this website and seeing if you can follow the logic 3. Trial and error - the best way to learn is by doing it yourself, you can only learn so much from reading about how someone else does something. Start with something simple like a woodcutting script that could probably be written in under 10 lines and take it from there Good luck! Added some content to day 6
    1 point
  27. any updates on fixing the tree click pausing because i don't want to get banned so close to 99 ? and i want to go out on the weekend XD
    1 point
  28. Ahhh!! I see what's up! Looks like you've got the wrong JDK. OSBot is written for Java 8 and is incompatible with later revisions. See where it says 'JRE System Library [JavaSE-10]' in your screenshot? Right click that, select properties, and change the execution environment to 'Java-SE-1.8' Here's the d/l link: http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html Let me know if that works -Apa
    1 point
  29. Okay whatever you say boss good luck selling the account in the future
    1 point
  30. hes not selling him, hes checking the price
    1 point
  31. Hmm, ok - thanks for letting me know. This is related to my door handling system, perhaps the nature of the door in Yanille anvil has changed? I will investigate. While it's not affecting the effectiveness of the script though, i'll pop it a little lower down on the priority list!! Apa
    1 point
  32. To everyone, there were only a couple of quests that didn't work for me after it "broke" one of them was "Fight arena" can't remember the other, but I think only 2-3 didn't work correctly. The main issue was the banking, cause if it wasn't in the first tab of your bank it wouldn't be able to find items, other then that it worked fine, the easiest solution was to collapse all the tabs and leave it like that until all quests finished.
    1 point
  33. Ernest the chicken completed successfully.
    1 point
  34. 1 point
  35. Version 9.4 has been pushed! http://projectpactscripting.com/Updates.html
    1 point
  36. Sounds good just send a pm if anything changes.
    1 point
  37. BOUGHT 8 66 MAGIC ACCOUNTS FROM HIM SO FAR ALL 100% GOOD. LOVE THIS MAN
    1 point
  38. Can i have a new trial, the last trial i got i wanted to test blackjacking but i was too low thieving lvl for menaphite thugs, so i didn't use it.
    1 point
  39. Can I have a trial of this script? Actually planning on getting 90+ thieving on main, so seeing how it works would be nice before buying.
    1 point
  40. You have a long list of supporters waiting to click the buy button OP, we're looking forward to your return
    1 point
  41. Same here This script looks totally amazing!
    1 point
  42. No. Only reason to do pottery is dragon slayer and varrock diary, and even then you only need to make one item. Leather is much better in f2p
    1 point
  43. Thanks! One of the main reasons I'm actually doing this goal is to improve my scripting ability to be honest, starting an account from scratch means that I can get experience with many different types of interactions, environments etc.
    1 point
  44. This would require Your account to stick out personally out of 30,000 Bots Would have to manually apply code to affect just your account. ( Or set your account to - Weak staking type - which is such a bazaar thing to do to customers lmao If they where looking at your account the first thing they would check is botting / total wealth. You would just be banned. I don't think jagex actually makes personal adjustments to disadvantage account, Actually goes against their ToS and is a form of Harrasment. Lay off the weed, This is such a cooked idea. The world record for most 50/50 Losses in a row is 27 ( coin flip ) and the Probability of 7 loss streak is not unheard of even if you give yourself 10% better odds.
    1 point
Γ—
Γ—
  • Create New...