Leaderboard
Popular Content
Showing content with the highest reputation on 03/23/14 in all areas
-
I am getting very fed up with the quality of the work that many of the scripters on this site put out. I literally have read multiple scripters state that if people want consistent updating in their paid scripts, that there will be a monthly subscription. What the fuck? No, that's completely wrong structuring. If we are paying money AT ALL for a script, we should be guaranteed that it will be functional no more than 48 hours after each client update. I currently have 6 paid scripts that I cannot even use, and have not been able to use for quite some time, and that is absolutely fucking ridiculous. The point of paying for a script in the first place is being reassured by the staff of this website that the scripter who put it out, is reliable and is going to give you a quality product. I am getting absolute shit as far as quality out of my paid scripts, and often am able to find a BETTER temporary replacement in the free scripts. Do something about your scripters for fucks sake.9 points
-
When I get hit by a bus, die and cannot update my scripts, I will be sure to remember this.5 points
-
Photoshop Signatures: Killzone Signature Art Beauty Signature Full Metal Alchemist Signature Mystic Female Bowmen The Use of C4D Renders Killzone C4D Stalker Adobe Illustrator: 10 Things for Beginners 5 Tips for Drawing Working with Brushes Power in Patterns Opacity Mask Basics Convert Drawing into Vector C4D: Absolute Beginners 10 Great Hints for Beginners Explosive Typographic Effect Font Crash Stunning 3D Type Illustration Please feel free to request a tutorial and I will find one matching your request. Enjoy, will update as I can. -Whips NOTE: I DO NOT TAKE CREDIT FOR CREATING ANY OF THESE TUTORIALS, CREDIT IS IN THE LINK. I AM ONLY LINKING THEM HERE FOR YOU TO VIEW4 points
-
3 points
-
We're considering some options to make it more obvious what you're buying when you purchase a script. More updates on this soon.3 points
-
Your Profile: (your username): @Timekeeper Banned by: (Who banned you?) @Timekeeper Why were you banned: Because I was being an asshole and made a thread called Timekeeper is an asshole, so Timekeeper banned me for this Explanation: (What happened and why you should be unbanned.) Honestly Timekeeper is kind of a huge douche whose only solace in life is cheap booze and hookers. I can't respect a man who can't respect himself and until he realizes happiness is not found in the form of coke lines on a hookers ass he will always remain an asshole2 points
-
yes you do. @@Swizzbeat works with animated theme. planning to animate it later.2 points
-
2 points
-
2 points
-
First of all well done to Sigma for having the maturity to post a PM(Private/Personal message) on a public thread. That just shows exactly who you are. Second, please. PLEASE. Please, do write some scripts and teach us how to do it properly. I'm not going to be ego-centric and say "I can script like pro" cause that's a flat out lie and I will put my head down, with all my humbleness say you're better than me but what point are you trying to direct at us? That you're better than us? Great. Thank God for that so please, post a tutorial. Help newbies, check out some code and tell people what they could improve on. Instead of using your knowledge to bash others, use your knowledge to help others. I can name a handful of scripters who know shit but then again I can name 10+ people who truly know their shit in Java and scripting. NEVER ever have they bashed me when I asked for their help, Pandemic, Swizz & Notorious spent countless hours teaching me and till today still are Also I'd rather be an OSBot scripter with a sense of humbleness who's willing to learn than a twat 3bot scripter like this UltraScripts guy cause in the end of the day, your ego is going to leave you scripting on a century old game thinking you're pro whilst my humbleness is going to let me program for big companies If you think you're better than us, please go ahead and prove it. Otherwise keep your mouth shut2 points
-
2 points
-
This is bullshit. I will not sit here and be grouped with people who "Have no clue how to program." If you have a problem with a script/script writer, take it up with them or an administrator personally. Don't make public threads bashing every scripter on this site2 points
-
import org.osbot.script.rs2.map.Position; import org.osbot.script.rs2.model.Entity; import java.awt.*; /** * Created with IntelliJ IDEA * User: Anthony * Date: 3/23/2014 */ public class PolygonArea { private Polygon polygon; public PolygonArea(Position... positions) { polygon = new Polygon(retrieveXPoints(positions), retrieveYPoints(positions), positions.length); } public boolean contains(Entity entity) { return polygon.contains(entity.getX(), entity.getY()); } public boolean contains(Position position) { return polygon.contains(position.getX(), position.getY()); } private int[] retrieveXPoints(Position[] positions) { int[] xPoints = new int[positions.length]; for (int i = 0; i < positions.length; i++) xPoints[i] = positions[i].getX(); return xPoints; } private int[] retrieveYPoints(Position[] positions) { int[] yPoints = new int[positions.length]; for (int i = 0; i < positions.length; i++) yPoints[i] = positions[i].getY(); return yPoints; } } Probably could be improved as well as have had more methods implemented/overridden but here's a basic class for creating a polygon area instead of being stuck with just a simple square.1 point
-
Too many pathetic scammers... http://osbot.org/forum/topic/43628-scammed-by-faudo/ http://osbot.org/forum/topic/43630-faudo-scam-report/ And if I went first to him, ggwp me.1 point
-
1 point
-
If by "options menu" you're referring to GUI (graphical user interface) then you would have to design one using a builder of your choice (Windows builder pro) for eclipse add on is recommended. Then import you're class like this in your class file that contains the onLoop etc import PackageName.guiName; Then in underneath the "Class extends Script" part write: (Creating an object so it's easier to refer to) guiName GUI = new guiName(); In your onStart() method set it visible: GUI.setVisible(true); Finally in your onLoop() method give it the condition: while(GUI.isVisible()){ sleep(100); } I would recommend looking in the "Tutorials" section for @Pandemic's tutorial on beginner scripting, no offence but it doesn't seem as if you know much. Basic knowledge of java is quite essential otherwise you will find it tricky. Anyhow good luck1 point
-
1 point
-
First of all, multiple class files might be created from one java file. If your IDE automatically added it and someone who doesn't know anything puts that in, it will confuse them. Your third point makes no sense as it's not an argument, it's just a statement; a statement I most certainly agree with, however it was provided in a mediocre manner. I am communicating like an adult. I simply pointed out things that are wrong with your tutorial, and you should fix them. You are the only one who looks like a dumb teen swearing at me because you found out someone disagrees and knows more than you.1 point
-
One, you missed the entire point of the thread, this isn't how to setup your frame work, or how you should write your script, it is purely showing scriptwriters who do not know how to use more than one class file, some insight how someone might go about doing it; because quite frankly, quite a few don't/didn't know how. Two, the super.onStart() was automatically added, and since this IS NOT A REAL SCRIPT, I left it, because once again, this is not showing you how to write a script, just how to use more than one class. Three, once again quite a few script writers do not know how to use more than a single class in thief script, so one of the Mods thought it would be a useful resource to those looking to learn. My personal opinion, get off your high fucking horse, and learn to communicate like a adult, and not a preteen ass 14 year old, who uses his moms credit card for everything. It would be a lot easier to get your point across.1 point
-
Whether or not he made a refund request, I did. And it was refused without being asked even one question. You guys just stole my $15 and gave me absolutely no chance at getting it back. Maybe he's generalizing about the majority of the scripters on this site that, whether or not they do know shit, fail to show it via never updating their scripts. Novak I have your master farmer script and I can assure you that you're not one of the scripters needing scolding in this thread, keep up your good work. Honestly, Swizz, Novak, and a few other reliable scripters in this thread, you all need to stop being offended, because in reality we are trying to get rid of the people you are competing with that are essentially stealing money from people who are your potential customers, and making those potential customers leave the site when they find out they've got a bunk product. There are far too many scripters with much too loose of terms for becoming so, that was my only point in the creation of this thread. It was not meant to bash any scripters individually or turn into a contest of pointing fingers. Y'all need to chill so we can actually get a constructive solution going, or at least help with the one I imagine the dev's are already working on.1 point
-
no, his points are not valid. How is generalizing a group of people (scripters on this site) and saying they don't know shit (when the premium scripts are not open source) any different than being racist and grouping all of one culture/race and saying they are stupid? He doesn't know what my code looks like, he doesn't know my depth of knowledge in java, and he hasn't used my scripts. He is going about this the completely wrong way, not to mention he posted PRIVATE messages that are meant to be PRIVATE on a PUBLIC thread. While yes, i agree there are things I and many other could improve on, this doesn't mean he has the right to group me, or anyone else for that matter.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
I've seen excision, infected mushrooms, c2c, dillon francis, bass nectar, pretty lights, and knife party all at coachella 2013. I'm not a big EDM guy but a lot of my friends are, it was still a lot of fun. edit: and major laser or w/e his name is1 point
-
I don't agree, maybe they should guarantee 4 weeks of functionality after you buy it (I'm talking about one-time payment scripts here), and if they fail to keep that promise a refund could be considered . Unless the script says lifetime support of course. Don't underestimate the time scripters invest in their work, and don't overestimate the money they make from it either.1 point
-
I'm pretty sure if you're unhappy w/ a premium script & there's a valid reason you can get a refund.1 point
-
client.getCurrentRegion().getObjects() gives you the RS2Object's in the loaded region1 point
-
Korean is an ex mod on No advertising... OT: I'll be purchasing a $23 pkg soon1 point
-
Either you guys have a crap monitor or need to go Specsavers. Quality isn't that bad...1 point
-
1 point
-
1 point
-
1 point