Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • notkashez

    Members
    • Posts

      17
    • Joined

    • Last visited

    • Days Won

      1

    notkashez last won the day on March 19

    notkashez had the most liked content!

    Profile Information

    • Gender
      Not Telling

    Contact Methods

    • Discord
      https://discord.gg/t8kQpyHvaf

    Recent Profile Visitors

    573 profile views

    notkashez's Achievements

    1. I'm pretty sure only scripter+ ranks can sell scripts
    2. I would love to just provide a more detailed explanation exactly what you want and a test account with any needed supplies.
    3. Greetings Everyone I am pleased to offer a complimentary script request service. As I currently have ample free time, I am dedicated to crafting custom scripts tailored to your specifications. Service Details: Limitations: To ensure fairness and quality, I kindly request that each individual submits only one script request. Submission Requirements: Please provide detailed specifications for your desired script, including functionalities and any specific requirements or preferences you may have. Additional Information Needed: In order to create the most effective script for your needs, I require access to a test account and/or any necessary items related to the script's functionality. How to Request: To request a script, simply reply to this thread with your detailed specifications, and I will reply ASAP
    4. notkashez

      NK Alchemize

      Should be fixed now
    5. notkashez

      NK Alchemize

      you are absolutely correct! ill fix it after this league game! Thanks for the reply.
    6. notkashez

      NK Alchemize

      Bump. Edited an old topic with a new script
    7. @Kasper67 Speaking from personal experience; The scripts on the SDN are reviewed by an admin before they get approved for the database. Anyone who has submitted a script can tell you this.
    8. Dreambot is legit and would never hijack anyone's account.
    9. notkashez

      Banned

      I would go as far as saying ban rates can vary wildly depending on the script you are running. If you are using an older free script ban rates will be higher than if you are using a premium script that is revised/updated frequently. I always use breaks even when using my own custom scripts. I only run each acccount for 4 hours. roughly 4 hours on 4 hours off.
    10. If you click on game settings on the right hand side of the client there is an option for random f2p/p2p worlds. Just select what you want from the drop down menu.
    11. This is my first script release !! It will cast high level alchemy on any item put into the input field via the GUI. If you don't have 3 items to alch please enter random ones. You must have enough runes in your inventory. When out of items to alch it logs out. More updated releases will be coming in the future to add more functionality. Any and all feedback is appreciated!!! Status :Removed from the SDN until I have time to update
    12. notkashez

      NK Alchemize

      This script will alch any item in inventory and log out if no nature runes . It has a 5% chance to open the skills tab a small anti ban precaution. If you test this or use it please comment to let me know! import org.dreambot.api.methods.Calculations; import org.dreambot.api.methods.container.impl.Inventory; import org.dreambot.api.methods.magic.Normal; import org.dreambot.api.methods.magic.Magic; import org.dreambot.api.methods.skills.Skills; import org.dreambot.api.methods.tabs.Tabs; import org.dreambot.api.script.AbstractScript; import org.dreambot.api.script.Category; import org.dreambot.api.script.ScriptManifest; import org.dreambot.api.wrappers.items.Item; import java.util.List; import java.util.Random; @ScriptManifest(category = Category.MAGIC, image = "", name = " NK ALCHEMIZE", author = "NotKashez", description = "Alchemize me captain", version = 1.0) public class Main extends AbstractScript { private Random rand = new Random(); @Override public int onLoop() { highAlchItems(); return Calculations.random(600, 800); // Sleep for a random period between 600 and 800 milliseconds } private void highAlchItems() { List<Item> items = Inventory.all(); // Check for Nature runes in the inventory Item natureRune = Inventory.get("Nature rune"); if (natureRune == null) { log("No Nature runes in inventory. Logging out..."); Tabs.logout(); stop(); return; } for (Item item : items) { // Add a null check for the item if (item != null) { String itemName = item.getName(); if (!itemName.equals("Nature rune") && !itemName.equals("Coins")) { sleep(Calculations.random(1000, 1500)); Magic.castSpell(Normal.HIGH_LEVEL_ALCHEMY); sleep(Calculations.random(1500, 2000)); item.interact(); if (rand.nextInt(100) < 5) { Skills.open(); sleep(1000,2000); } break; } } } }
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.