Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/05/18 in Posts

  1. One of the scripts I'm currently working on
    2 points
  2. This is an AIO (All-in-one) bot that has almost every thieving style except blackjack, ask for a free trial by liking thread or making a post! Vyres and elves are now supported! Both can make solid profit per hour, decent passive income! BIG THANK YOU TO ALL OUR SUPPORTERS! WE ARE THE MOST SOLD THIEVING BOT IN OSBOT HISTORY. MOST REPLIES, MOST USERS, LONGEST PROGGIES #1 Thiever | Most Overall Sales | Most Total Replies | Most Results | 10+ Years Maintained | 'the intelligent choice' by Czar SUPPORTS VYRES 224M made in a single sitting of 77 hours 1.1B made from elves and vyres!! ELVES SUPPORTED TOO! (NEW) 2.1m/hr, 6 crystals in 7 hrs 99 THIEVING MANY MANY TIMES, 35M EXP IN ONE BOTTING RUN!! 99 thieving in ~43k xp (12 minutes remaining)! Just got 99 proggy! Gratz to @iz0n THIEVING PET AT LVL 22 FROM TEA STALLS 11.5 HOURS, WITH PET TOO!! 610k/hr getting 99s on deadman worlds!
    1 point
  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
    1 point
  4. Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:
    1 point
  5. Not very often tbh, i am flirting with danger though in an all or nothing approach. When i did 70-99 range a month or two ago i finished it off by botting over 20hrs a day 3 days in a row although i do keep an eye on it throughout the day and if i see it banking then i'll manually bank and have a convo with someone.
    1 point
  6. What you Are Ordering: One void Set Are you Paying Upfront or Using Middle Man (@Decode is the Official Middleman of this Service) : Upfront Do you AGREE do my T.O.S : Yes Your Skype / Discord : live:Gabithehun23_1 Have you Added my Skype / Discord? : yes, Skype
    1 point
  7. Still going strong.
    1 point
  8. Fault GPU gives artifacts on screen. IE everything turns blurry RAM failure from my experience happens on boot. Faulty mobo should just not boot. I'm almost positively sure that it's temperature issue.
    1 point
  9. 13-15 year olds dont even know what runescape is lol
    1 point
  10. Last thing I'd like to mention: If you still have warranty, and it might become overheated and break down, you lose warranty. After all, they will say it's your responsibility to take care of the 'health' of the laptop. And yes, if there are no signs that you may not open it up, you are free to do so. But, if it says you lose warranty if you open it up, you are better of sending it back, else you still lose warranty.
    1 point
  11. Also make sure to refresh the thermal paste on the GPU if you don't have an integrated GPU. If you don't know what I'm talking about, you are better of looking at Google results, else this thread will probably just become an all round guide for laptops lol.
    1 point
  12. Great seller. Quick and professional. Would recommend and use again!
    1 point
  13. Hi Frost. I plan on restarting back up and this is perfect for my new alt account. Could I try the trial first please?
    1 point
  14. I go into the garden, cover myself in earth and I pretend I am a carrot.
    1 point
  15. What do you mean by Mail account? Like IP address and such? For proxies I would ask @D Bolter he's knowledgeable and has been selling VPS's and Proxies for a while now.
    1 point
  16. WOW! I love you, thank you very much!!?
    1 point
  17. You can, it's at the top left. Just like saving a file in MS Word, etc.
    1 point
  18. 1. Open up "Run" by pressing windows key + r (or by searching in the start menu) 2. Type %appdata%\Microsoft\Windows\Start Menu\Programs It will open file explorer in the Start Menu Programs dir 3. In this directory, right click and select New -> Shortcut. Then point the shortcut to your OSBot.jar 4. The OSBot.jar will now show up in the applications list in the start menu (under the O category of course) 5. Scroll to the OSBot.jar in the start menu, right click and select Pin to Start
    1 point
  19. Hi in tunnel i kill every second brother.. when they will spawn earlyer than bot doing killcount then all is OK. but sometimes bot ignore brother near doors or with 100% ignore at the chest how many kill count you have? me around 400 without bann 18 hours running bot 3 days atm..
    1 point
  20. Yes, I haven't noticed any bug reports lately so I'll be working on a few improvements/new content in the mean time
    1 point
  21. private List<String> getOthersEquipment(Player p) { List<String> equipmentList = new LinkedList<String>(); if(p != null) { int[] equipment = p.getDefinition().getAppearance(); for (int i = 0; i < equipment.length; i++) { if (equipment[i] - 512 > 0) equipmentList.add(ItemDefinition.forId(equipment[i] - 512).getName()); } } return equipmentList; } Note: int[] equipment = p.getDefinition().getAppearance(); Index Order: [0] = helmet [1] = cape [2] = necklace [3] = weapon [4] = chest [5] = shield [7] = legs [9] = gloves [10] = boots - Can only grab visible items (no ring or ammo, etc.) - Each value from getAppearance() needs to have 512 subtracted from it in order to get the item id Or if you want it so you can grab specific pieces: private HashMap<EquipmentSlot, String> getOthersEquipment(Player p) { HashMap<EquipmentSlot, String> equipmentList = new HashMap<EquipmentSlot, String>(); if (p != null) { int[] equipment = p.getDefinition().getAppearance(); for (int i = 0; i < equipment.length; i++) { if(equipment[i] - 512 > 0){ switch(i){ case 0: equipmentList.put(EquipmentSlot.HAT, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 1: equipmentList.put(EquipmentSlot.CAPE, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 2: equipmentList.put(EquipmentSlot.AMULET, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 3: equipmentList.put(EquipmentSlot.WEAPON, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 4: equipmentList.put(EquipmentSlot.CHEST, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 5: equipmentList.put(EquipmentSlot.SHIELD, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 7: equipmentList.put(EquipmentSlot.LEGS, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 9: equipmentList.put(EquipmentSlot.HANDS, ItemDefinition.forId(equipment[i] - 512).getName()); break; case 10: equipmentList.put(EquipmentSlot.FEET, ItemDefinition.forId(equipment[i] - 512).getName()); break; } } } } return equipmentList; }
    1 point
  22. YES! Hit me up with a trial
    1 point
  23. Gz on release looks awesome
    1 point
×
×
  • Create New...