Jump to content

Leaderboard

Popular Content

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

  1. Heyo, I've decided to finally post my farewell, now that things have calmed down. There's not much to say, I also don't really feel like posting my side of the story, there's just one thing I want to share and that is that I wasn't (and still am not) part of the other bot's administrative team, however, I did got asked to develop their new SDN and I did accept that job. So no, I wasn't a 'spy' as many of you thought, it was an one-time job. Anyways, enough of that, I'm not here for forgiveness (nor to safe my alias) but to post my farewell. If there's one thing that I could change, then I would have resigned before all of this could even happen. Why? I realized, a few weeks after my promotion to administrator, that I couldn't hold the job for long. The motivation and drive I used to have last summer for community management was (and still is) gone. That's why most of you only saw me doing the SDN upload requests, I barely did anything else. I felt bad for @Maldesto, my position was meant to take some load of his shoulders, and I don't think that he could ever feel that in the time that I was an administrator again. I noticed this myself as well. That's why I started to guide the person some more that did (and still does) deserve my position, @Smart. I teached him how the OSBot SDN works, and I would help him with any ACP problems. I notified Smart that I was going to resign soon and that I wanted him to replace me, about a few days before I got demoted (several people can confirm this). My demote ruined his chances, the developers are more strict with @Maldesto now and they don't want him to promote a second admin on this moment. So yep, if I could change one thing then I would have resigned earlier so that you guys could have probably had @Smart as second community manager now on this very moment. Anyways, enough of that as well. Now my actual farewell. I've decided to really move on with life, I've had a great time here, especially last summer. OSBot was a really big part of my life and I'm thankful that I was ever given the opertunity to join the OSBot staff team, it was a great experience and it has really changed me as a person. I've had alot of fun here and I've met alot of great people. It's time for me to let this all go, I've spent alot of time on the computer past years, especially in 2013. It's time to focus on my IRL and to follow my dreams. My biggest dream ever is to be a pilot and I'm really going to spent most of my time now to study and follow this dream. I'm currently following computer science and I'm going to do Flight Training right after my IT graduation. It's a really hard training and a really expensive study so I have a long path ahead. But I'm going to do this ;D I wish you all the best of luck in life and in the Runescape botting scene. Thanks for reading and farewell! Special thanks to: for ever giving me a chance, I would have missed this whole experience without you. @Maldesto for giving me another shot, and I'm really sorry that I've damaged your trust. I wish you the best of luck with OSBot. @Smart simply because I love him @Catastrophe for the great times, and I will definately check your facebook every now and then because you really make me laugh. @Anne also for the great time here at OSBot, and I will definately stay in touch with you @Mikasa for still being loyal and awesome @Alek I know you hate me, but stay awesome man, OSBot needs you The rest of the staff team, goodluck guys & alot of other people, I can really make a list of ~100 people but I'll keep it at this for now. Goodbye, Raflesia.
    7 points
  2. Occasionly the people with no profile picture in the chatbox
    4 points
  3. Like my thread. I like them likes. Post a pic/gif that makes me laugh. Every one that makes me laugh, I'll like the post. After I give 5 likes, I'll send each a $2 voucher (one person can win multiple times). Once I give 5 likes, contest will be over. May the odds be ever in your favour. Let the games begin! Edit: I can give gp also instead.
    3 points
  4. Ande's Quester I'm trying to script all F2P quests because why not. After I've done all the f2p ones I'll add some p2p quests too. I think I'll record videos of some quests soon. I'm trying to make the script to collect most of the items if it doesn't take too much time. For most quests you need almost no items. Quests Black Knights' Fortress Cook's Assistant Demon Slayer Doric's Quest Dragon Slayer Ernest the Chicken Goblin Diplomacy Imp Catcher The Knight's Sword Pirate's Treasure Prince Ali Rescue The Restless Ghost Romeo & Juliet Rune Mysteries Sheep Shearer Shield of Arrav Vampire Slayer Witch's Potion Not started | Has some bugs | Working or some minor bugs Things to do: Add all f2p quests and make them flawless Quest chaining system Nice GUI
    2 points
  5. believe it or not, i like underground pass :P but one small favour, that quest is a pain in the butthole
    2 points
  6. 2 points
  7. import dependencies.api.ATMethodProvider; import org.osbot.rs07.api.ui.MediaType; import org.osbot.rs07.api.ui.RS2Interface; import org.osbot.rs07.api.ui.RS2InterfaceChild; import org.osbot.rs07.utility.Condition; import java.util.Arrays; /** * Created by PolishCivil on 5/16/2014. */ public class Questions { private static final int[] ANSWER_INTERFACES = new int[]{230, 228}; private static final int[] QUESTION_INTERFACES = new int[]{243, 242, 244, 241}; private static final String[] CORRECT_ANSWERS = new String[] { "Nobody", "Don't tell them anything and ignore them.", "Talk to any banker in RuneScape.", "Nothing", "Memorable", "Politely tell them no and then use the 'Report Abuse' button.", "Don't tell them anything and inform Jagex through the game website.", "No, it might steal my password.", "Don't give him my password.", "To recover my account if i don't remember my password.", "Nowhere", "No", "To help me recover my password if I forget it or if it is stolen.", "Recovering your account if you forget your password.", "Game Inbox on the RuneScape website." }; public static Condition getAnySosQuestion(final ATMethodProvider methodProvider) { return new Condition() { @Override public boolean evaluate() { for (int interId : QUESTION_INTERFACES) { RS2Interface rs2Interface = methodProvider.interfaces.get(interId); if (rs2Interface != null && rs2Interface.isValid()) { RS2InterfaceChild child = rs2Interface.getChild(0); if (child != null && child.getDisabledMediaType() == MediaType.NPC_HEAD && child.getDisabledMediaId() > 0) { return true; } } } for (int interId : ANSWER_INTERFACES) { RS2Interface rs2Interface = methodProvider.interfaces.get(interId); if (rs2Interface != null && rs2Interface.isValid()) { return true; } } return false; } }; } public static boolean solve(ATMethodProvider methodProvider) { RS2Interface validInterface = null; for (int interId : QUESTION_INTERFACES) { RS2Interface rs2Interface = methodProvider.interfaces.get(interId); if (rs2Interface != null && rs2Interface.isValid()) { RS2InterfaceChild child = rs2Interface.getChild(0); if (child != null && child.getDisabledMediaType() == MediaType.NPC_HEAD && child.getDisabledMediaId() > 0) { validInterface = rs2Interface; break; } } } if (validInterface != null) { methodProvider.dialogues.clickContinue(); return solve(methodProvider); } else { for (int interId : ANSWER_INTERFACES) { RS2Interface rs2Interface = methodProvider.interfaces.get(interId); if (rs2Interface != null && rs2Interface.isValid()) { validInterface = rs2Interface; } } if (validInterface != null) { RS2InterfaceChild[] children = validInterface.getChildren(); for (RS2InterfaceChild child : children) { if (Arrays.asList(CORRECT_ANSWERS).contains(child.getMessage())) { methodProvider.clickOnChild(child); return solve(methodProvider); } } } else { return false; } } return true; } }
    2 points
  8. Currently supports: Most staffs Standard spell book Ancient spell book Lunar spell book When i have a chance i want to implement the new magic class and stuff osbot has. On my todo list MagicManager class Change log: 10/30: Renamed it, extends MethodProvider, so i dont have to create a script instance, re-orded rune supply constructor, made it easier to read. 8/15 (check second page for more details): rename spell variables, rename staff variable, add in new staffs, add in two new methods, 8/13: rename MagicSupply into RuneSupply change RuneSupply constuctor, into (int, Rune) removed staff type class, shorten down staff enum, revamped up my methods, removed acient and lunar until i actually add them in. 6/15: Did some renaming of classes and enums Remove the element enum <-- redundant Add in a new ItemSupply class which isnt fully supported. Example: Teleport to ape toll, you need bananas. 5/15: initial release
    1 point
  9. It's that time of my life where I really need to lay down my cards on the table and see what and who I want to become. You have no idea how much I love and STILL love this community, I've done good and bad, all I can say it thank god for both as I was able to learn from both. People look at this forum as a side hobby, something to waste time on but you don't realise how much you indirectly learn from eachother. I've spoken to people from all around the world, smart people, dumb people, religious followers, pro-nazis. All sorts of people and have learned so much from all of you. You have truly taught me alot and helped me mature into the guy that I am. I wish you all the best and success in the future to you and all your loved ones. Be free thinkers, be honest and stick to your word cause your word is the only thing that stays past your death, take away hate and learn to appreciate and love the people around you. If anything I hope I've left a positive impact in most of you. I would like to leave on a positive note with all staff including(and mainly) @Maldesto. As much as I've been treated incorrectly, he had his point and would like to excuse myself to the whole community for what I've said behind your backs. I was here for the community, not the bot. I haven't botted or played RS in months. I'd also like to leave this quote that I came across today as I was reading The Republic, a quote you should all keep in mind. 411 d 'Any latent love he may have for learning is weakened by being starved of instruction or inquiry and by never taking part in any discussion or educated activity, and becomes deaf and blind because its perceptions are never cleared and it is never roused or fed.' - The Republic by Plato Speak your mind - Value your opinion and appreciate your knowledge. You're all smarter than you set yourselves to be. If you want a reason to why I'm actually leaving - My college has offered me a job if my studies exceed their required standard. I'm the kid that detests school, never went to lessons, teachers don't even know who I am but I do know who I am and what I'm worth and that has been acknowledged and believe it or not.. this was all thanks to you guys. All aboard
    1 point
  10. http://info.cern.ch/ o.o
    1 point
  11. No shit? When you google animal you most likely get like 10000000000000 bedpbear hits. I know these forums are full of kids likeing to troll everywhere they go, but atleast peeps should habe enough respect towards people who are actually really participating with work they might spent hours making. Yeye, maybe the bedpbear guy tool some time to make te animation and the joke, but try to stay more mature and professional...
    1 point
  12. Due to the majority vote, we've decided to re-introduce them - http://osbot.org/forum/topic/50169-250-500-donator-ranks-returning/
    1 point
  13. i think you are referring to this:
    1 point
  14. Bye Raffy, fly straight man.
    1 point
  15. Take care of yourself mate, and I wish you best of luck with your future endeavors. I'll always consider you a friend, if you need a laugh you know where to find me ;)
    1 point
  16. Wish you best of luck with your future endeavors. I hope you accomplish your dream career path. Remember the motto: Work Hard, Play Hard. Best of luck.
    1 point
  17. What i think of you @Catastrophe u are faggot brought to earth by my chicken wand!!!!!!!!!!!!1 @Arctic go penetrate my mother u focking dark-tic @Maldesto the queen of faggots, end. @Gilgad Galgid, I suck on bleach homef0ckingboy @Dex Hi, my name is lolmanden now go fuck yourself. @Mikasa I will sukasa your anus, kid. come at me @Smart You should be called anserine. Go milk a cow. @Sex Nice name, I bet you have had loads of men. @RoomScape I will put a fork in your ass and make sure a goat comes from it. ya ibn khara @BottersLyfe Post count war my ass, I won. @Cinnamon Want some porridge with it? @Timekeeper MM.... What do you think you are mr.businessman, I will go deep on you. @Eliot Eliot go learn to not get hacked, cunt. I will put olive oil on your body. mmmm @Raflesia fishdick I will verify your penis if you have one. @Swizzbeat Swizzcheese eat urself @Divinity Divinity do you know what is a java? @NotoriousPP Notorious wannabe @Realist I like this cunt. @Undecided I will decide your fathers testicles to be smelly. to be continued * Troll, not intended serious.
    1 point
  18. Gl all! Hope you guys have some really cool stuff, especially if it contains lions ^^ just saying...
    1 point
  19. smell that? smells like bullshit.
    1 point
  20. 1 point
  21. safe like sticking a knife into a toaster while turned on.
    1 point
  22. For those of you who use adblock, just right click the Forum Ranks button and block that element. Problem solved for PC, not for phone.
    1 point
  23. I'm no expert but here's my explanation.. When you mine you are helping verify transactions on the network. Basically every time you send a cryptocurrency it needs to be verified by a certain amount of miners before it goes through. Once you verify a certain amount of transactions (usually a huge amount) you will get a block, and in each block you get coins. New altcoins are unpredictable. They could gain value or just die off so deciding whether or not to mine is up to you. My best advice would be to research a lot before you start using resources. I'd also recommend mining in a pool because they find blocks much faster. You almost always get more when you mine in a pool as opposed to mining solo unless you have some crazy set up where it doesn't take forever to mine a block.
    1 point
  24. Starting resources Spendings (Money outgoing) Income (Money incoming)
    1 point
  25. Looks great, but there is one very clear thing which I think is a major issue with this paint and that is the stats box. How will you fit something like the runtime or the exp or the profit into that narrow black strip down the side? This is what stopped me voting for this one. This vote looks like a close call tho, gl all!
    1 point
  26. https://www.youtube.com/watch?v=z9ocr_oarzk Little video i created this morning, i hope you guys enjoy the humor.
    1 point
×
×
  • Create New...