Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/11/16 in Posts

  1. Thank you everyone for all the support and feedback, this script officially is the most sold magic script on the market! Since 2015 it has been continually updated all the way to 2025! #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
    3 points
  2. post pictures of cats!
    3 points
  3. Banned for botting? Getoutahere.
    3 points
  4. https://www.twitch.tv/geniigames LOVE ME
    2 points
  5. Ok guys from now after this thread, i will be posting a thread once I have 3 or more pieces to show. I apologize to all members of the community regarding me over posting in this section. I'm sorry. None the less hope you like this one.
    2 points
  6. Since software is become more and more web-oriented, it's getting harder and harder to escape web-development. Same goes for mobile applications / integration. Not sure why you'd think those are below any skill level but ok. A degree can make up for the lack of a portfolio. If you don't have a portfolio then a degree is pretty much the only option to certify your knowledge. A degree not only certifies knowledge but also discipline and persistence, some corporations find those important, others not so much. If you have the passion, discipline and time to consistently continue learning on your own and are willing to work on a strong portfolio on top of that, then MAYBE a degree becomes a useless expense to you.
    2 points
  7. confirmed this is @Acerd 's second account
    2 points
  8. So does that mean I should or shouldn't take my tin foil hat off...
    2 points
  9. Presume wrong... host issue
    2 points
  10. ────────────── 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.
    1 point
  11. 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
  12. RuneScape has multiple entity types NPC's Objects GroundItems Determining which one to use is way simpler than people think. NPC's will have yellow name tags in game Objects will have blue name tags in game GroundItems will have orange name tags in game Now when it comes to declaring variables what should we use? For NPC's we would use the NPC class. Our code should look like this NPC npc = ... For Objects we would use the RS2Object class. Our Code should look like this RS2Object object = ... For GroundItems we would use the GroundItem class. Our code should look like this GroundItem item = ... Why would we shy away from using Entity class to define any entity from the game? Well simply put Entity is just an interface and it might not contain things needed to any specific Entity implementing classes. Like RS2Object will have getType() method but Entity will not. The main place to use Entity class is when we are passing it to a parameter of a method and making your own lets say interacting methods. We would use Entity in our parameter to make it accept any Entity type. public void interactCustom(Entity entity, String action){ if(entity.isVisible()) entity.interact(action); else getCamera().toEntity(entity); } Of course again there will come limitations, which are when you are making a method for getting the type of an Object and logging it. Having our code look like this will not work and give us an error. public void getTypeAndLog(Entity entity){ log("[Debug] objects type: " + entity.getType(); } So passing Entity to our parameter wouldn't give us the method getType() which RS2Object has, so we would need to have RS2Object in our parameter So we would need to have RS2Object in our parameter. And our code will work if he have it look like this public void getTypeAndLog(RS2Object object){ log("[Debug] objects type: " + object.getType(); } I hope this guide helped you understand the types of Entities and how to use them correctly
    1 point
  13. This would be so useful. I will definitely be downloading this.
    1 point
  14. Just downloaded, so much easier on my eyes for the time it is for me, 10:54pm.
    1 point
  15. already been using it for quite a while
    1 point
  16. around 4M-5M if that includes some membership.
    1 point
  17. Bet you like this one more.
    1 point
  18. I know what you mean, but when you train with osbuddy, the client makes screenshot. When the account gets banned of macroing, you can show me the screenshots ;) you wont get kicked of the service
    1 point
  19. Thats actually a pretty interesting website
    1 point
  20. Blizzard Is Making a HD Remake for Diablo II
    1 point
  21. ikr? the 2 main games i played in my childhood were runescape and diablo 2, i played so, so, so much diablo 2 i also still played diablo 2 the last few years, made every possible build ever, pvp the shit out of d2, its just so much fun just like i know almost everything about OSRS, i know almost everything about D2 D2 > D3 anytime
    1 point
  22. This can probably answer your thread
    1 point
  23. 1 point
  24. yo this looking me interested can me having trials pleas
    1 point
  25. then go bitch about it to maldesto
    1 point
  26. No problem, happy to help. Thank you for your great bots and on going quick help.
    1 point
  27. That photo is sad because it's real. Party pooper.
    1 point
  28. Could I get a trial on this please?
    1 point
  29. Posted a hotfix for karamja, walking is MUCH better now. Update should be visible immediately, since only the webdata nodes were modified - which are instantly updated, gl all ;) As for sacred eel, I will add that ASAP Anglerfish support has already been added :P
    1 point
  30. I tried to start to start this today, no different than any other day. The bot just can't seem to get into the right spot to shoot. It just keeps saying moving.... Don't know what to do, very weird cause I run this just about every day since I have bought it.
    1 point
  31. I think the ribs just appear too small to match the body, otherwise looks nice though!
    1 point
  32. I got banned using Sinatra swamp collector! i am in the same boat man
    1 point
  33. Don't know if you were going for a theme but If you were gonna add something external should have done it on the sheet, maybe soul-esk To fit what you did with the side head. but then it gives it a cannibalism theme Make the mouth line start earlier so he doesn't look like the crimson chin.
    1 point
  34. Bought your rock crab script and love it so far, could i get a trial for this one?
    1 point
  35. Could i have a trail please?
    1 point
  36. Hey man can i get a trial?
    1 point
×
×
  • Create New...