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
  • milk1234

    Scripter
    • Posts

      16
    • Joined

    • Last visited

    Reputation Activity

    1. Like
      milk1234 reacted to Defiled in 👑Dreamy AIO Skiller👑 | 22 skills in one script | Quests | Smart Desktop & Discord Notifications | Customised profiles | Very active customer support! | Very advanced |   
      @tafpop123 Be respectful, Zawy is a credible scripter and you're just blankly commenting cancer. If you do not want to get banned, DO NOT BOT. If you can't handle getting banned, look for another game to bot on.. I hear Club Penguin is awesome $$$
    2. Upvote
      milk1234 reacted to Roma in RQuester [50+ Quests]   
      Supported Quests:
                       1. Animal Magnetism                                            21. Knight's Sword                                 40. The Tourist Trap
                       2. Biohazard                                                            22. Lost City                                            41. The Golem
                       3. Big Chompy Bird Hunting                                 23. Mountain Daughter                         42. The Gnome Village
                       4. Client Of Kourend                                              24. Nature Spirit                                      43. Tutorial Island (Old)
                       5. Cook's Assistant                                                25. Plague City                                        44. Tutorial Island (New)
                       6. Death Plateau                                                    26. Priest In Peril                                     45. Vampire Slayer
                       7. Demon Slayer                                                     27. Prince Ali Rescue                             46. Waterfall
                       8. Doric's Quest                                                      28. RFD: Cook                                          47. Witch's House
                       9. Dragon Slayer                                                     29. RFD: Evil Dave                                   48. Witch's Potion
                       10. Druidic Ritual                                                    30. RFD: Dwarf                                        49. Miniquest: Varrock Museum Quiz
                       11. Dwarf Cannon                                                  31. RFD: Goblin                                        50. Miniquest: Barcrawl
                       12. Eagle's Peak                                                     32. RFD: Ogre
                       13. Ernest The Chicken                                         33. RFD: Pirate Pete
                       14. Fight Arena                                                       34. Romeo & Juliet
                       15. Fishing Contest                                                35. Rune Mysteries
                       16. Gertrude's Cat                                                  36. Sheep Shearer
                       17. Goblin Diplomacy                                            37. The Grand Tree
                       18. Imp Catcher                                                     38. Shadow Of The Storm
                       19. Jungle Potion                                                  39. The Restless Ghost








      You can modify the way the bot is grabbing the prices by editing the "rquester prices" file in your dreambot/scripts folder. Instructions can be found within the file.


      *Dragon slayer - melee only.
      *TGT, Fight arena - safe spot only.

      Case sensitive
      Profile name Example:
      java -Xmx512M -jar -Xbootclasspath/p:/YOUR_USER_PATH/DreamBot/BotData/client.jar /YOUR_USER_PATH/DreamBot/BotData/client.jar -username "forumsname" -password "forumspw" -account "savedacc1" -script "RQuester" -params "myprofilename"


       
    3. Like
      milk1234 reacted to yeeter in How to upload to the SDN with command line Git   
      What is git?
      Git is a version control system for files.  It can be used for an array of things but is most commonly used with programming.  Some media companies use git as a way to revise, edit, and archive written articles before publishing them.  Git allows for easy version control, feature management, and collaboration with other developers. 
      Where to get git?
      You can download git from here -> https://git-scm.com/ download and install it for your desired operating system.  If you are running linux sometimes it is preinstalled so I would check that.
      Getting Started
      Once installed open up a command line (I am using Git Bash) and type the command below to check that git was installed correclty.
      git --version Requesting an SDN Git Repo
      This part only applies if you are looking to publish scripts on the SDN.  All of these commands will work with other services such as Github and GitLab.  I personally use Github for personal projects and my private scripts.
      So now that we have git up and running in our development environment we need a way to store our SDN scripts so that they can be published.  Head over to the Dreambot’s SDN page and you can find the request form under Scripter Panel -> Git Repo Request (or click this link) .https://sdn.dreambot.org/scripters/repo
      This page is where you request your git repository for the SDN.  This process can take a couple of days so request it sooner rather than later.  You can check the status of this by looking at Scripter Panel -> Requests and it should list the status of your repo there.  Once it is created you will be sent a URL, and a password for the repository.  Don’t lose them.
      Setting up the repository
      Navigate to where you want to place the repository Dreambot has provided you.  In my case I have a folder on my desktop called mySDNScripts.  Since this is an existing repository we will want to do what is called a “clone”.  Which simply copies an existing git repository to another location.  We will need that URL and password provided to us in the SDN request.  The command will look like this.
      git clone [email protected]:yourOwnUsername.git Smash that enter key and it may ask a question about authenticity just type “yes”.  You will then be prompted for the password you were assigned.  Copy paste that into the password field.
      *Side note - Iif you don’t have a ton of linux experience password fields in linux will not show an * or dot while filling them out.  It will be invisible.  Just hit enter after you type/copy it.*
      And BOOM!  We have cloned our repository from the Dreambot git server to our computer!
      Adding a script to your repository.
      Opening the repository (in my case Yeeter01) this is where you will create your scripts.  Each script will be its own subfolder in Yeeter01.  So in my case the only two scripts I have actively publish on the SDN at the moment are my AccountYEETER and YEETPicker AIO.  These subfolders are referred to as “Modules”.  
      *Side note - These modules do not have to match the name of the published script ex.) aiopicker is YEETPicker AIO.  It is probably best practice to make those match tho.*
      *Second side note - Make sure your module names have no spaces or special characters.*
      So I wrote an example script called “YEETGitTut” that I would like published to the SDN.  I create a folder (module) in my repository Yeeter01 called YEETGitTut.  Inside this folder is my src folder.  This is where my code will be stored.  
      This script is a simple script consisting of one file in YEETGitTut/src called MyLeetScript.java.  For larger scripts all your packages, resources would also be listed under your src/ folder.
      These changes however are not yet saved.  Going back up to the root of your git directory (Yeeter01) and checking the status will return a list of created, deleted, and modified files or folders.
      git status  So you can see everything under YEETGitTut/ needs “staged” or in other words selected to be added to the next commit.  This is done in order to allow users to select the files they want to commit.  If you are working on multiple scripts at once this prevents you from tying multiple scripts to a single commit.  Super handy incase one of them breaks in the future and you need to rollback the changes.  
      git add --all  
      We have added the files to the staging area for our next commit so we must now commit these files. To our local git repository with a message we can refer to in the future using the -m param.
      git commit -m "Inital commit for YEETGitTut" After committing you can recheck the status of the repository and you will notice that we are 1 commit ahead of the git repository Dreambot host on their servers also referred to as the “Origin”.  This means we need to provide them with the changes we made on our “master” by pushing the code back to them.
       git push origin master Checking git status afterwards we can see that both copies of our git repository are up to date!  The hard part is now over!
      Publishing your script!
      So we wrote the script, committed and pushed the script the Dreambot’s git repository what's left?!?!?!
      Well now you need to make a forum post for the script you are wanting to publish.  This is the place you should go into detail about what your script does, any features it has etc etc.  Publish this forum thread under the sub section of the forum called “SDN Scripts” and find the section that your script falls under.  Once completed hit publish.  It will be hidden until approved.
      Now go to Dreambot’s SDN page -> Scripter Panel -> New Script (or click the link) https://sdn.dreambot.org/scripters/scripts/new This is the form for publishing your script.
      Script Form
      Name and Category - This should just match what you put in your ScriptManifest.
      Gallery - Lets users see a preview of your script.  I just reuse the images I put in my forum thread for this.
      ThreadUrl - Copy paste the URL of the forum thread you just made and pate it here.  This allows users to view the additional information and features of your script you wrote in the thread.
      Type - Unless you are ranked Scripter+ or above you can ONLY PUBLISH FREE SCRIPTS.  Read more about the ranks and how to obtain them here -> https://dreambot.org/forums/index.php?/topic/4892-list-of-forum-ranks/
      Repository Name - This is the name you requested it to be called.  When you clone your repository it is that root folder we worked in.  In my case Yeeter01.
      Module Name - This is the script you want to publish.  In my examples case we created a script called “YEETGitTut” put that name exactly in that folder.
      Just like that we are DONE!  SMASH that submit button!
      At this point you can check the progress of your script being published in the Scripter Panel -> Request area.  This process can take a couple of days due to code review.  
      While this might sound complicated once its set up the work flow is basically boiled down to -> Edit Script -> "git add" all the files you want to commit -> "git commit -m" all the files you added -> "git push origin master" to send your code to the Dreambot git server(origin).  The biggest pro of git in my personal book is it allows me to transfer code from computer to computer with ease.  Traveling for work and using multiple computers this can be a pain but with git and services such as Github/GitLab as well as Dreambot's SDN I can work on projects/code form anywhere on any machine I can install git on.
      More resources~
      This was long winded and I really glanced over a lot of the capabilities of git.  If you would like more in depth knowledge I HIGHLY suggest watching this crash course.  It covers the fundamentals and breaks down things really well and gets into some cool git usages. 
      Git Crash Course - YouTube video (30ish mins reallllllly good)
      https://www.youtube.com/watch?v=SWYqp7iY_Tc
       
       SDN Upload Guidelines 
       
      Guide by apec using SmartGit GUI 
       
      Git is a highly used tool if you need assistance or have any errors be sure to just google it first.  Chances are 1000000000 other people have ran into the same error you are having.  If you need any direct assistance feel free to hit me up on Discord (username can be found on my profile) or on the forum.
       
      * I wrote this in one go if I screwed anything up lmk will edit to correct it. *
    4. Like
      milk1234 reacted to Hashtag in [DB3] # Shopping [200 HOUR PROGGY] [ALL LOCATIONS] [BUYING AND SELLING] [OPENS PACKS] [WORLD HOPPING]   
      Purchase using PayPal, OSRS GOLD, CRYPTO or OTHER
      Click here for your 2 hour free trial!
      Features
      Supports custom locations Supports banking Supports item selling Supports pack opening Supports world hopping Active customer support Gallery






       
      Click here for your 2 hour free trial!
       
    5. Like
    6. Upvote
      milk1234 reacted to Hashtag in ❤️ # Blast Furnace ❤️ | Efficient | G.E. restocking | Switching gloves | Coal bag | Stamina potions   
      Purchase using PayPal, OSRS GOLD, CRYPTO or OTHER
      Click here for your 2 hour free trial!
      Features
      Supports all bars except bronze bars Pays fee every 10 minutes when under 60 smithing Ice & Gold gloves switching Supports cooling down smelted bars with bucket of water or ice gloves Supports stamina potions to boost run energy Supports coal bag to carry twice as much coal Stops when out of ores or coffer is empty Supports DreamBot's QuickStart Cool dynamic signature Active customer support Requirements
      Started the quest The Giant Dwarf (No requirements to start the quest) Atleast 15 smithing (Optional: You get smithing level to 29 when you finish The Knight's Sword) You must have coins in the coffer before starting the script. It will logout once you have no coins in the coffer. It consumes 72k/hour, so this way you can determine how long you want the script to run.
      Gallery


       
      Blast Furnace guide
      QuickStart
      Click here for your 2 hour free trial!
       
    ×
    ×
    • 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.