Leaderboard
Popular Content
Showing content with the highest reputation on 05/16/14 in all areas
-
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
-
4 points
-
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
-
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 GUI2 points
-
believe it or not, i like underground pass :P but one small favour, that quest is a pain in the butthole2 points
-
2 points
-
2 points
-
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
-
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 aboard1 point
-
MMU - Create Paths and Areas With Ease Made to be used with the this area class: http://osbot.org/forum/topic/43708-polygon-area/?p=515444 Download Link: http://up.ht/RIYUbW1 point
-
1 point
-
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
-
This bar is blocking my messages and notifications along with the search bar. Anyone else experiencing this problem as well? If there is an easy fix please let me know1 point
-
1 point
-
And I think the Urban dictionary has a list of all the words that actually do exists, and your name isn't one of them. Well said!1 point
-
1 point
-
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
-
1 point
-
all good, i'll probably re do it later cant be fucked to do that minigame twice in a row tho1 point
-
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
-
1 point
-
some scripts are genuinely better, with the free range guild script i was only getting 20k per hour with no breaks and with ATRangeGuild I get 40k+ p/h without breaks1 point
-
1 point
-
1 point
-
Because the man is not a stupid person. He's not just walking up to accounts and saying "Hi" then banning if they don't respond. He works in conjunction with whatever software they have to examine accounts and their activities and discern the legit from the botters.1 point
-
Maldesto demote Maldesto pls. It's actually a good idea, but osbot doesnt have anyone to work with the forum software. Only install/uninstall modules, so this will never be done.1 point
-
Welcome, I have listed below all of the forum ranks and what they stand for so you can navigate your way around the forums successfully and this should help you understand who you need to contact if you need a script made or need help with a payment ect. Developer Responsible for various aspects in developing the bot and services. Each developer has a specialty that ranges from developing the client, to working on the server, fixing bugs, features such as web walking and mirror-mode, etc. Developers have elevated permissions, however much of the administration is left to the Community Administrator. Current Development Team: @Maxi @MGI @Zach @Patrick Administrator Just like moderator they keep the forums clean and safe, however administrators also have an extended amount of power. They not only manage forum issues such as refunds, promotions and fixing forum issues, but also the website, advertising, and all other projects. Current Administrator: @Maldesto Super Moderator Super Moderators have the same responsibilities as a Global Moderator, just with a few added Administrator responsibilities. They are responsible for dealing with user issues, payment issues and moderating areas of the forums which require a lot of attention. They have the power to edit users ranks, bans and even change a users password. They make sure that the Global and other ranks are doing their job, and that forum issues are taking care of promptly. There will only ever be a maximum of 3 Super mods. Currently on the Super Moderator Team: @Gunman Global Moderator Global Moderators manage the general forums. They have access to a unique Moderator Control Panel that gives them the ability to edit, ban and research a user. They are experts on the rules and are the ones that keep the forum clean. They are expected to handle reports, move and lock topics, as well as warn members for inappropriate or rule breaking behavior. They are also to assist with bot issues when possible. Currently on the Global Moderator Team: @Mio Trial Moderator Trial Moderators manage the general forums much like Forum Moderators. They are starting moderators who are being tested to see their output and effort before receiving higher ranks. They manage the same things Forum Moderators manage, they're just less experienced and , as the rank says, a "trial" to see how they handle the position. The current Trial Moderator Team is: Ex-Staff The Ex-Staff rank is for respected Staff members that served OSBot considerably. They left respectfully, or without causing direct harm to OSBot. They have also served as Global/Super/Forum Mod or Administrator. No other ranks will receive the Ex-Staff Pip. @Oliver @Nick @Arctic @Khaleesi @Raflesia @Master Chief @Mikasa @Smart @Asuna @Solution @Eliot @ProjectPact @Alek @Dex @Decode @Chris @Night @Lost Panda @Malcolm @Muffins @Space Veteran These are members of OSBot who have been here from the beginning and have respectfully been active and helped the growth of OSBot. Pm @Maldesto if you meet the requirements. Registration Date: Jan 1st, 2016 cut off date. Post Count: 500 or above. Activity/Contribution: Judged by staff team. Sponsor Sponsor is a highly exclusive rank that can be purchased from the store for $55.99 per 6 months. This works out at $9.33 per month which is cheaper than VIP ($9.99) the only catch is that you must pay the $55.99 upfront for the 6 month subscription. The features are listed below: - Unlimited botting tabs - No advertisements on the bot client and website! - 6 month rank (Larger amounts will result in longer time)! - 15% discount on all premium scripts - Changeable user title - Special private forum - Unlimited private messages, files sizes and display name changes -Sexy blue glowing name - More to come in future! Lifetime Sponsor - All the benefits of the Sponsor rank. - Lasts for as long as the existence of this forum! $100 / $250 / $500 Donor Donor is a highly exclusive rank that can be obtained by donating $100, $250, or 500$ to OSBot through the donation page. To donate, click here. - Sexy PiP -Sexy Glow V.I.P VIP can also be purchased from the store for $9.99/month. This status gives you many perks which are essential to goldfarmers and hardcore botters! I have also listed the features below: - Use unlimited bot tabs! - No advertisements on the website and bot client! - 10% discount on all premium script purchases! - Unique purple username to get recognized! - A special private forum! -Sexy purple name - One free display name change per month! Scripter Ranks Scripter I Rank Entry-level rank and assigned to scripters upon the release of their first script. Benefits include client VIP privileges. Must maintain an active script on the SDN. Scripter II Rank Scripter I members may apply for this rank provided they have at least one month on the forums. The Scripter II application consists of a Java & OSBot API test. Benefits include VIP client privileges and the ability to release premium scripts. Must maintain an active script on the SDN. Scripter III Rank Scripter III members represent OSBot's scripting elite. Scripter II members may apply for this rank provided they have at least three months on the forums and 3 active scripts on the SDN. In order to be promoted to this rank, a scripter will require very deep understanding of the OSBot API, programming in general, as well as having valuable novel contributions to our SDN. Benefits include VIP client privileges, ability to release premium script, and the opportunity to work in special duties such as Script Officer. Script Officer Rank Script Officers are responsible for managing various facets of the scripting community including administering tests, checking script/scripter activity, and running the SDN. Script Officers that manage the SDN have elevated privileges. Current Script Officer: @Token Designer This is given to the users that help our artists in the Graphics Section grow. They post tutorials, help other users, and display their own graphics for all to see. They have a good amount of experience with graphics and love what they do. SOTW Winner Win a week of SOTW and get this as the prize! The users with this rank have been able to create a tag/signature that was better than the rest, voted on by you, the members. Verified Ranks If you have a negative feedback, you will not be eligible for verified ranks! Verified ranks are given to those active and trusted within the market place. The requirements for each are listed below: Verified MiddleMan Rank You cannot have an open or solved dispute against you with the ruling that you have scammed. You must have at least 250 positive feedback. You must have completed 100 transactions as a middleman. You must have unique feedback to prove your transactions took place. (Multiple feedbacks from a single member will not count towards your completed transactions). Currently hold a rank of VIP/Sponsor/$100.00 Donor. Verified Services Rank Currently hold a rank of VIP/Sponsor/$100.00 Donor. Have a minimum of 400 posts. Hold at least 150 positive feedback within your service with no open dispute of a ruled scamming or negative feedback that rightfully states you've scammed. (This does not include "late services" etc.) Hold an active thread with at least 75 feedback for the service(s) stated within. Verified Transactor Rank Currently hold a rank of VIP/Sponsor/$100.00 Donor. Hold at least 150 positive feedback with no open dispute of a ruled scamming or negative feedback that rightfully states you've scammed. Hold an active rsgp/osgp selling/buying thread that has produced at least 75 unique, positive feedback. (Multiple feedbacks from a single member will not count towards this). If you meet the requirements to any of these ranks you may send a Super Mod or Admin a private message directly. If granted, you will receive one of these beautiful userbars.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point