Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/28/14 in all areas

  1. Infracted for being stupid.
    10 points
  2. Scanned some sketches I did this morning, next step is vector. C&C
    3 points
  3. Since the api is unstable out of boredom I went ahead and photoshoped some users as chicks. I think nezz looks best.
    3 points
  4. You guys are completely missing the point. Jagex stated they're running these next 2 weeks as a trial to see if bots will be too big of a neusance, and to determine what systems to put in place to limit bots on F2P. You're playing right into their trap by botting right now (Esepcially with an army of fishermen or w/e).
    3 points
  5. Although, I believe they can still detect the client.
    3 points
  6. Hey everyone, As you may or may not know, @Eliot and I have teamed up to write scripts for the OSBot 2 client. We have already posted about our OSBot 2 AIO Fighter: http://osbot.org/forum/topic/50292-dreamfighter-aio-first-osbot-2-script-publicly-released We are currently in the middle of making an AIO Miner. Currently, we have the following locations: Alkharid Crafting Guild Mining Guild Lumbridge Swamp Wilderness Runite rocks (Lava maze) Varrock East Yanille Please post suggestions for locations you want to be added. The most popular ones will be added first. Also, do not suggest Motherlode, it will not be part of this script (we will do it separately).
    2 points
  7. Gilly is making a return though, he never really left us.
    2 points
  8. You're acting like I won't set your mud hut on fire.
    2 points
  9. yes timekeeper for admin cuz frankly he buys everyone pizza so :p
    2 points
  10. jmod confirmef
    2 points
  11. Nope, thats just how you get banned. They push the ban which starts when you login. It would've banned you even if you logged in with any other client (eg. Orion, Desktop client, webclient)
    2 points
  12. Well using this and keeping a 55% or above percent. I went up 10m. So I can totally vouch for this :P Only thing I would like to see is to get rid of that damn ad xD
    2 points
  13. And its still going as long as rs doesnt update again :P
    2 points
  14. Thanks for the update @Laz, take as long as you need with the equipment update as we would rather have fully working release than a half working one so no rush! Keep up the good work.
    2 points
  15. Credits to @Divinity for letting me use his enum as an example Example: (I will be using this enum through out the whole tutorial, the variable will be shorten down to make space). public enum ThievingNPC { MAN("Man", 1), FARMER("Farmer", 10), FEMALE("HAM Female", 15), MALE("HAM Male", 20), HAM_GUARD("HAM Guard", 20), WARRIOR("Al-karid Warrior", 25), ROGUE("Rogue", 32), MASTER_FARMER("Master Farmer", 38), GUARD("Guard", 40), PALADIN("Paladin", 70), GNOME("Gnome", 75), HERO("Hero", 80), ELVE("Elve", 90); private String name; private int lvl; ThievingNPC(String name, int lvl){ this.name = name; this.lvl = lvl; } public String getName(){ return name; } public int getLevel(){ return lvl; } } What’s an Enum? An Enum is a data type, just like an interface and class. Enums and Classes consist of some similar characteristics, for example: constructor and some general methods. But the most unique things about Enums would be that they allow you to pre-define constants, which then allow you to access them at any time. What’s a Data Type? So a Data Types would be consider something like: Int, String, Boolean etc.. So what I’m trying to say, is that your allowed to create methods out of an Enum. You’re allowed to use them, like you would in an argument, constructor, and even a method. Example: public void something(Enum name) { } public EnumName somethingElse() { return enumVariable } Parts of an Enum: (in order) Example: //variables //private fields //Enum constructor //setters & getters methods //your own custom methods How to create an Enum: When you want to create an Enum, you will start off with a modifier (optional). Followed by the key word “enum”, then after follows the name of the Enum. Finally end it with brackets “{ }” Example: public enum ThievingNPC { } Enum Conventions: Naming the Enum: You must capitalize the first letter in every word (no spaces ). Example: //The only reason why my enum is called ThievingNPC, and npc is in all caps is because it is an acronym ThievingEnum YouGetItNow Naming Variables: You must capitalize all letters, and you must replace all spaces with underscores (“_”). Example: ROGUE MASTER_FARMER Adding in variable (use Conventions): This is where the fun begins. Now you are allow to add in as many variables as you want. Just know that after every variable you end it with a coma “,”. But at your last variable it must end in a semicolon “;”. Example: MAN(), HAM_GUARD(); More important info about variables: Once you create your variables, if you decide not to add any predefined constants (hence the infomation in between the parenthesis after the variable name), then you dont need to addin the parenthesis. The parenthesis are meant to help organize what information goes with which variable. Example: (this is part of my Magic Manager snippet) "If you dont understand then dont worry this isnt that important". public static enum Rune { STEAM, MIST, MUD, LAVA, SMOKE, DUST, EARTH, FIRE, WATER, AIR, ASTRAL, BLOOD, BODY, CHAOS, COSMIC, DEATH, LAW, MIND, NATURE, SOUL; @Override public String toString() { return super.name().toLowerCase() +" rune"; } } How to create Constructor: Optional adding a modifier. With Enum you’re not allowed to use the “public” keyword modifier. Since Enum variables are static. Use the Enum name followed by Arguments. Your constructor Argument must match the arguments within the variables. and end with brackets “{ }”. Example: MAN("Man", 1), FARMER("Farmer", 10); ThievingNPC(String name, int lvl) { } What to do within the Constructor: You must first create some private fields. Then make your Constructor argument equal those private fields. Example of the key word this: link Example: public enum ThievingNPC { MAN("Man", 1), FARMER("Farmer", 10); private String name; private int lvl; ThievingNPC(String name, int lvl){ this.name = name; this.lvl = lvl; } } Creating Methods: Since your fields are private you need some sort of way to be able to access the values. So this is where you would create your getter methods. Also any other custom method you would need. Example: public enum ThievingNPC{ MAN("Man", 1), FARMER("Farmer", 10); private String name; private int lvl; ThievingNPC(String name, int lvl){ this.name = name; this.lvl = lvl; } //from here and below are where you put your methods at public String getName(){ return name; } public int getLevel(){ return lvl; } } Some Default Enum Methods & Returns: These are some of the default methods that Enum's come with. There's many more, but these are the important ones, and the ones i like to use . *Format: (method name, return type) //comment if any. values(), Returns: an array of your enum variables. //Static valueOf(String s), Returns: an enum variables. //Static compareTo(E o), Returns: the distance between the two enum variable, using there ordinal(). ordinal(), Returns: the index in of the enum variable. name(), Returns: the exact enum variable name. toString(), Returns: the exact enum variable name. // if toString() isnt overrided. toString(), Returns: what ever you told the method to return. // if toString() is overrided. How to access the Enum and there variables (in order): Start with, the Enum name. followed by, the variable name. then, end with the method. Which returns the method. Example: ThievingNPC.MASTER_FARMER.getLevel(); Returns: 38 End of part one, beginner guide. Link to part two: link not yet ready
    1 point
  16. It's probably throwing an exception since you're invoking #isVisible() on a null instance. Create an RS2Interface object like so: final RS2Interface parent = client.getInterface(469); and do a null check on it before doing any type of interaction/method.
    1 point
  17. Sorry, we do not condone 'murder' on these forums. Please refrain from slaughtering other members in the future.
    1 point
  18. my last ban was months ago rip
    1 point
  19. Falador west (using the agility shortcut) is an amazing place for iron. Rimmington is also good, bank at the deposit box which I think is near seagulls, not sure.
    1 point
  20. are spectators who are not TWC allowed?
    1 point
  21. You firstly have to cancel it through the OSBot store: http://osbot.org/forum/index.php?app=nexus&module=clients&section=invoices Then cancel is through your PayPal following this guide. If you have any further queries or need any further assistance please let me know.
    1 point
  22. If it is the original Enfilade's Easel then yes, you have nothing to worry about! It has been used by Runescape developers on numerous forums for the last ~5 years or so and is a very popular paint creation tool.
    1 point
  23. I would just write a method that deviates from the path by a couple of tiles so that you don't have to have a bunch of predetermined paths. Perhaps even switch it up by having 70%-80% of clicks be on the minimap and having 20%-30% of the tiles being clicked directly (if you're worried about being detected).
    1 point
  24. Where is @Peter? And yes he is ex-staff. Legit staff, not cba.
    1 point
  25. http://osbot.org/forum/topic/50488-automated-account-starter-need-5-testers/ Please post there, I'm actually finishing the beta.
    1 point
  26. @Ericthecmh is the bomb... We love him
    1 point
  27. I'm fine with having f2p :P Just means my friends can play it to see whether they like it or not without having to buy a membership
    1 point
  28. babysitting/chatting does nothing and u might as well play legit!.
    1 point
  29. Pizza? Send it over my way and he gets super admin.
    1 point
  30. RoomScape: King of shitposting
    1 point
  31. You're telling us to not bot on a botting community? Hmm, very logical.
    1 point
  32. 1 point
  33. World hopping needs to be updated as well
    1 point
  34. Here is mine. First try to do my own script, and it's fucking awesome. There is no better feel when u watch flaweless script made by your self. This need some fix for faster xp...but i'm still happy. I run my own script 10h+ day after i got 2d ban. Still goes with no problems lol.
    1 point
×
×
  • Create New...